.vl-blog-page {
    background: transparent;
    padding-bottom: 8rem;
}

.vl-blog-hero {
    padding: clamp(4rem, 9vw, 8rem) 0 4rem;
    background: transparent;
}

.vl-blog-hero h1 {
    max-width: 12ch;
    margin: .2em 0;
    font: 750 clamp(2.55rem, 5.8vw, 5.35rem)/1 var(--vl-font-display);
    letter-spacing: 0;
    color: #ffffff !important;
}

.vl-blog-hero p:last-child {
    max-width: 54ch;
    color: var(--vl-muted-light) !important;
    line-height: 1.65;
}

.vl-blog-layout,
.vl-react-blog {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 7rem);
    padding-top: 3.5rem;
}

.vl-react-blog__sidebar {
    display: grid;
    align-content: start;
    gap: .35rem;
}

.vl-react-blog__sidebar p,
.vl-react-blog__head,
.vl-react-blog__grid span,
.vl-blog-promo-rail span,
.vl-blog-promo-rail small {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vl-react-blog__sidebar p {
    color: var(--vl-cta) !important;
}

.vl-react-blog__sidebar button {
    border: 0;
    border-bottom: 1px solid var(--vl-glass-border);
    background: transparent;
    padding: .75rem 0;
    color: var(--vl-muted-light) !important;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.vl-react-blog__sidebar button.is-active,
.vl-react-blog__head a,
.vl-react-blog__grid span,
.vl-react-blog__grid article > a {
    color: var(--vl-emerald) !important;
    font-weight: 850;
}

.vl-react-blog__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--vl-glass-border);
    color: var(--vl-muted-light);
}

.vl-react-blog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.vl-react-blog__grid article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: clamp(1.3rem, 3vw, 2.3rem);
    border: 1px solid var(--vl-glass-border) !important;
    border-radius: var(--vl-radius);
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(16px);
    box-shadow: var(--vl-shadow-soft);
}

.vl-react-blog__grid h2 {
    margin: .7rem 0;
    font: 750 clamp(1.65rem, 2.5vw, 2.45rem)/1.02 var(--vl-font-display);
    letter-spacing: 0;
    color: #ffffff !important;
}

.vl-react-blog__grid h2 a {
    color: #ffffff !important;
}

.vl-react-blog__grid p {
    color: var(--vl-muted-light) !important;
    line-height: 1.55;
}

.vl-react-blog__grid article > a {
    margin-top: auto;
}

.vl-blog-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
}

.vl-blog-promo-rail {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding-top: 3.5rem;
}

.vl-blog-promo-rail a {
    display: grid;
    gap: .65rem;
    padding: 1rem;
    border: 1px solid var(--vl-glass-border);
    border-radius: var(--vl-radius);
    background: rgba(15, 23, 42, 0.85);
    color: var(--vl-ink);
    text-decoration: none;
    box-shadow: var(--vl-shadow-soft);
}

.vl-blog-promo-rail a:first-child {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(202, 138, 4, 0.2));
    border: 1px solid var(--vl-glass-border-accent);
    color: #ffffff;
}


.vl-blog-promo-rail img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--vl-radius-sm);
    object-fit: cover;
}

.vl-blog-promo-rail strong {
    font: 750 1.55rem/1.04 var(--vl-font-display);
}

@media (max-width: 900px) {
    .vl-blog-layout,
    .vl-react-blog {
        grid-template-columns: 1fr;
    }

    .vl-blog-promo-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .vl-react-blog__sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vl-react-blog__sidebar p {
        grid-column: 1 / -1;
    }

    .vl-react-blog__grid,
    .vl-blog-promo-rail {
        grid-template-columns: 1fr;
    }
}
