/* Pattern container for column spans */
.fa-pattern-container {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Individual pattern icons */
.fa-pattern-icon {
    position: absolute;
    color: white;
    font-size: 24px;
    pointer-events: none;
    user-select: none;
}

/* Make column span relative for absolute positioning of pattern */
.column.span {
    position: relative;
    overflow: hidden;
    z-index: 0;
}



/* Hide pattern on mobile */
@media (max-width: 768px) {
    .fa-pattern-container {
        display: none;
    }
}