/* Avakin Topluluğu — haber detay sayfaları */
.news-detail-page .breadcrumb-area {
    min-height: 430px;
    display: flex;
    align-items: flex-end;
}

.news-detail-page .breadcrumb-content {
    max-width: 920px;
    margin: 0 auto;
}

.news-detail-page .breadcrumb-content h1 {
    max-width: 850px;
    margin: 0 auto;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.news-detail-page .breadcrumb-content > p {
    max-width: 760px !important;
    margin: 17px auto 0 !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: clamp(14px, 1.6vw, 17px) !important;
    line-height: 1.7 !important;
}

.news-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.news-detail-hero__meta span,
.news-detail-hero__meta time {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    color: #f3f4f7;
    background: rgba(8, 9, 14, .56);
    border: 1px solid rgba(var(--page-accent-rgb), .28);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .025em;
}

.news-detail-hero__meta i { color: var(--page-accent-display); }

.news-detail-main {
    position: relative;
    padding: clamp(48px, 7vw, 92px) 0 clamp(70px, 9vw, 118px);
    text-align: left;
}

.news-detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.news-detail-cover {
    position: relative;
    aspect-ratio: 1200 / 630;
    margin: 0 0 clamp(30px, 5vw, 58px);
    overflow: hidden;
    background: #12141b;
    border: 1px solid rgba(var(--page-accent-rgb), .24);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

.news-detail-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: inherit;
}

.news-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: clamp(28px, 5vw, 64px);
}

.news-detail-content {
    min-width: 0;
    padding: clamp(26px, 4vw, 48px);
    color: #b8bec9;
    background: linear-gradient(145deg, rgba(23, 24, 32, .96), rgba(13, 15, 21, .97));
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 20px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, .22);
}

.news-detail-content > :first-child { margin-top: 0; }
.news-detail-content > :last-child { margin-bottom: 0; }

.news-detail-content .news-detail-lead {
    margin-bottom: 30px;
    color: #f4f5f7;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 650;
    line-height: 1.68;
}

.news-detail-content h2 {
    margin: 42px 0 15px;
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.news-detail-content h3 {
    margin: 30px 0 12px;
    color: #f7f7f9;
    font-size: 19px;
    line-height: 1.3;
}

.news-detail-content p,
.news-detail-content li {
    color: #b8bec9;
    font-size: 16px;
    line-height: 1.85;
}

.news-detail-content p { margin-bottom: 20px; }

.news-detail-content ul,
.news-detail-content ol {
    margin: 8px 0 24px;
    padding-left: 22px;
}

.news-detail-content li + li { margin-top: 9px; }

.news-detail-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    margin: 30px 0;
    padding: 19px 20px;
    color: #dfe2e8;
    background: rgba(var(--page-accent-rgb), .08);
    border: 1px solid rgba(var(--page-accent-rgb), .22);
    border-left: 3px solid var(--page-accent);
    border-radius: 13px;
}

.news-detail-note > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--page-accent-display);
    background: rgba(var(--page-accent-rgb), .12);
    border-radius: 10px;
}

.news-detail-note strong {
    display: block;
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
}

.news-detail-note p { margin: 0; font-size: 14px; line-height: 1.65; }

.news-detail-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 11px;
    padding: 0 20px;
    color: var(--page-accent-nav-ink) !important;
    background: linear-gradient(135deg, var(--page-accent-nav-from), var(--page-accent-nav-to));
    border: 1px solid rgba(var(--page-accent-rgb), .65);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(var(--page-accent-rgb), .16);
    font-size: 13px;
    font-weight: 850;
}

.news-detail-cta:hover,
.news-detail-cta:focus-visible {
    color: var(--page-accent-nav-ink) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(var(--page-accent-rgb), .25);
}

.news-detail-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 15px;
}

.news-detail-card {
    padding: 22px;
    background: rgba(18, 20, 27, .94);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .17);
}

.news-detail-card > small {
    display: block;
    margin-bottom: 13px;
    color: var(--page-accent-display);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.news-detail-data {
    display: grid;
    gap: 13px;
    margin: 0;
}

.news-detail-data div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    align-items: start;
    padding-left: 35px;
}

.news-detail-data dt,
.news-detail-data dd { margin: 0; }
.news-detail-data i { position:absolute; left:-35px; top:2px; width:25px; color:var(--page-accent-display); text-align:center; }
.news-detail-data dt { position:relative; color: #7f8793; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.news-detail-data dd { margin-top: 2px; color: #edf0f5; font-size: 13px; line-height: 1.45; }

.news-share-button,
.news-back-link {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
}

.news-share-button {
    color: #fff;
    background: rgba(var(--page-accent-rgb), .13);
    border: 1px solid rgba(var(--page-accent-rgb), .3);
    cursor: pointer;
}

.news-share-button:hover,
.news-share-button:focus-visible {
    color: #fff;
    background: rgba(var(--page-accent-rgb), .21);
}

.news-back-link {
    color: #dfe2e8 !important;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
}

.news-back-link:hover,
.news-back-link:focus-visible { color: var(--page-accent-display) !important; border-color: rgba(var(--page-accent-rgb), .3); }
.news-share-status { display: block; min-height: 18px; margin-top: 8px; color: #929aa7; font-size: 11px; text-align: center; }

.news-related {
    margin-top: clamp(58px, 8vw, 90px);
}

.news-related__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 23px;
}

.news-related__heading small {
    display: block;
    margin-bottom: 7px;
    color: var(--page-accent-display);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.news-related__heading h2 { margin: 0; color: #fff; font-size: clamp(27px, 3.5vw, 39px); letter-spacing: -.035em; }
.news-related__heading > a { flex: 0 0 auto; color: #c3c8d1; font-size: 12px; font-weight: 750; }
.news-related__heading > a:hover { color: var(--page-accent-display); }

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-related-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: inherit !important;
    background: #13151c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .17);
}

.news-related-card__image { aspect-ratio: 16 / 9; overflow: hidden; background: #0f1117; }
.news-related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-related-card__content { display:flex; flex:1; flex-direction:column; padding:19px; }
.news-related-card__content small { color: var(--page-accent-display); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.news-related-card__content h3 { margin: 8px 0 9px; color: #f5f6f8; font-size: 17px; line-height: 1.32; }
.news-related-card__content time { margin-top: auto; color: #7e8794; font-size: 11px; }
.news-related-card:hover,
.news-related-card:focus-visible { border-color: rgba(var(--page-accent-rgb), .38); transform: translateY(-3px); }
.news-related-card:hover img { transform: scale(1.025); }

html.site-theme-light .news-detail-main { background: #f3eee5; }
html.site-theme-light .news-detail-cover { background: #e7e0d6; box-shadow: 0 24px 60px rgba(55, 40, 58, .12); }
html.site-theme-light .news-detail-content,
html.site-theme-light .news-detail-card,
html.site-theme-light .news-related-card {
    background: rgba(255, 253, 248, .97);
    border-color: rgba(69, 52, 73, .13);
    box-shadow: 0 18px 44px rgba(58, 43, 61, .1);
}
html.site-theme-light .news-detail-content .news-detail-lead,
html.site-theme-light .news-detail-content h2,
html.site-theme-light .news-detail-content h3,
html.site-theme-light .news-detail-note strong,
html.site-theme-light .news-related__heading h2,
html.site-theme-light .news-related-card__content h3 { color: #2b2530; }
html.site-theme-light .news-detail-content p,
html.site-theme-light .news-detail-content li,
html.site-theme-light .news-detail-note p { color: #5d5662; }
html.site-theme-light .news-detail-note { color:#4f4753; background:rgba(var(--page-accent-rgb), .065); }
html.site-theme-light .news-detail-data dd { color:#3a323e; }
html.site-theme-light .news-detail-data dt,
html.site-theme-light .news-share-status,
html.site-theme-light .news-related-card__content time { color:#776e7a; }
html.site-theme-light .news-share-button { color: var(--page-accent-ink); }
html.site-theme-light .news-share-button:hover,
html.site-theme-light .news-share-button:focus-visible { color: var(--page-accent-ink); }
html.site-theme-light .news-back-link { color:#504752 !important; background:rgba(69,52,73,.035); border-color:rgba(69,52,73,.13); }
html.site-theme-light .news-related__heading > a { color:#5f5663; }

html.site-theme-transitioning :is(
    .news-detail-main,
    .news-detail-content,
    .news-detail-card,
    .news-detail-note,
    .news-related-card
) {
    transition: color .3s ease, background-color .38s ease, border-color .34s ease, box-shadow .34s ease !important;
}

html.site-theme-transitioning :is(
    .news-detail-content,
    .news-detail-card,
    .news-detail-note,
    .news-related-card
) :is(h2, h3, p, li, a, strong, small, dt, dd, button) {
    transition: color .3s ease, background-color .34s ease, border-color .34s ease !important;
}

@media (max-width: 991.98px) {
    .news-detail-page .breadcrumb-area { min-height: 390px; }
    .news-detail-layout { grid-template-columns: 1fr; }
    .news-detail-sidebar { position: static; grid-template-columns: minmax(0, 1fr) minmax(220px, .72fr); }
    .news-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-related-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); }
}

@media (max-width: 767.98px) {
    .news-detail-page .breadcrumb-area { min-height: 360px; }
    .news-detail-page .breadcrumb-content h1 { font-size: clamp(31px, 9vw, 44px); }
    .news-detail-sidebar { grid-template-columns: 1fr; }
    .news-related__heading { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 575.98px) {
    .news-detail-page .breadcrumb-area { min-height: 390px; }
    .news-detail-hero__meta { gap: 6px; }
    .news-detail-hero__meta span,
    .news-detail-hero__meta time { min-height: 31px; padding: 0 9px; font-size: 10px; }
    .news-detail-shell { width: min(100% - 22px, 1180px); }
    .news-detail-cover { margin-bottom: 24px; border-radius: 14px; }
    .news-detail-content { padding: 23px 19px; border-radius: 15px; }
    .news-detail-content p,
    .news-detail-content li { font-size: 15px; line-height: 1.78; }
    .news-detail-content .news-detail-lead { font-size: 17px; }
    .news-detail-content h2 { margin-top: 34px; font-size: 24px; }
    .news-detail-note { grid-template-columns: 32px minmax(0,1fr); gap: 11px; padding: 16px; }
    .news-detail-note > i { width: 32px; height: 32px; }
    .news-related-grid { grid-template-columns: 1fr; }
    .news-related-card:last-child { grid-column: auto; max-width: none; }
}

@media (hover: hover) and (pointer: fine) {
    .news-detail-cta,
    .news-related-card { transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
}

@media (prefers-reduced-motion: reduce) {
    .news-detail-cta,
    .news-related-card,
    .news-related-card__image img { transition: none !important; transform: none !important; }
}
