:root {
    --midnight: #071b47;
    --midnight-light: #0b245a;
    --accent: #40D96F;
    --accent-hover: #5cf08a;
    --accent-dark: #1aa856;
}

body {
    font-family: "Exo", sans-serif;
}

.site-header {
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-light) 100%);
}

.brand-logo {
    max-height: 100px;
    width: auto;
}

.brand-name {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
}

.tracking-wide {
    letter-spacing: 0.3em;
}

.header-search {
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    padding-bottom: 0.3rem;
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.header-search .form-control {
    color: #fff;
}

.header-nav .nav-link {
    color: rgba(255, 255, 255, 1);
    transition: color 0.2s ease-in-out;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
    color: var(--accent);
}

.follow-label {
    color: var(--accent);
    letter-spacing: 0.35em;
    font-size: 0.75rem;
}

.social-link {
    display: inline-flex;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s;
}

.social-link:hover,
.social-link:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.site-footer {
    background: linear-gradient(180deg, var(--midnight) 0%, #06173f 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(106, 187, 255, 0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(59, 220, 113, 0.12), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-height: 100px;
}

.footer-brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.footer-brand-tag {
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.footer-nav li+li {
    margin-top: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease-in-out;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--accent);
}

.footer-search-field {
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    padding-bottom: 0.4rem;
}

.footer-search-field .bi {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

.footer-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    box-shadow: none;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-social .follow-label {
    letter-spacing: 0.3em;
    color: var(--accent);
    line-height: 3;
}

.footer-social .social-link {
    width: 38px;
    height: 38px;
}

.spotlight-bar {
    background: linear-gradient(180deg, var(--accent) 0%, #34c965 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    flex-grow: 1;
    /* Esnek alanda genişlemesini sağlar */
    min-width: 0;
    /* flexbox'ın taşmasını engeller */
}

.news-ticker-container {
    display: grid;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}

.spotlight-content {
    min-height: 44px;
    position: relative;
}

.spotlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spotlight-label {
    letter-spacing: 0.25em;
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.spotlight-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.2);
}

.spotlight-text {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    color: rgba(0, 0, 0, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.spotlight-text.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out;
}

.spotlight-text:hover,
.spotlight-text:focus {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: underline;
}

.spotlight-controls {
    position: relative;
    z-index: 1;
}

.spotlight-control {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.spotlight-control:hover,
.spotlight-control:focus,
.spotlight-control.active {
    background-color: #ffffff;
    color: var(--accent);
    border-color: #ffffff;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 1.25rem;
    border-bottom: 2px solid transparent;
    width: 100%;
}

.section-badge--tv {
    background-color: #CA2B1C;
    border-bottom-color: var(--midnight);
}

.section-badge--press {
    background-color: #c1741f;
    border-bottom-color: #4b3009;
}

.section-badge--articles {
    background-color: #32d06f;
    border-bottom-color: #10793a;
}

.section-badge--last {
    background-color: #2d7fd3;
    border-bottom-color: #17406d;
}

.tv-feature .tv-thumb,
.tv-item-thumb {
    position: relative;
}

.tv-thumb img,
.tv-item-thumb img {
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.tv-feature:hover .tv-thumb img,
.tv-item:hover .tv-item-thumb img {
    transform: scale(1.03);
}

.tv-play-btn,
.tv-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--midnight);
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 10px 25px rgba(7, 27, 71, 0.25);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.tv-play-btn:hover,
.tv-play-btn:focus {
    color: #fff;
    background-color: var(--accent-dark);
    transform: translate(-50%, -50%) scale(1.08);
}

.tv-play-badge {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.88);
    color: var(--midnight);
    box-shadow: 0 8px 18px rgba(7, 27, 71, 0.18);
}

.tv-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.tv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--midnight);
}

.tv-item-title {
    color: var(--midnight);
    font-weight: 600;
}

.tv-item-title:hover,
.tv-item-title:focus {
    color: var(--accent-dark);
}

.tv-meta {
    color: #6a7690;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.tv-meta .bi {
    font-size: 0.78rem;
    vertical-align: -0.05em;
}

.tv-item-thumb {
    flex: 0 0 270px;
    max-width: 270px;
}

.tv-item {
    position: relative;
}

.press-section {
    background: linear-gradient(180deg, #0d214c08 0%, #0d214c08 100%);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100% 95%;
}

.press-feature .press-thumb {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
}

.press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-in-out;
}

.press-feature:hover .press-thumb img {
    transform: scale(1.04);
}

.press-feature-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--midnight);
    line-height: 1.2;
}

.press-feature-highlight {
    display: block;
    color: var(--accent);
}

.press-body {
    background-color: transparent;
    border-radius: 1rem;
    padding: 2rem;
}

.press-card {
    background-color: transparent;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.press-card:hover .press-card-thumb img {
    transform: scale(1.04);
}

.press-card-thumb {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    border-radius: 1rem;
}

.press-card-thumb.highlight {
    border: 2px solid transparent;
    border-radius: 1rem;
    box-sizing: border-box;
}

.press-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.press-card:hover .press-card-thumb.highlight {
    border-color: var(--accent);
}

.press-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1.4;
}

.press-card:hover .press-card-title .accent {
    color: var(--accent-dark);
}

.press-meta {
    color: #6a7690;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.press-meta .bi {
    font-size: 0.75rem;
    vertical-align: -0.05em;
}

.press-card:hover {
    transform: translateY(-6px);
}

.manset-section {
    position: relative;
    background-color: #0d214c !important;
    background: url('../img/spot-bg.jpg');
    overflow: hidden;
    background-size: 70% 100%;
    background-repeat: no-repeat;
    background-position: right;
}

.manset-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(59, 220, 113, 0.15) 45%, transparent 70%);
    opacity: 0.65;
    pointer-events: none;
}

.manset-wrapper {
    position: relative;
    z-index: 1;
}

.manset-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f5f7ff;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.manset-highlight {
    color: var(--accent);
}

.manset-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    color: #929294;
    font-size: 0.85rem;
}

.manset-meta .bi {
    font-size: 0.8rem;
    vertical-align: -0.05em;
}

.manset-visual {
    max-width: 520px;
    width: 100%;
}

.manset-thumb {
    border: 3px solid var(--accent);
    box-shadow: 0 18px 40px rgba(7, 27, 71, 0.35);
}

.manset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease-in-out;
}

.manset-visual:hover .manset-thumb img {
    transform: scale(1.05);
}

.skip-card {
    background-color: transparent;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.skip-card:hover {
    transform: translateY(-6px);
}

.skip-thumb {
    position: relative;
    width: 100%;
    padding-top: 65%;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid transparent;
}

.skip-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.skip-card:hover .skip-thumb img {
    transform: scale(1.04);
}

.skip-card:hover .skip-thumb {
    border-color: var(--accent);
}

.skip-card-title {
    color: var(--midnight);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.skip-card:hover .skip-card-title .accent {
    color: var(--accent);
}

.skip-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.last-section {
    background: linear-gradient(180deg, #0d214c08 0%, #0d214c08 100%);
    background-repeat: no-repeat;
    background-position: 100% 95%;
    background-size: 100% 45%;
}

.last-card {
    background-color: transparent;
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.last-card:hover {
    transform: translateY(-4px);
}

.last-thumb {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 3px solid transparent;
}

.last-card--highlight .last-thumb {
    border-color: var(--accent);
}

.last-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.last-card:hover .last-thumb img {
    transform: scale(1.04);
}

.last-card--video .last-play {
    display: inline-flex;
}

.last-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--midnight);
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(7, 27, 71, 0.18);
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: none;
}

.last-card--video:hover .last-play {
    background-color: var(--accent);
    color: #fff;
}

.last-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.last-title {
    color: var(--midnight);
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.last-title .accent {
    color: var(--accent-dark);
}

.last-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2.75rem;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background-color: white;
    color: var(--accent-dark);
    font-weight: 600;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.last-more-btn:hover,
.last-more-btn:focus {
    background-color: var(--accent);
    color: var(--midnight);
    box-shadow: 0 12px 30px rgba(59, 220, 113, 0.25);
}

.articles-section {
    background: linear-gradient(180deg, #e6f7e9 0%, #d9f2dd 100%);
    background-repeat: no-repeat;
    background-position: 100% 65%;
    background-size: 100% 90%;
    position: relative;
}

.articles-wrapper {
    overflow: hidden;
    height: 100%;
    padding-bottom: 1rem;
}

.article-feature {
    padding: 0.5rem 2.5rem 2.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-thumb img,
.article-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.article-feature:hover .article-thumb img {
    transform: scale(1.03);
}

.article-content {
    margin-top: auto;
}

.article-title {
    color: var(--midnight);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.article-meta {
    border-radius: 10px;
    padding: 0.4rem 1.1rem;
    color: #4b5b6d;
    font-size: 0.82rem;
    display: inline-flex;
    gap: 0.75rem;
}

.article-meta .bi {
    font-size: 0.78rem;
    vertical-align: -0.05em;
}

.articles-list {
    padding: 0.5rem 0rem 0rem 0rem;
    background: linear-gradient(90deg, transparent 30%, #ffffff 30%);
    position: relative;
    right: 0;
    height: 100%;
}

.article-item {
    position: relative;
}

.article-item:hover .article-item-thumb img {
    transform: scale(1.06);
}

.article-item-thumb {
    flex: 0 0 210px;
    width: 210px;
    height: 150px;
}

.article-item-title {
    color: var(--midnight);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}

.article-item-title .accent {
    color: var(--accent-dark);
}

.articleLoad {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.article-hero p span {
    color: white !important;
}

.btn-offcanvas {
    display: none;
}

#menu-btn {
    background: transparent;
    font-size: 35px;
    padding: 0;
    height: 35px;
    line-height: 1;
    border-color: white;
    padding: 0 5px;
    transition: transform 0.3s ease-in-out;
}

.desktop-nav {
    display: flex;
}

.article-hero iframe {
    width: 100%;
    height: 420px;
}

.comments-list {
    list-style-type: none;
    padding: 0;
}

.comment-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #343a40;
}

.comment-date {
    color: #6c757d;
}

.comment-body {
    color: #495057;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .embedLead {
        position: relative;
        width: 100%;
        height: 195px;
        overflow: hidden;
    }

    .desktop-nav {
        display: none;
    }

    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-hero iframe {
        width: calc(100% / .85);
        height: calc(100% / .85);
        transform: scale(.85);
        transform-origin: 0 0;
    }

    .pagination li {
        margin-top: 6%;
    }

    .btn-offcanvas {
        display: block;
    }

    .offcanvas {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding-bottom: 400px;
        padding-top: 100px;
    }

    .offcanvas a {
        display: block;
        line-height: 46px;
        color: black;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        text-decoration: none;
        margin-bottom: 0;
    }

    .spotlight-content {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .spotlight-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .press-body {
        padding: 1.5rem;
    }

    .manset-heading {
        font-size: 2rem;
    }

    .manset-meta {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }

    .skip-card {
        padding: 1.25rem;
    }

    .skip-card-title {
        font-size: 1rem;
    }

    .articles-wrapper {
        border-radius: 1.25rem;
    }

    .article-feature {
        padding: 1.75rem;
    }

    .articles-list {
        padding: 1.75rem;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }

    .article-item {
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .article-item-thumb {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
    }

    .last-card {
        padding: 1.25rem;
    }

    .last-title {
        font-size: 0.98rem;
    }

    .last-more-btn {
        width: 100%;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-search {
        text-align: center;
    }

    .footer-search-field {
        justify-content: center;
    }

    .footer-social .follow-label {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .tv-title {
        font-size: 1.65rem;
    }

    .tv-item-thumb {
        flex-basis: 120px;
        max-width: 120px;
    }

    .press-feature-title {
        font-size: 1.65rem;
    }

    .manset-wrapper {
        text-align: center;
        flex-direction: column;
    }

    .manset-heading {
        font-size: 2rem;
    }

    .manset-meta {
        margin-inline: auto;
        margin-bottom: 24px !important;
    }

    .skip-card-title {
        font-size: 1rem;
    }

    .articles-wrapper {
        border-radius: 1.5rem;
    }

    .article-feature,
    .articles-list {
        padding: 2rem;
        background: none;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-item-thumb {
        flex: 0 0 100px;
        width: 100px;
        height: 75px;
    }

    .last-title {
        font-size: 1rem;
    }

    .header-nav .nav {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
        flex-direction: column;
    }

    .follow-label {
        letter-spacing: 0.2em;
    }

    .footer-brand {
        align-items: flex-start !important;
    }
}

.article-page {
    background-color: #f4f7ff;
    color: var(--midnight);
}

.article-hero {
    background: linear-gradient(160deg, var(--midnight) 0%, #0b245a 100%);
    color: #fff;
    position: relative;
    padding-bottom: 6rem;
}

.article-hero .display-5 {
    color: inherit;
}

.article-hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.article-hero .btn-outline-light:hover,
.article-hero .btn-outline-light:focus {
    border-color: rgba(255, 255, 255, 0.65);
    background-color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-hero {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.70rem;
}

.breadcrumb-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-hero .breadcrumb-item.active a {
    color: #fff;
    text-decoration: underline;
}

.article-badge {
    background-color: rgba(64, 217, 111, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.9rem;
}

.article-badge--soft {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.article-highlight {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.article-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
}

.article-highlight .fs-4 {
    color: #fff;
}

.btn-accent {
    background-color: var(--accent);
    border: none;
    border-radius: 999px;
    color: var(--midnight);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--accent-hover);
    color: var(--midnight);
    box-shadow: 0 12px 30px rgba(64, 217, 111, 0.25);
}

.text-accent {
    color: var(--accent) !important;
}

.article-hero-media img {
    object-fit: cover;
}

.article-body-section {
    margin-top: -4rem;
    position: relative;
    z-index: 1;
}

.article-card {
    background-color: #ffffff;
}

.article-card p {
    color: #1b2e52;
}

.article-card .text-muted {
    color: #65789d !important;
}

.article-card .small.text-muted {
    color: #8c9fbf !important;
}

.article-page .article-meta {
    padding: 0;
    border-radius: 0;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.article-page .article-meta .bi {
    font-size: 1rem;
    color: var(--accent);
}

.article-nav {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
}

.article-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.article-nav-link {
    flex: 1 1 0;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.article-nav-link:hover,
.article-nav-link:focus {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    color: #ffffff;
}

.article-nav-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-nav-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.article-nav-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.article-alert {
    border-radius: 1.25rem;
    border: 1px solid rgba(64, 217, 111, 0.35);
    background-color: rgba(64, 217, 111, 0.12);
}

.article-table thead th {
    padding-bottom: 0.85rem;
}

.article-table tbody td {
    padding: 0.95rem 0.75rem;
    color: #1a2c4f;
}

.article-table tbody tr+tr td {
    border-top: 1px solid rgba(7, 27, 71, 0.08);
}

.article-insight {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid rgba(7, 27, 71, 0.08);
    box-shadow: 0 10px 25px rgba(7, 27, 71, 0.08);
}

.article-quote {
    border-radius: 1.5rem;
}

.article-checklist li {
    background-color: rgba(7, 27, 71, 0.03);
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.75rem;
}

.article-checklist li:last-child {
    margin-bottom: 0;
}

.article-accordion .accordion-button {
    font-weight: 600;
    color: #0d214c;
}

.article-accordion .accordion-button:not(.collapsed) {
    color: var(--accent);
    background-color: rgba(64, 217, 111, 0.08);
}

.article-accordion .accordion-body {
    color: #1b2e52;
}

.article-tag {
    background-color: rgba(7, 27, 71, 0.05);
    color: #0d214c;
    border: 1px solid rgba(7, 27, 71, 0.1);
    padding: 0.45rem 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-tag:hover,
.article-tag:focus {
    background-color: rgba(64, 217, 111, 0.18);
    border-color: rgba(64, 217, 111, 0.45);
    color: #0d214c;
}

.article-sidebar-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(7, 27, 71, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.article-sidebar-item:last-child {
    border-bottom: 0;
}

.article-sidebar-label {
    font-weight: 600;
    color: #0d214c;
}

.article-sidebar-value {
    color: #607196;
    font-weight: 500;
}

.article-sidebar-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: #0d214c;
    align-items: flex-start;
    transition: transform 0.2s ease, color 0.2s ease;
}

.manset-section a,
.articles-section a,
.press-section a,
.last-section a,
.article-card a {
    text-decoration: none;
}

.article-sidebar-link:hover,
.article-sidebar-link:focus {
    transform: translateX(4px);
    color: var(--accent);
}

.article-sidebar-number {
    font-weight: 700;
    color: rgba(7, 27, 71, 0.35);
    font-size: 1.1rem;
    min-width: 2rem;
}

.article-follow {
    position: relative;
    z-index: 0;
}

.article-follow-header {
    background-color: #101010;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
    display: inline-block;
    letter-spacing: 0.08em;
}

.article-follow-header h2 {
    letter-spacing: 0.08em;
}

.article-follow-card {
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    min-height: 64px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 15px 25px rgba(7, 27, 71, 0.25);
}

.article-follow-card:hover,
.article-follow-card:focus {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 36px rgba(7, 27, 71, 0.3);
}

.article-follow-card--facebook {
    background-color: #3b5998;
}

.article-follow-card--twitter {
    background-color: #1da1f2;
}

.article-follow-card--instagram {
    background-color: #0b3d6d;
}

.article-follow-card--youtube {
    background-color: #d9251d;
}

.article-related {
    background-color: #ffffff;
    margin-top: -2rem;
    position: relative;
    z-index: 0;
}

.article-suggestion-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-suggestion-card:hover,
.article-suggestion-card:focus-within {
    transform: translateY(-6px);
}

.article-suggestion-card .ratio img {
    object-fit: cover;
}

.article-related .btn-link {
    color: var(--midnight);
    padding: 0;
}

.article-related .btn-link:hover,
.article-related .btn-link:focus {
    color: var(--accent);
    background-color: transparent;
}

.article-comments {
    background-color: #ffffff;
    border-top: 1px solid rgba(7, 27, 71, 0.08);
}

.article-comments-header {
    display: inline-flex;
    align-items: center;
    background-color: #101010;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
    letter-spacing: 0.08em;
}

.comment-control {
    border-radius: 0.65rem;
    border-color: rgba(7, 27, 71, 0.12);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #0d214c;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(64, 217, 111, 0.18);
}

.comment-control--textarea {
    resize: vertical;
    min-height: 160px;
}

.comment-submit-btn {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 0.65rem;
    padding: 0.85rem 1.75rem;
    border: 2px solid var(--accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-submit-btn:hover,
.comment-submit-btn:focus {
    color: var(--accent);
    transform: translateY(-2px);
    border: 2px solid var(--accent);
}

.modal .btn-outline-secondary {
    border-radius: 999px;
}

.modal .input-group .form-control {
    border-radius: 999px 0 0 999px;
}

.modal .input-group .btn {
    border-radius: 0 999px 999px 0;
}

.suggestion-title {
    color: var(--midnight);
}

.tv-section a,
.press-section a,
.manset-section a,
.skip-section a,
.articles-section a {
    color: inherit;
}

.pagination a {
    border-radius: 50%;
    border: 0;
    background-color: rgba(7, 27, 71, 0.08);
    color: var(--midnight);
    font-weight: 600;
    min-width: 3rem;
    text-align: center;
    padding: 0.6rem 1rem;
    text-decoration: none;
    margin: 5px;
}

.pagination a:hover,
.pagination a:focus {
    background-color: rgba(64, 217, 111, 0.15);
    color: var(--midnight);
}

.pagination li a.active {
    background-color: var(--accent);
    color: var(--midnight);
}

.pagination li a.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.gallery-page {
    background: linear-gradient(180deg, #06173f 0%, #030f33 100%);
}

.gallery-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(64, 217, 111, 0.18), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(76, 123, 255, 0.16), transparent 60%),
        linear-gradient(155deg, #071b47 0%, #0b245a 70%, #020c2d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-hero::before,
.gallery-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gallery-hero::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(64, 217, 111, 0.22), transparent 70%);
}

.gallery-hero::after {
    width: 320px;
    height: 320px;
    bottom: -140px;
    left: -110px;
    background: radial-gradient(circle, rgba(91, 152, 255, 0.25), transparent 65%);
}

.gallery-eyebrow {
    letter-spacing: 0.32em;
    font-size: 0.75rem;
}

.gallery-hero-lead {
    max-width: 640px;
}

.gallery-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 140px;
}

.gallery-stat-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery-hero-card {
    background: rgba(7, 27, 71, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.75rem;
    padding: 2.25rem;
    backdrop-filter: blur(12px);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.gallery-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 71, 0.1) 0%, rgba(7, 27, 71, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-hero-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: rgba(64, 217, 111, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-hero-counter {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    background: rgba(2, 12, 45, 0.78);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    color: #ffffff;
}

.gallery-hero-play {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--midnight);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-hero-play:hover,
.gallery-hero-play:focus {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.gallery-toolbar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(8px);
}

.gallery-filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: transparent;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn:focus {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.gallery-filter-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--midnight);
    font-weight: 600;
}

.gallery-filter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(64, 217, 111, 0.35);
}

.gallery-search .input-group-text {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 0;
    color: rgba(255, 255, 255, 0.75);
}

.gallery-search .form-control {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
    border-radius: 0 999px 999px 0;
    background-color: rgba(7, 27, 71, 0.15);
    color: #ffffff;
}

.gallery-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.gallery-search .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(64, 217, 111, 0.25);
    background-color: rgba(7, 27, 71, 0.22);
}

.gallery-grid {
    margin-top: 0;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 0rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(64, 217, 111, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.gallery-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 71, 0.05) 0%, rgba(7, 27, 71, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-card-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    background: rgba(64, 217, 111, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.gallery-card-zoom {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--midnight);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-card-zoom:hover,
.gallery-card-zoom:focus {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.gallery-card-zoom:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(64, 217, 111, 0.35);
}

.gallery-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 auto;
}

.gallery-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.gallery-card-link {
    color: #ffffff;
    font-weight: 600;
}

.gallery-card-link:hover,
.gallery-card-link:focus {
    color: var(--accent);
}

.gallery-newsletter {
    background: linear-gradient(150deg, rgba(6, 23, 63, 0.9) 0%, rgba(2, 12, 33, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-newsletter .input-group-text {
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    color: #ffffff;
}

.gallery-newsletter .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    color: #ffffff;
}

.gallery-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.gallery-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 0.2rem rgba(64, 217, 111, 0.24);
}

.gallery-newsletter .invalid-feedback {
    color: #ffffff;
    margin-top: 0.75rem;
}

.gallery-modals .modal-content {
    border-radius: 1.5rem;
    background: linear-gradient(160deg, rgba(7, 27, 71, 0.96) 0%, rgba(2, 12, 33, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-modals .modal-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.gallery-modals .modal-body {
    padding: 1.5rem;
}

.gallery-modals .modal-body p {
    line-height: 1.6;
}

.gallery-page a {
    color: white;
    text-decoration: none;
}

.gallery-page h3 {
    line-height: 3;
    padding-left: 0.5rem;
}

.footer-search-field .form-control {
    color: white;
}

@media (max-width: 1199.98px) {
    .gallery-toolbar {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .gallery-hero-card {
        padding: 2rem;
    }

    .gallery-toolbar {
        padding: 1.25rem;
    }

    .gallery-newsletter {
        text-align: center;
    }

    .gallery-newsletter .input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .gallery-newsletter .input-group-text,
    .gallery-newsletter .form-control,
    .gallery-newsletter .btn {
        width: 100%;
        border-radius: 999px;
    }
}

@media (max-width: 767.98px) {
    .gallery-hero {
        text-align: center;
    }

    .gallery-stat {
        align-items: center;
    }

    .gallery-toolbar {
        padding: 1rem 1.25rem;
    }

    .gallery-filters {
        justify-content: center;
    }

    .gallery-filter-btn {
        width: 100%;
        text-align: center;
    }

    .gallery-card {
        padding: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }

    .article-hero {
        padding-bottom: 4rem;
    }

    .article-body-section {
        margin-top: -3rem;
    }
}

@media (max-width: 767.98px) {
    .article-highlight-grid {
        grid-template-columns: 1fr;
    }

    .article-body-section {
        margin-top: -2.5rem;
    }

    .article-page .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .article-follow-header {
        display: block;
    }

    .article-follow-card {
        min-height: 60px;
    }

    .article-comments-header {
        display: block;
    }

    .article-nav {
        border-radius: 0.85rem;
    }

    .article-nav-inner {
        flex-direction: column;
    }

    .article-nav-divider {
        display: none;
    }

    .article-nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .article-nav-link:last-child {
        border-bottom: 0;
    }

    .article-checklist li {
        padding: 0.85rem 1rem;
    }
}