.eb-blog-hero {
    /* padding: 140px 52px 0; */
    background: var(--eb-white);
    position: relative;
    overflow: hidden;
}

.eb-blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--eb-bdr) 20%, var(--eb-bdr) 80%, transparent);
}

.eb-blog-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    padding-bottom: 52px;
}

.eb-blog-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--eb-gold-dk);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eb-blog-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--eb-gold);
}

.eb-blog-hero h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(32px, 3.6vw, 54px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.03em;
    color: var(--eb-txt);
    margin: 0;
}

.eb-blog-hero h1 em {
    font-style: normal;
    color: var(--eb-blue);
}

.eb-blog-hero-meta {
    text-align: right;
}

.eb-blog-hero-count {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--eb-txt);
    line-height: 1;
    letter-spacing: -.03em;
    opacity: .08;
}

.eb-blog-hero-sub {
    font-size: 16px;
    color: var(--eb-txt-muted);
    font-weight: 400;
    margin-top: 4px;
    max-width: 220px;
    text-align: right;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .eb-blog-hero {
        /* padding-left: 32px;
        padding-right: 32px; */
    }
    .eb-blog-hero-inner {
        grid-template-columns: 1fr;
    }
    .eb-blog-hero-meta {
        display: none;
    }
}

@media (max-width: 680px) {
    .eb-blog-hero {
        /* padding: 110px 20px 0; */
    }
}
