/**
 * Module: article_header
 * Auto-extracted from style.css
 */

/* ============================================
   ARTICLE HEADER
   ============================================ */

.t1-article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--pearl);
}

.t1-article-header small {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jade);
    margin-bottom: 0.75rem;
}

.t1-article-header h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.t1-article-header > p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--charcoal);
    margin: 0 0 1.25rem;
}

.t1-article-header dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.5rem;
    font-size: 0.875rem;
    color: var(--stone);
    margin: 0;
}

.t1-article-header dt {
    font-weight: 400;
}

.t1-article-header dt::after {
    content: ":";
    margin-right: 0.375rem;
}

.t1-article-header dd {
    margin: 0;
    color: var(--charcoal);
    font-weight: 500;
}

/* Pair dt+dd together */
.t1-article-header dl {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    column-gap: 0.375rem;
    row-gap: 0.5rem;
}

@media (min-width: 640px) {
    .t1-article-header dl {
        display: flex;
    }
    
    .t1-article-header dd:not(:last-of-type)::after {
        content: "•";
        margin-left: 1.5rem;
        color: var(--stone);
    }
}

