  section.blog-hero {
    background: #ffffff;
    color: #ffffff;
    margin: 0;
    padding: 0;
    position: relative;
}

section.blog-hero .blog-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    min-height: 420px;
    position: relative;
    margin: 0;
}

.blog-hero__media {
    overflow: hidden;
    height: 100%;
}

.blog-hero__figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.blog-hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero__panel {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-color: #006BA6;
}

.blog-hero__panel-inner {
    position: relative;
    width: 100%;
    z-index: 2;
}

.blog-hero__title {
    font-family: "IBM Plex Serif", serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0;
    margin: 0;
}

.blog-hero__lyceum {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 3rem;
    width: 42%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.blog-hero__lyceum img {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
    object-fit: cover;
}

.blog-hero__date-ribbon {
    width: fit-content;
    height: 32px;
    position: absolute;
    top: 63px;
    left: 500px;
    background: #006BA6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.4rem 0.9rem 0.4rem 0.9rem;
    font-family: "IBM Plex Serif", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.blog-hero__date-ribbon--overlay {
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(30%);
    z-index: 3;
}

.blog-hero__meta-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: relative;
    background: #006BA6;
}

.blog-hero__accent-rect {
    background: #F8EDDA;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 420px;
}

.blog-hero__bottom-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 3rem;
    background: #006BA6;
    z-index: 2;
}

.blog-hero__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.blog-hero__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-hero__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero__author-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: #002147;
}

.blog-hero__share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
}

.blog-hero__share-label {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #006BA6;
}

.blog-hero__share-icon {
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    color: #006BA6;
}

.blog-hero__share-icon:hover,
.blog-hero__share-icon:focus {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section.blog-hero .blog-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-hero__panel {
        padding: 2rem 1.2rem;
    }

    .blog-hero__title {
        font-size: 2rem;
    }

    .blog-hero__date-ribbon {
        top: 1.2rem;
        left: 1.2rem;
        transform: none;
    }

    .blog-hero__lyceum {
        bottom: 3rem;
        width: 100%;
    }

    .blog-hero__lyceum img {
        height: 70%;
    }

    .blog-hero__accent-rect {
        max-width: 100%;
        padding: 1.25rem 1.25rem;
    }

    .blog-hero__bottom-bar {
        width: 100%;
    }
}
