/*
 * Eyebrow custom element styles
 *
 * Uses the A2 CI reference patterns from:
 * - section-label
 * - hero-tag
 */

.eyebrow,
.section-label,
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-deep);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.hero-tag::before {
    content: "";
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    flex: 0 0 auto;
}

.eyebrow--deep {
    color: var(--gold-deep);
}

.eyebrow--ink {
    color: var(--ink);
}

.eyebrow--white {
    color: var(--white);
}

.eyebrow--no-line::before {
    display: none;
}

.section-label {
    margin-bottom: 16px;
}

.hero-tag {
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-bottom: 1.8rem;
}

.hero-tag::before {
    width: 2rem;
    height: 1px;
}

.a2-eyebrow-wrap {
    display: flex;
    align-items: center;
}

.a2-eyebrow-wrap--center {
    justify-content: center;
}

.a2-eyebrow-wrap--right {
    justify-content: flex-end;
}

@media (max-width: 575px) {
    .eyebrow,
    .section-label,
    .hero-tag {
        gap: 6px;
        font-size: 0.7rem;
    }

    .eyebrow::before,
    .section-label::before,
    .hero-tag::before {
        width: 18px;
    }

    .hero-tag {
        margin-bottom: 1.25rem;
    }
}
