/* Intake Structure Page Responsive Styles (viewport-based, no clamps) */

/* Base (mobile-first) */
.main-content {
    max-width: 95vw;
    padding: 2vh 3vw 2vh 9vw;
    flex-grow: 1;
    margin: 0;
}

.content-text p {
    font-family: 'Inter', sans-serif;
    font-size: 2.5vh;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Gray Section */
.gray-section {
    background-color: #F6F7D2;
    width: 100vw;
    padding: 4vh 1vw;
}

.gray-content {
    max-width: 95vw;
    margin: 0;
    padding: 0 8vw;
}

/* Section Headers */
.section-header {
    margin-bottom: 6vh;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 2.2vh;
    font-weight: 500;
    color: #ff0000;
    display: block;
    margin-bottom: 2vh;
}


/* Process Items */
.process-item {
    display: flex;
    align-items: flex-start;
    margin: 4vh 0;
    gap: 4vw;
}

.item-number {
    font-family: 'FormaTextTest', 'Inter', sans-serif;
    font-size: 4vh;
    font-weight: 600;
    color: black;
    min-width: 1.5em;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
    padding-left: 8vw;
}

.item-title {
    font-family: 'FormaTextTest', 'Inter', sans-serif;
    font-size: 3vh;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1vh 0;
    line-height: 1.1;
}

.item-text {
    font-family: 'Inter', sans-serif;
    font-size: 2.4vh;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

/* Divider */
.divider {
    height: 0.2vh;
    background-color: #000000;
    margin: 4vh 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .gray-content {
        padding: 0 8vw;
    }
    .process-item {
        gap: 4vw;
    }
    .item-number {
        min-width: 1.5em;
        font-size: 2vh;
    }
    .item-title {
        font-size: 3vh;
    }
}

/* Tablet (≥768px) */
@media (min-width: 768px) {
    .main-content,
    .gray-content {
        max-width: 95vw;
        margin: 0vh 1vw 1vh 0vw;
    }
    .process-item {
        gap: 3vw;
    }
    .item-number {
        font-size: 2vh;
    }
    .item-title {
        font-size: 3vh;
    }
    .section-label {
        font-size: 2vh;
    }
    .item-text {
        font-size: 2.5vh;
    }

}

/* Desktop (≥1200px) */
@media (min-width: 1200px) {
    .main-content,
    .gray-content {
        max-width: 50vw;
        margin: 0 0 0 9vw;
        padding: 0;
    }
    .process-item {
        gap: 2vw;
    }
    .item-number {
        font-size: 6vh;
    }
    .item-title {
        font-size: 5vh;
    }
    .section-label {
        font-size: 2vh;
    }
    .item-text {
        font-size: 3vh;
    }
}
