body.topic-page-view .navigation {
    display: none;
}

.topic-page .breadcrumb {
    margin-bottom: 14px;
}

.topic-page .topic-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 26px;
    padding: 34px 36px 28px;
    margin: 10px 0 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0c1019;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 36px rgba(9, 13, 22, 0.26);
}

.topic-page .topic-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 12, 22, 0.85) 0%, rgba(8, 12, 22, 0.56) 52%, rgba(8, 12, 22, 0.28) 100%);
    pointer-events: none;
}

.topic-page .topic-hero__content,
.topic-page .topic-hero__image,
.topic-page .topic-hero__desc {
    position: relative;
    z-index: 1;
}

.topic-page .topic-hero__brand {
    display: block;
    color: #ff9e1f;
    font-weight: 800;
    line-height: 1.1;
}

.topic-page .topic-hero__brand--desktop {
    font-size: 40px;
}

.topic-page .topic-hero__brand--mobile {
    display: none;
    font-size: 28px;
}

.topic-page .topic-hero__title {
    margin: 18px 0 0;
}

.topic-page .topic-hero__title-desktop,
.topic-page .topic-hero__title-mobile {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.topic-page .topic-hero__title-mobile {
    display: none;
}

.topic-page .topic-hero__underline {
    border-bottom: 2px solid rgba(255, 255, 255, 0.86);
    padding-bottom: 1px;
}

.topic-page .topic-hero__desc {
    grid-column: 1 / 2;
    color: #f2f6ff;
    font-size: 15px;
    line-height: 1.62;
    max-width: 760px;
}

.topic-page .topic-hero__desc-desktop {
    display: block;
}

.topic-page .topic-hero__desc-mobile {
    display: none;
}

.topic-page .topic-hero__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topic-page .topic-hero__image img {
    max-height: 210px;
    width: auto;
    object-fit: contain;
}

/* full-bleed desktop/topic hero aligned to page content grid */
@media (min-width: 1480px) {
    .topic-page .topic-hero {
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc((100vw - 1440px) / 2 + 20px);
        padding-right: calc((100vw - 1440px) / 2 + 20px);
        box-shadow: none;
    }
}

@media (min-width: 1200px) and (max-width: 1479px) {
    .topic-page .topic-hero {
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc((100vw - 1170px) / 2 + 15px);
        padding-right: calc((100vw - 1170px) / 2 + 15px);
        box-shadow: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .topic-page .topic-hero {
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc((100vw - 970px) / 2 + 15px);
        padding-right: calc((100vw - 970px) / 2 + 15px);
        box-shadow: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .topic-page .topic-hero {
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc((100vw - 750px) / 2 + 15px);
        padding-right: calc((100vw - 750px) / 2 + 15px);
        box-shadow: none;
    }
}

@media (max-width: 991px) {
    .topic-page .topic-hero {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 16px 14px;
        margin-bottom: 14px;
    }

    .topic-page .topic-hero__brand--desktop,
    .topic-page .topic-hero__title-desktop,
    .topic-page .topic-hero__desc-desktop {
        display: none;
    }

    .topic-page .topic-hero__brand--mobile,
    .topic-page .topic-hero__title-mobile,
    .topic-page .topic-hero__desc-mobile {
        display: block;
    }

    .topic-page .topic-hero__title {
        margin-top: 6px;
    }

    .topic-page .topic-hero__title-mobile {
        font-size: 22px;
        line-height: 1.35;
    }

    .topic-page .topic-hero__desc {
        grid-column: 1;
        font-size: 14px;
        line-height: 1.5;
    }

    .topic-page .topic-hero__image {
        justify-content: center;
    }

    .topic-page .topic-hero__image img {
        max-height: 120px;
    }
}
