:root {
    --motion-duration-fast: 160ms;
    --motion-duration-standard: 240ms;
    --motion-duration-slow: 560ms;
    --motion-duration-ambient: 3000ms;
    --motion-ease-standard: cubic-bezier(.2, 0, 0, 1);
    --motion-ease-out: cubic-bezier(.22, 1, .36, 1);
    --animate-duration: var(--motion-duration-slow);
}

.appear-animation.animated {
    animation-duration: var(--motion-duration-slow) !important;
    animation-timing-function: var(--motion-ease-out);
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    .appear-animation,
    .appear-animation.animated,
    .appear-animation-visible {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

#mainNav.menu-small > li > .nav-link {
    font-size: 13px;
}


/* Error Page */
.error-layout-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #f7f5f1;
    font-family: "Poppins", Arial, sans-serif;
}

.error-layout-body > main {
    display: flex;
    flex: 1;
}

.error-layout-header {
    position: relative;
    z-index: 5;
    padding: 1.35rem 0;
    background: #2a2a2a;
    border-bottom: 1px solid rgba(255, 225, 168, .16);
}

.error-layout-brand {
    display: inline-flex;
    align-items: center;
}

.error-layout-brand img {
    display: block;
    width: 200px;
    height: auto;
}

.error-layout-footer {
    position: relative;
    z-index: 5;
    padding: 1.25rem 0;
    background: #2a2a2a;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    text-align: center;
}

.error-page {
    --error-dark: #2a2a2a;
    --error-gold: #8f6b3a;
    --error-gold-light: #ffe1a8;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: clamp(7rem, 12vw, 11rem) 0 clamp(6rem, 10vw, 9rem);
    overflow: hidden;
    background: linear-gradient(180deg, var(--error-dark) 0 42%, #f7f5f1 42% 100%);
}

.error-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 42%;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.error-page-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.error-page-glow-one {
    width: 360px;
    height: 360px;
    top: -150px;
    right: -80px;
    background: rgba(255, 225, 168, .09);
}

.error-page-glow-two {
    width: 280px;
    height: 280px;
    bottom: -160px;
    left: -80px;
    background: rgba(143, 107, 58, .1);
}

.error-page-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(143, 107, 58, .12);
    border-radius: 32px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 30px 90px rgba(18, 24, 33, .18);
}

.error-page-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38%;
    height: 4px;
    background: linear-gradient(90deg, var(--error-gold), var(--error-gold-light), transparent);
}

.error-page-copy {
    padding: clamp(2.2rem, 6vw, 5.5rem);
    text-align: center;
}

.error-page-logo {
    display: block;
    width: min(250px, 72%);
    margin: 0 auto 1.75rem;
}

.error-page-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.error-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    color: var(--error-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.error-page-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(143, 107, 58, .55);
}

.error-page-title {
    margin: 0 0 1.35rem;
    color: var(--error-dark);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.15;
}

.error-page-description {
    max-width: 610px;
    margin: 0 auto;
    color: #64676d;
    font-size: clamp(.88rem, 1.1vw, .98rem);
    line-height: 1.7;
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    margin-top: 2rem;
}

.error-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 52px;
    padding: .8rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--motion-duration-standard) var(--motion-ease-standard), background-color var(--motion-duration-standard) var(--motion-ease-standard), border-color var(--motion-duration-standard) var(--motion-ease-standard), color var(--motion-duration-standard) var(--motion-ease-standard), box-shadow var(--motion-duration-standard) var(--motion-ease-standard);
}

.error-page-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.error-page-button-primary {
    background: var(--error-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(42, 42, 42, .2);
}

.error-page-button-primary:hover {
    background: var(--error-gold);
    color: #fff;
}

.error-page-button-secondary {
    background: #fff;
    border-color: rgba(42, 42, 42, .13);
    color: var(--error-dark);
}

.error-page-button-secondary:hover {
    border-color: rgba(143, 107, 58, .4);
    color: var(--error-gold);
}

.error-page-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 225, 168, .18), transparent 28%),
        linear-gradient(145deg, #353535, #202020);
}

.error-page-visual::before,
.error-page-visual::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 330px;
    border: 1px solid rgba(255, 225, 168, .12);
    border-radius: 90px 90px 0 0;
}

.error-page-visual::before {
    left: -60px;
    bottom: -130px;
}

.error-page-visual::after {
    right: -55px;
    top: -120px;
    transform: rotate(180deg);
}

.error-page-visual-label {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, .045);
    font-size: clamp(7rem, 13vw, 12rem);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -.08em;
}

.error-page-orbit {
    position: absolute;
    border: 1px solid rgba(255, 225, 168, .22);
    border-radius: 50%;
}

.error-page-orbit-outer {
    width: 310px;
    height: 310px;
}

.error-page-orbit-inner {
    width: 214px;
    height: 214px;
    border-style: dashed;
    animation: error-page-spin 24s linear infinite;
}

.error-page-compass {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(255, 225, 168, .3);
    border-radius: 50%;
    background: rgba(255, 255, 255, .045);
    color: var(--error-gold-light);
    font-size: 3.4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    backdrop-filter: blur(8px);
}

.error-page-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--error-gold-light);
    box-shadow: 0 0 0 8px rgba(255, 225, 168, .07);
}

.error-page-dot-one {
    top: 21%;
    right: 27%;
}

.error-page-dot-two {
    right: 18%;
    bottom: 24%;
    width: 6px;
    height: 6px;
}

.error-page-dot-three {
    left: 21%;
    bottom: 30%;
    width: 5px;
    height: 5px;
}

.error-page-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: 1.5rem 0 0;
    color: #777a80;
    font-size: .82rem;
    text-align: center;
}

.error-page-note i {
    color: var(--error-gold);
}

@keyframes error-page-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .error-page-orbit-inner {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .error-page {
        align-items: flex-start;
        min-height: auto;
        padding: 7rem 0 8rem;
        background: linear-gradient(180deg, var(--error-dark) 0 30%, #f7f5f1 30% 100%);
    }

    .error-page::before {
        height: 30%;
    }

    .error-page-visual {
        min-height: 340px;
    }

    .error-page-orbit-outer {
        width: 250px;
        height: 250px;
    }

    .error-page-orbit-inner {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 575.98px) {
    .error-layout-header {
        padding: 1rem 0;
    }

    .error-layout-brand img {
        width: 170px;
    }

    .error-page {
        padding: 5.5rem 0 7rem;
    }

    .error-page-card {
        border-radius: 24px;
    }

    .error-page-copy {
        padding: 2rem 1.35rem 2.25rem;
    }

    .error-page-title {
        font-size: 1.85rem;
    }

    .error-page-actions {
        flex-direction: column;
    }

    .error-page-button {
        width: 100%;
    }

    .error-page-visual {
        min-height: 280px;
    }

    .error-page-orbit-outer {
        width: 220px;
        height: 220px;
    }

    .error-page-orbit-inner {
        width: 150px;
        height: 150px;
    }

    .error-page-compass {
        width: 96px;
        height: 96px;
        font-size: 2.8rem;
    }
}

#mainNav.menu-xsmall > li > .nav-link {
    font-size: 11px;
}


.home-main-slider,
.home-main-slider .owl-stage-outer,
.home-main-slider .owl-stage,
.home-main-slider .owl-item,
.home-main-slide,
.home-main-slide-link,
.home-main-slide-img {
    height: calc(100vh - 100px);
    height: calc(100svh - 100px);
}

.home-main-slide {
    border-radius: 0 !important;
    background-color: #2a2a2a;
}

.home-main-slide-link {
    display: block;
    width: 100%;
}

.home-main-slide-link picture {
    display: block;
    width: 100%;
    height: 100%;
}

.home-main-slide-img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


@media (max-width: 991px) {
    .home-main-slider {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 3 / 2;
    }

    .home-main-slider .owl-stage-outer,
    .home-main-slider .owl-stage,
    .home-main-slider .owl-item,
    .home-main-slide,
    .home-main-slide-link,
    .home-main-slide-img {
        height: 100% !important;
        min-height: 0 !important;
    }

    .home-main-slide-img {
        object-fit: cover;
        object-position: center;
    }
}


.latest-video-medias-widget-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.latest-video-medias-widget-carousel .owl-item {
    display: flex;
    height: auto;
}

.latest-video-medias-widget-carousel .content-hub-carousel-item {
    width: 100%;
    height: 100%;
}

.latest-video-medias-widget-carousel .content-hub-card {
    width: 100%;
}

.latest-articles-widget-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.latest-articles-widget-carousel .owl-item {
    display: flex;
    height: auto;
}

.latest-articles-widget-carousel .content-hub-carousel-item {
    width: 100%;
    height: 100%;
}

.latest-articles-widget-carousel .content-hub-card {
    width: 100%;
}


.content-hub-intro-card {
    margin-top: -90px;
    position: relative;
    z-index: 4;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,247,250,.98));
    box-shadow: 0 22px 60px rgba(24, 37, 56, .12);
    overflow: hidden;
}

    .content-hub-intro-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(180, 144, 93, .14), transparent 30%), radial-gradient(circle at bottom left, rgba(31, 55, 91, .08), transparent 35%);
        pointer-events: none;
    }

    .content-hub-intro-card > .row,
    .content-hub-category-section,
    .content-hub-featured-card,
    .content-hub-detail-card,
    .content-hub-side-card {
        position: relative;
        z-index: 1;
    }

.content-hub-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8f6b3a;
}

    .content-hub-kicker::before {
        content: "";
        width: 34px;
        height: 1px;
        background: rgba(143, 107, 58, .45);
    }

.content-hub-stat {
    border-left: 1px solid rgba(31, 55, 91, .08);
    padding-left: 1.5rem;
}

.content-hub-stat-value {
    display: block;
    line-height: 1;
    color: var(--quaternary);
    font-weight: 800;
}

.content-hub-stat-label {
    display: block;
    margin-top: .45rem;
    font-size: .9rem;
    color: #777;
}

.content-hub-category-section {
    padding: 2rem;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
    box-shadow: 0 16px 50px rgba(28, 44, 68, .08);
    margin-bottom: 2.5rem;
}

.content-hub-section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.content-hub-section-subtitle {
    color: #6f7682;
    margin: 0;
}

.content-hub-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .55rem 1rem;
    background: #fff;
    border: 1px solid rgba(31, 55, 91, .09);
    color: #1f375b;
    font-size: .85rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(20, 33, 52, .06);
}

.content-hub-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(18, 31, 50, .12);
    transition: transform var(--motion-duration-standard) var(--motion-ease-standard), box-shadow var(--motion-duration-standard) var(--motion-ease-standard);
}

    .content-hub-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 55px rgba(18, 31, 50, .18);
    }

.content-hub-card-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d405b, #8f6b3a);
    aspect-ratio: 16 / 9;
}

    .content-hub-card-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform var(--motion-duration-slow) var(--motion-ease-standard);
    }

.content-hub-card:hover .content-hub-card-media img {
    transform: scale(1.06);
}

.content-hub-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.content-hub-card-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: .85rem;
    color: #7a7f88;
}

    .content-hub-card-meta > span {
        display: inline-flex;
        flex: 0 1 auto;
        align-items: center;
        gap: .35rem;
        min-width: 0;
    }

    .content-hub-card-meta > span > span {
        min-width: 0;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .content-hub-card-meta i {
        flex: 0 0 auto;
        margin-top: 0;
    }

.content-hub-card-title {
    display: -webkit-box;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.45em * 2);
    max-height: calc(1.45em * 2);
}

.content-hub-card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.6rem;
    color: #6c7480;
}

.content-hub-card-body > a.text-uppercase {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: auto;
    padding-top: .35rem;
}

.content-hub-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: .75rem;
    margin-top: auto;
    padding-top: .85rem;
    border-top: 1px solid rgba(31, 55, 91, .12);
}

    .content-hub-card-footer > a {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        margin-left: auto;
        white-space: nowrap;
    }

.content-hub-created-date {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    flex: 0 0 auto;
    color: #7a7f88;
    font-size: .68rem;
    line-height: 1.35;
    white-space: nowrap;
}

    .content-hub-created-date i {
        flex: 0 0 auto;
        color: #1f375b;
    }

.content-hub-play-badge,
.content-hub-category-badge,
.content-hub-date-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    border-radius: 999px;
    padding: .35rem .5rem;
    background: rgba(16, 24, 38, .82);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.content-hub-category-badge {
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-hub-date-badge {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, .92);
    color: #1f375b;
}

.content-hub-featured-card {
    border-radius: 30px;
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    box-shadow: 0 22px 60px rgba(20, 33, 52, .12);
    overflow: hidden;
    margin-bottom: 2rem;
}

.content-hub-featured-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d405b, #8f6b3a);
    aspect-ratio: 16 / 9;
}

    .content-hub-featured-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.content-hub-featured-body {
    padding: 2.25rem;
}

    .content-hub-featured-body p:last-child {
        margin-bottom: 0;
    }

.content-hub-grid-card {
    margin-bottom: 1.75rem;
}

.content-hub-category-section .owl-stage {
    display: flex;
    align-items: stretch;
}

.content-hub-category-section .owl-item {
    display: flex;
    height: auto;
}

.content-hub-carousel-item {
    display: flex;
    width: 100%;
    height: 100%;
}

    .content-hub-carousel-item .content-hub-card {
        width: 100%;
    }

.content-hub-pagination .page-link {
    min-width: 44px;
    text-align: center;
    border-radius: 999px !important;
    margin: 0 4px;
    border: none;
    background: #f1f4f8;
    color: #1f375b;
    font-weight: 700;
}

.content-hub-pagination .page-item.active .page-link {
    background: #8f6b3a;
    color: #fff;
    box-shadow: 0 12px 30px rgba(31, 55, 91, .25);
}

.content-hub-detail-shell {
    margin-top: -80px;
    position: relative;
    z-index: 4;
}

.content-hub-detail-sidebar-column {
    align-self: flex-start;
}

.content-hub-detail-card {
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 70px rgba(18, 31, 50, .12);
}

.content-hub-detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d405b, #8f6b3a);
    aspect-ratio: 16 / 9;
}

    .content-hub-detail-hero img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.content-hub-detail-hero-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.content-hub-detail-hero .carousel-inner,
.content-hub-detail-hero .carousel-item {
    width: 100%;
    height: 100%;
}

.content-hub-detail-hero .carousel-item {
    position: relative;
}

.content-hub-detail-hero .carousel-control-prev,
.content-hub-detail-hero .carousel-control-next {
    width: 11%;
    z-index: 4;
}

.content-hub-detail-hero .carousel-control-prev-icon,
.content-hub-detail-hero .carousel-control-next-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-size: 45%;
    background-color: rgba(18, 31, 50, .68);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
}

.content-hub-detail-thumbnails.carousel-indicators {
    position: static;
    display: flex;
    justify-content: flex-start;
    gap: .75rem;
    margin: 0;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    background: #fff;
    scrollbar-width: thin;
}

.content-hub-detail-thumbnails.carousel-indicators .content-hub-detail-thumbnail {
    position: relative;
    flex: 0 0 clamp(110px, 23%, 170px);
    width: auto;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #e9edf3;
    opacity: .68;
    text-indent: 0;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.content-hub-detail-thumbnails.carousel-indicators .content-hub-detail-thumbnail:hover,
.content-hub-detail-thumbnails.carousel-indicators .content-hub-detail-thumbnail:focus-visible,
.content-hub-detail-thumbnails.carousel-indicators .content-hub-detail-thumbnail.active {
    border-color: #8f6b3a;
    box-shadow: 0 5px 16px rgba(18, 31, 50, .18);
    opacity: 1;
}

.content-hub-detail-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-hub-detail-thumbnail-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(18, 31, 50, .78);
    color: #fff;
    place-items: center;
    transform: translate(-50%, -50%);
}

.content-hub-detail-body {
    padding: 2.25rem;
}

.content-hub-detail-lead {
    font-size: 1.12rem;
    line-height: 1.9;
    color: #586171;
}

.content-hub-detail-content {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(31, 55, 91, .08);
}

    .content-hub-detail-content p,
    .content-hub-detail-content li {
        font-size: 1rem;
        line-height: 1.95;
        color: #4d5665;
    }

.content-hub-side-card {
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 48px rgba(18, 31, 50, .1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-hub-detail-sidebar {
    width: 100%;
}

.content-hub-sticky-stack {
    position: relative;
}

.content-hub-side-title {
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8f6b3a;
    margin-bottom: 1rem;
}

.content-hub-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .content-hub-nav-list li + li {
        margin-top: .8rem;
    }

    .content-hub-nav-list a {
        display: block;
        padding: .9rem 1rem;
        border-radius: 16px;
        background: #f4f7fb;
        color: var(--primary);
        font-weight: 600;
        transition: background-color var(--motion-duration-standard) var(--motion-ease-standard), color var(--motion-duration-standard) var(--motion-ease-standard);
        text-decoration: none;
    }

        .content-hub-nav-list a:hover {
            background: var(--quaternary);
            color: #fff;
        }

.content-hub-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-hub-related-item + .content-hub-related-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 55, 91, .08);
}

.content-hub-related-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 72px;
    background: linear-gradient(135deg, #2d405b, #8f6b3a);
}

    .content-hub-related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.content-hub-empty {
    border-radius: 28px;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    box-shadow: 0 18px 48px rgba(20, 33, 52, .08);
    text-align: center;
}

/* İçerik kartlarında mobil genişliği, navigasyon için daraltmadan koru. */
@media (min-width: 992px) {
    .content-hub-card-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }

    .content-hub-card-carousel.owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
}

@media (max-width: 767.98px) {
    .content-hub-category-section {
        padding: 1.25rem;
    }

    .content-hub-card-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -12px;
    }

    .content-hub-card-carousel.owl-carousel .owl-nav button.owl-next {
        right: -12px;
    }
}

@media (max-width: 991.98px) {
    .content-hub-intro-card {
        margin-top: -60px;
    }

    .content-hub-stat {
        border-left: 0;
        border-top: 1px solid rgba(31, 55, 91, .08);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .content-hub-featured-body,
    .content-hub-detail-body {
        padding: 1.5rem;
    }

    .content-hub-card-body {
        padding: 1.25rem;
    }

    .content-hub-card-title {
        font-size: 1.05rem !important;
    }

    .content-hub-detail-shell {
        margin-top: -45px;
    }

    .content-hub-detail-sidebar-column {
        align-self: auto;
    }

    .content-hub-detail-hero {
        aspect-ratio: 16 / 10;
    }

    .content-hub-detail-sidebar {
        width: 100%;
    }

    .content-hub-sticky-stack {
        position: static;
        top: auto;
    }
}


