
/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
    width: min(90%, var(--container-max));
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__texture {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(86, 98, 49, 0.015) 10px,
            rgba(86, 98, 49, 0.015) 20px
        );
    pointer-events: none;
    z-index: 0;
}

.section__bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(242, 201, 105, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
