/* ==========================================================================
   BLOG SINGLE — blog-single.css
   Overrides for article content typography and elements.
   Loaded AFTER blog.css — editorial refinements only.
   ========================================================================== */

@layer blog-single {

/* --------------------------------------------------------------------------
   VARIABLES
   -------------------------------------------------------------------------- */
.page-blog-single {
    --bs-black: #111110;
    --bs-gray-light: #f5f5f0;
    --bs-gray-mid: #8a8a88;
    --bs-gray-dark: #3a3a38;
    --bs-yellow: #e8b931;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   HERO — bh- prefix, designed from scratch

   Composición:
   - Foto fullscreen con overlay oscuro fuerte (editorial)
   - Contenido anclado abajo con estructura vertical clara
   - Eyebrow: categoría en amarillo mostaza (acento, ancla visual)
   - Título: pieza central, Inter 300, grande, respira
   - Excerpt: tono secundario, separado del título
   - Meta: grid de columnas label/value, línea superior como separador
   - Cada nivel de jerarquía tiene su propio ritmo de opacidad
   -------------------------------------------------------------------------- */

.bh-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            to top,
            rgba(8,8,6,0.97) 0%,
            rgba(8,8,6,0.85) 35%,
            rgba(8,8,6,0.65) 60%,
            rgba(8,8,6,0.75) 100%
        ),
        var(--bh-img) center / cover no-repeat;
    color: #fff;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.bh-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bh-hero:has(.bh-hero__video)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-image: none;
    z-index: 1;
}

/* Inner: el contenedor de todo el contenido */
.bh-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 80px 80px;
}

/* Content: centrado, ligeramente arriba */
.bh-hero__content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-20px);
}

/* Eyebrow: acento amarillo, ancla visual superior */
.bh-hero__eyebrow {
    display: block;
    margin-bottom: 32px;
}

.bh-hero__eyebrow a {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bs-yellow);
    text-decoration: none;
    transition: opacity 0.2s;
}

.bh-hero__eyebrow a:hover {
    opacity: 0.7;
}

/* Título: pieza dominante, peso ligero, contraste máximo */
.bh-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 28px;
    max-width: 900px;
}

/* Excerpt: apoyo al título, tono rebajado */
.bh-hero__excerpt {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Meta: grid de columnas label/value, separado por línea */
.bh-hero__meta {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bh-hero__meta-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bh-hero__label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.bh-hero__value {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

/* --------------------------------------------------------------------------
   HERO — responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .bh-hero__inner {
        padding: 0 48px 80px;
    }

    .bh-hero__meta {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .bh-hero {
        min-height: 85vh;
    }

    .bh-hero__inner {
        padding: 0 28px 64px;
    }

    .bh-hero__title {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .bh-hero__meta {
        flex-wrap: wrap;
        gap: 24px 36px;
    }
}

@media (max-width: 480px) {
    .bh-hero {
        min-height: 80vh;
    }

    .bh-hero__inner {
        padding: 0 20px 48px;
    }

    .bh-hero__excerpt {
        margin-bottom: 36px;
    }

    .bh-hero__meta {
        gap: 20px 28px;
    }
}

/* --------------------------------------------------------------------------
   CONTENT TYPOGRAPHY — override blog.css defaults
   -------------------------------------------------------------------------- */

/* H2: no border-left, weight 300, editorial feel */
.article-content h2 {
    font-weight: 300;
    font-size: clamp(1.625rem, 2.8vw, 2.25rem);
    color: var(--bs-black);
    padding-left: 0;
    border-left: none;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 3.5rem 0 1.5rem;
}

.article-content > section:first-child h2:first-child,
.article-content h2:first-child {
    margin-top: 0;
}

/* H3 */
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-black);
    letter-spacing: -0.01em;
    margin: 2.5rem 0 1rem;
}

/* Paragraphs: justified */
.article-content p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--bs-gray-dark);
    text-align: justify;
    hyphens: auto;
    margin-bottom: 1.5rem;
}

/* First paragraph — subtle emphasis */
.article-content > p:first-of-type,
.article-content > section:first-child > p:first-of-type {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--bs-black);
    line-height: 1.8;
}

/* Links — dark, underlined, yellow on hover */
.article-content a {
    color: var(--bs-gray-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article-content a:hover {
    color: var(--bs-yellow);
}

/* Keep buttons/tags without underline */
.article-content .btn-industrial,
.article-content .tag-link,
.article-content .share-btn {
    text-decoration: none;
}


/* --------------------------------------------------------------------------
   LISTS — yellow square markers
   -------------------------------------------------------------------------- */

.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.article-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--bs-gray-dark);
    padding: 4px 0 4px 22px;
    position: relative;
    margin-bottom: 0.5rem;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--bs-yellow);
}

.article-list li::marker {
    content: '';
    color: transparent;
}


/* --------------------------------------------------------------------------
   BLOCKQUOTES — filled bg, NO border-left
   -------------------------------------------------------------------------- */

.article-quote,
.trend-insight blockquote {
    border-left: none;
    background: var(--bs-gray-light);
    padding: 40px 48px;
    margin: 2.5rem 0;
}

.article-quote p,
.trend-insight blockquote p {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--bs-black);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

.article-quote cite,
.trend-insight blockquote cite {
    display: block;
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--bs-gray-mid);
    margin-top: 16px;
    letter-spacing: 0.5px;
}


/* --------------------------------------------------------------------------
   CODE BLOCKS — clean dark, no blue border
   -------------------------------------------------------------------------- */

.article-content pre {
    background: #0a0a0a;
    border: none;
    border-radius: 0;
    padding: 32px;
    margin: 2rem 0;
}

.article-content pre code {
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
}

.article-content p code {
    background: rgba(0,0,0,0.06);
    border-radius: 0;
    padding: 2px 8px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9em;
    color: var(--bs-black);
}

.bs-code-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bs-code-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.bs-code-lang {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-gray-mid);
}


/* --------------------------------------------------------------------------
   TABLES — clean editorial, no industrial blue
   -------------------------------------------------------------------------- */

.bs-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content table,
.results-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content th,
.results-section th {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bs-gray-mid);
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: none;
}

.article-content td,
.results-section td {
    font-size: 15px;
    color: var(--bs-gray-dark);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.article-content td.cell-highlight,
.results-section td.cell-highlight {
    font-weight: 600;
    color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   CALLOUTS — editorial, no blue border-left
   -------------------------------------------------------------------------- */

.article-callout {
    border-left: none;
    border-radius: 0;
}

.callout-info {
    background: var(--bs-gray-light);
    border-left: none;
}

.callout-info .callout-icon,
.callout-info strong {
    color: var(--bs-black);
}

.callout-tip {
    background: rgba(26, 58, 42, 0.06);
    border-left: none;
}

.callout-warning {
    background: rgba(232, 185, 49, 0.08);
    border-left: none;
}


/* --------------------------------------------------------------------------
   RESULT CALLOUT
   -------------------------------------------------------------------------- */

.bs-result {
    background: rgba(232,185,49,0.06);
    padding: 24px 32px;
    margin: 2rem 0;
}

.bs-result strong {
    color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   METRIC CALLOUT
   -------------------------------------------------------------------------- */

.bs-metric {
    background: var(--bs-gray-light);
    padding: 28px 32px;
    margin: 2rem 0;
}

.bs-metric__project {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-yellow);
    display: block;
    margin-bottom: 8px;
}


/* --------------------------------------------------------------------------
   NARRATIVE METRICS GRID
   -------------------------------------------------------------------------- */

.bs-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin: 2rem 0;
}

.bs-metrics-grid__item {
    padding: 36px 24px;
    text-align: center;
    background: var(--bs-gray-light);
}

.bs-metrics-grid__value {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--bs-black);
    display: block;
}

.bs-metrics-grid__label {
    font-size: 13px;
    color: var(--bs-gray-mid);
    margin-top: 10px;
    display: block;
}


/* --------------------------------------------------------------------------
   PROJECT PHASES
   -------------------------------------------------------------------------- */

.bs-phases {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
}

.bs-phase {
    padding: 32px;
    border-top: 2px solid var(--bs-yellow);
    background: var(--bs-gray-light);
}

.bs-phase__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.bs-phase__head h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.bs-phase__duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bs-phase__tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bs-phase__tasks li {
    font-size: 15px;
    padding: 6px 0 6px 18px;
    position: relative;
    color: var(--bs-gray-dark);
}

.bs-phase__tasks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   CODE COMPARISON (refactoring articles)
   -------------------------------------------------------------------------- */

.bs-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 2rem 0;
}

.bs-compare__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bs-compare__before .bs-compare__label {
    color: #cc4444;
}

.bs-compare__after .bs-compare__label {
    color: #44aa66;
}

.bs-compare__problems li {
    font-size: 14px;
    color: #cc4444;
}

.bs-compare__benefits li {
    font-size: 14px;
    color: #44aa66;
}


/* --------------------------------------------------------------------------
   PRINCIPLE BADGE (refactoring articles)
   -------------------------------------------------------------------------- */

.bs-principle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bs-yellow);
    display: inline-block;
    margin-bottom: 16px;
}


/* --------------------------------------------------------------------------
   CTA BOX — editorial
   -------------------------------------------------------------------------- */

.article-cta .cta-box {
    background: #0a0a0a;
    padding: 48px;
    border: none;
}

.article-cta .cta-box p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-align: left;
}

.article-cta .btn-industrial {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 12px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s;
}

.article-cta .btn-industrial:hover {
    background: transparent;
    border-color: #fff;
    color: #ffffff;
}


/* --------------------------------------------------------------------------
   TAGS — editorial
   -------------------------------------------------------------------------- */

.article-tags {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 32px;
}

.tags-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-gray-mid);
}

.tags-list .tag-link {
    font-size: 13px;
    color: var(--bs-gray-dark);
    padding: 0;
    background: none;
    border: none;
    text-decoration: none;
    transition: color 0.2s;
}

.tags-list .tag-link:hover {
    color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   SHARE BUTTONS — editorial colors
   -------------------------------------------------------------------------- */

.share-btn {
    border-radius: 0;
}

.share-btn:hover {
    border-color: var(--bs-black);
    color: var(--bs-black);
}

.share-buttons-vertical .share-btn:hover {
    border-color: var(--bs-black);
    color: var(--bs-black);
}


/* --------------------------------------------------------------------------
   SIDEBAR — premium editorial
   -------------------------------------------------------------------------- */

.article-sidebar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- TOC --- */
.toc-desktop {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 40px;
}

.toc-title {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bs-gray-mid);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.toc-list li {
    margin-bottom: 0;
}

.toc-list a {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--bs-gray-mid);
    border-left: 2px solid rgba(0,0,0,0.06);
    padding: 8px 0 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toc-list a:hover {
    color: var(--bs-black);
    border-left-color: rgba(0,0,0,0.2);
}

.toc-list a.active {
    color: var(--bs-black);
    font-weight: 600;
    border-left-color: var(--bs-yellow);
    border-left-width: 3px;
}

/* --- SHARE --- */
.sidebar-share {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bs-gray-mid);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.share-buttons-vertical {
    gap: 0;
}

.share-buttons-vertical .share-btn {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 12px 0;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--bs-gray-mid);
    transition: all 0.25s;
    justify-content: flex-start;
}

.share-buttons-vertical .share-btn:last-child {
    border-bottom: none;
}

.share-buttons-vertical .share-btn:hover {
    color: var(--bs-black);
    border-color: rgba(0,0,0,0.04);
    padding-left: 6px;
}

.share-buttons-vertical .share-btn svg {
    opacity: 0.4;
    transition: opacity 0.25s;
}

.share-buttons-vertical .share-btn:hover svg {
    opacity: 1;
}

/* --- RELATED --- */
.sidebar-related {
    padding-top: 0;
}

.related-list li {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0;
}

.related-list a {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-gray-mid);
    display: block;
    padding: 10px 0;
    border-left: 2px solid transparent;
    padding-left: 16px;
    transition: all 0.25s;
}

.related-list a:hover {
    color: var(--bs-black);
    border-left-color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   AUTHOR BOX — editorial
   -------------------------------------------------------------------------- */

.author-box-section {
    background: var(--bs-gray-light);
}

.author-box {
    border: none;
    background: #fff;
}

.author-box-role {
    color: var(--bs-gray-mid);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.author-box-social .social-link:hover {
    color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   NAVIGATION — editorial
   -------------------------------------------------------------------------- */

.nav-title {
    transition: color 0.2s;
}

.nav-link:hover .nav-title {
    color: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   MORE ARTICLES — override to fix cards
   -------------------------------------------------------------------------- */

.more-articles {
    background: var(--bs-gray-light);
}

.more-articles .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

/* Ensure blog cards display correctly */
.more-articles .blog-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.more-articles .blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.more-articles .blog-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.more-articles .blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.more-articles .blog-card-image img,
.more-articles .blog-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.more-articles .blog-card:hover .blog-card-image img,
.more-articles .blog-card:hover .blog-card-image video {
    transform: scale(1.03);
}

.more-articles .blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.more-articles .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.more-articles .blog-card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

.more-articles .blog-card-title a {
    color: var(--bs-black);
    text-decoration: none;
}

.more-articles .blog-card-title a:hover {
    color: var(--bs-yellow);
}

.more-articles .blog-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--bs-gray-dark);
    flex: 1;
}

.more-articles .blog-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--bs-gray-mid);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
}


/* --------------------------------------------------------------------------
   READING PROGRESS — editorial yellow
   -------------------------------------------------------------------------- */

.reading-progress-bar {
    background: var(--bs-yellow);
}


/* --------------------------------------------------------------------------
   MOBILE TOC — editorial
   -------------------------------------------------------------------------- */

.toc-mobile {
    border: 1px solid rgba(0,0,0,0.06);
}

.toc-toggle {
    background: var(--bs-gray-light);
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .more-articles .blog-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-quote,
    .trend-insight blockquote {
        padding: 32px 24px;
    }

    .article-quote p,
    .trend-insight blockquote p {
        font-size: 1.125rem;
    }

    .bs-compare {
        grid-template-columns: 1fr;
    }

    .bs-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .more-articles .blog-grid-3 {
        grid-template-columns: 1fr;
    }

    .article-cta .cta-box {
        padding: 32px 24px;
    }

    .article-cta .btn-industrial {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .bs-metrics-grid {
        grid-template-columns: 1fr;
    }
}

} /* end @layer blog-single */


/* --------------------------------------------------------------------------
   HERO HEIGHT OVERRIDE — outside @layer for max specificity
   Ensures 100vh on all devices including mobile
   -------------------------------------------------------------------------- */

.bh-hero {
    min-height: 100vh;
    min-height: 100dvh;
}

@media (max-width: 768px) {
    .bh-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .bh-hero__inner {
        padding: 100px 24px 60px;
    }

    .bh-hero__content {
        max-width: 100%;
    }

    .bh-hero__title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        max-width: 100%;
    }

    .bh-hero__meta {
        gap: 24px;
        flex-wrap: wrap;
    }
}
