/* ==================== DHSUD SECTION ==================== */
.dhsud-section {
    background: transparent;
    padding: 4rem 2rem;
    text-align: center;
}

.dhsud-container {
    max-width: 820px;
    margin: 0 auto;
}

.dhsud-eyebrow {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d3058;
    margin: 0 0 0.5rem 0;
}

.dhsud-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #0B1427;
    margin: 0 0 1rem 0;
}

.dhsud-title span {
    color: #1F3B73;
}

.dhsud-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1F3B73, #D8BFAA);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.dhsud-card {
    border: 1px solid rgba(11, 20, 39, 0.12);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    background: #ffffff;
}

.dhsud-lts-number {
    font-size: 26px;
    font-weight: 500;
    color: #1F3B73;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.dhsud-lts-pill {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: #1F3B73;
    padding: 4px 12px;
    border-radius: 2px;
    font-weight: 500;
    vertical-align: middle;
    position: relative;
    bottom: 3px;
    border-radius: 4px;
}

.dhsud-row-divider {
    width: 100%;
    height: 2px;
    background: rgba(17, 35, 75, 0.08);
    margin: 0 0 1.5rem 0;
}

.dhsud-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
}

.dhsud-field-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0B1427;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.dhsud-field-value {
    font-size: 14px;
    color: #0B1427;
    font-weight: 400;
    line-height: 1.6;
}

.dhsud-disclaimer {
    margin-top: 1.5rem;
    font-size: 12px;
    color: rgba(14, 29, 61, 0.38);
    line-height: 1.7;
    border-top: 1px solid rgba(11, 20, 39, 0.08);
    padding-top: 1.25rem;
}

/* ── TABLET ── */
@media (max-width: 768px) {
    .dhsud-section {
        padding: 3rem 1.5rem;
    }

    .dhsud-title {
        font-size: 26px;
    }

    .dhsud-card {
        padding: 1.75rem 1.5rem;
    }

    .dhsud-lts-number {
        font-size: 22px;
    }

    .dhsud-fields {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
        text-align: left;
    }

    /* Location spans full width — it's the longest field */
    .dhsud-fields > div:first-child {
        grid-column: 1 / -1;
    }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
    .dhsud-section {
        padding: 2.5rem 1rem;
    }

    .dhsud-title {
        font-size: 22px;
    }

    .dhsud-lts-number {
        font-size: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .dhsud-lts-pill {
        margin-left: 0;
        bottom: 0;
    }

    .dhsud-card {
        padding: 1.5rem 1rem;
    }

    .dhsud-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .dhsud-fields > div:first-child {
        grid-column: auto;
    }

    .dhsud-field-value {
        font-size: 13px;
    }

    .dhsud-disclaimer {
        font-size: 11px;
    }
}