.simple-hero {
    margin-top: 18px;
}

.simple-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 31px;
    padding-bottom: 68px;
}

.text-card-heading {
    line-height: 100%;
    font-family: var(--font2);
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 14px;
}

.text-card-paragraph {
    max-width: 540px;
}

/* Styles for large desktop */
@media (min-width: 1439px) {  
    .simple-hero {
        margin-top: calc(1.25vw * var(--scale));
    }

    .text-card {
        padding-top: calc(2.15vw * var(--scale));
        padding-bottom: calc(4.72vw * var(--scale));
    }
    
    .text-card-heading {
        font-size: calc(4.31vw * var(--scale));
        margin-bottom: calc(0.97vw * var(--scale));
    }
    
    .text-card-paragraph {
        max-width: calc(37.5vw * var(--scale));
    }
}

/* Styles for tablet */
@media (max-width: 991px) { 
    .simple-hero {
        margin-top: 26px;
    }

    .text-card-heading {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .text-card {
        border-top: 1px solid var(--text-color);
        padding-top: 57px;
        padding-bottom: 64px;
    }
}

/* Styles for mobile */
@media (max-width: 479px) { 
    .simple-hero {
        margin-top: 20px;
    }

    .text-card-heading {
        font-size: 36px;
    }

    .text-card {
        padding-bottom: 62px;
    }
}
/* ============================================================
   OLYMPIC HERALD — county/tag archive: kicker + empty state
   ============================================================ */

/* "COUNTY" kicker above the archive name */
.tag-kicker {
    display: inline-block;
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 15px;
    color: var(--oh-red);
    margin-bottom: 8px;
}

.tag-kicker::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 3px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: var(--oh-red);
}

/* Empty archive state (e.g. a county with no stories yet) */
.empty-archive {
    max-width: 620px;
    margin: 20px auto 90px;
    padding: 0 20px;
    text-align: center;
}

.empty-archive-heading {
    font-family: var(--font2);
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.empty-archive-text {
    font-family: var(--font1);
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 28px;
}

.empty-archive-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.empty-archive-link {
    font-family: var(--font3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 15px;
    padding: 10px 26px;
    background-color: var(--oh-red);
    color: #FFFFFF;
    transition: background-color 0.18s var(--ease-transition);
}

.empty-archive-link:hover {
    background-color: var(--oh-red-dark);
    color: #FFFFFF;
}
