/*
 * CUANTUM SCUT PILON — LAYOUT V1
 * Positioning and responsive geometry only.
 * Visual treatment belongs in 30-components.css.
 */

.cs-page {
    width: 100%;
    padding: 18px;
}

.cs-shell {
    width: min(var(--cs-page-max-width), 100%);
    margin: 0 auto;
}

.cs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cs-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cs-brand-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.cs-hero {
    margin-top: 14px;
}

.cs-hero-copy {
    max-width: 860px;
}

.cs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.cs-section {
    margin-top: 22px;
}

.cs-situations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--cs-grid-gap);
    align-items: start;
}

.cs-accordion-region {
    grid-column: 1 / -1;
}

.cs-product-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    text-align: center;
}

.cs-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 18px;
    padding-bottom: 6px;
    text-align: center;
}

@media (max-width: 700px) {
    .cs-page {
        padding: 12px;
    }

    .cs-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .cs-situations-grid {
        grid-template-columns: 1fr;
    }

    .cs-accordion-region {
        grid-column: 1;
    }
}
