.news-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #12151c
}

.news-hero .cover {
    width: 100%;
    height: min(25vh, 520px);
    object-fit: cover;
    display: block;
    filter: brightness(.9)
}

.news-hero .meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 70%, rgba(0, 0, 0, .85) 100%);
    color: #e8edf8
}

.news-title {
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    margin: 6px 0
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .8;
    font-size: 14px
}

.news-date svg {
    width: 16px;
    height: 16px
}

.news-content {
    color: #cfd6e6;
    font-size: 16px;
    line-height: 1.75
}

.news-content h2,
.news-content h3 {
    color: #fff;
    margin-top: 1.4em
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px
}

.news-content blockquote {
    border-left: 3px solid #3a67ff33;
    padding-left: 14px;
    color: #d7def1
}

.news-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.btn-chips {
    border: 1px solid #2a2f3b;
    background: #171b23;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600
}

.news-split {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2f3b, transparent);
    margin: 28px 0
}

.adjacent {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.adjacent a {
    display: flex;
    flex: 1;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #2a2f3b;
    border-radius: 12px;
    background: #12161f
}

.adjacent .label {
    font-size: 12px;
    opacity: .7
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px
}

.related-grid .card {
    grid-column: span 12;
    background: #11151d;
    border: 1px solid #262b36;
    border-radius: 14px;
    overflow: hidden
}

@media(min-width:768px) {
    .related-grid .card {
        grid-column: span 6
    }
}

.card .thumb {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%
}

.card .body {
    padding: 12px 14px
}

.card .title {
    font-weight: 700;
    line-height: 1.3
}

.breadcrumb-mini {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    margin: 10px 0 18px 0;
    opacity: 1;
    margin-top: -10rem;
    padding: 1rem;
    background: linear-gradient(90deg, #212630 25%, transparent 46%);
    border-radius: 12px;
    font-weight: 600;
    overflow-y: auto;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
    .breadcrumb-mini {
        background: rgba(33, 38, 48, 0.832)
    }
}

.breadcrumb-mini a {
    color: #9fb3ff
}