/* ==========================================================
   Sprint R2 - Premium Section Headers
========================================================== */

.dtv-front-section-header,
.dtv-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 26px;
}

.dtv-front-section-header h2,
.dtv-section-header h2 {
    position: relative;

    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;

    font-family: var(--dtv-font-heading, Oswald, sans-serif);
    color: var(--dtv-color-text, #1A2E4A);

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .01em;

    text-transform: uppercase;
}

.dtv-front-section-header h2::before,
.dtv-section-header h2::before {
    content: "";

    width: 4px;
    height: .92em;

    border-radius: 999px;

    background: var(--dtv-color-primary, #CC0000);
}

.dtv-front-section-header--continue h2 {
    text-transform: none;
    letter-spacing: 0;
}

.dtv-front-section-header--continue h2::before {
    display: none;
}

.dtv-front-section-header a,
.dtv-section-header a {
    color: var(--dtv-color-primary, #CC0000);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: none;

    transition:
        color var(--dtv-motion-normal, .22s ease),
        transform var(--dtv-motion-normal, .22s ease);
}

.dtv-front-section-header a:hover,
.dtv-section-header a:hover {
    color: var(--dtv-color-primary-hover, #E00000);
    transform: translateX(2px);
}

.dtv-front-section-header a::after,
.dtv-section-header a::after {
    content: " →";
}

@media (max-width: 768px) {
    .dtv-front-section-header,
    .dtv-section-header {
        margin-bottom: 20px;
    }

    .dtv-front-section-header h2,
    .dtv-section-header h2 {
        font-size: 28px;
    }

    .dtv-front-section-header a,
    .dtv-section-header a {
        font-size: 12px;
    }
}
