:root {
    --bordo: #86172b;
    --bordo-dark: #5f0f1d;
    --lacivert: #102033;
    --mavi: #0f6c8d;
    --krem: #f7f2eb;
    --white: #fff;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --gold: #d9a441;
    --shadow: 0 22px 60px rgba(15, 23, 42, .12);
    --radius: 26px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Manrope, Arial, sans-serif;
    background: var(--krem);
    color: var(--text)
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, calc(100% - 34px));
    margin: auto
}

.topline {
    background: var(--lacivert);
    color: #dbeafe;
    font-size: 13px
}

.topline-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 242, 235, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 32, 51, .1);
    z-index: 50
}

.navbar {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px
}

.brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand strong {
    display: block;
    font-size: 20px;
    color: var(--lacivert)
}

.brand small {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted)
}

nav {
    display: flex;
    align-items: center;
    gap: 4px
}

nav a {
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    color: #334155
}

nav a:hover,
nav a.active {
    background: rgba(134, 23, 43, .08);
    color: var(--bordo)
}

.admin-link {
    background: var(--lacivert) !important;
    color: white !important
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--bordo);
    color: white;
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 900
}

.hero {
    padding: 44px 0
}

.hero-box {
    min-height: 520px;
    border-radius: 40px;
    padding: 56px;
    background: linear-gradient(90deg, rgba(16, 32, 51, .96), rgba(16, 32, 51, .65), rgba(134, 23, 43, .28)), url('../img/askf.png') center/cover;
    color: white;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 18px
}

.hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 700px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 600px;
    margin-top: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer
}

.btn-primary {
    background: var(--gold);
    color: #241404
}

.btn-dark {
    background: var(--lacivert);
    color: white
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .24);
    color: white;
    background: rgba(255, 255, 255, .12)
}

section {
    padding: 38px 0
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px
}

.section-title h2 {
    font-size: clamp(28px, 3vw, 42px);
    color: var(--lacivert);
    letter-spacing: -1.4px
}

.section-title p {
    color: var(--muted);
    margin-top: 7px
}

.link-more {
    font-weight: 900;
    color: var(--bordo)
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.quick-card,
.card {
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06)
}

.quick-card {
    padding: 22px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .22s
}

.quick-card:hover,
.news-card:hover,
.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.q-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #eef2f7;
    display: grid;
    place-items: center;
    font-size: 22px
}

.quick-card strong {
    color: var(--lacivert)
}

.news-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px
}

.featured {
    min-height: 410px;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(to top, rgba(16, 32, 51, .96), rgba(16, 32, 51, .08)), var(--image) center/cover;
    color: white;
    padding: 28px;
    display: flex;
    align-items: end;
    box-shadow: var(--shadow)
}

.pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(217, 164, 65, .18);
    color: #fde68a;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px
}

.featured h3 {
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.5px
}

.featured p {
    line-height: 1.65;
    color: #e2e8f0;
    margin-top: 10px
}

.list {
    display: grid;
    gap: 14px
}

.news-card,
.announcement-card {
    padding: 20px;
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    transition: .22s
}

.date {
    font-size: 12px;
    font-weight: 900;
    color: var(--bordo);
    margin-bottom: 7px
}

.news-card h3,
.announcement-card h3 {
    color: var(--lacivert);
    font-size: 19px;
    line-height: 1.35
}

.news-card p,
.announcement-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 7px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.page-head {
    padding: 42px 0 10px
}

.page-head h1 {
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -2px;
    color: var(--lacivert)
}

.page-head p {
    color: var(--muted);
    font-size: 17px;
    margin-top: 10px
}

.table-wrap {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(15, 32, 51, .08)
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 14px
}

th {
    background: #f8fafc;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .7px
}

tr:last-child td {
    border-bottom: 0
}

.point {
    font-weight: 900;
    color: var(--bordo)
}

.filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.filter select,
.filter input {
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 13px;
    background: white
}

.footer {
    margin-top: 50px;
    background: var(--lacivert);
    color: #cbd5e1;
    padding: 42px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 26px
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 12px
}

.footer a,
.footer p {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px
}

.detail {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px
}

.detail img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 22px
}

.detail h1 {
    color: var(--lacivert);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px
}

.detail .meta {
    color: var(--bordo);
    font-weight: 900;
    margin: 12px 0
}

.detail-content {
    color: #334155;
    line-height: 1.85;
    font-size: 17px;
    white-space: pre-line
}

.doc-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

.doc-card small {
    color: var(--muted)
}

@media(max-width:980px) {
    nav {
        display: none;
        position: fixed;
        top: 104px;
        left: 17px;
        right: 17px;
        background: white;
        box-shadow: var(--shadow);
        border-radius: 24px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 124px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain
    }

    nav.open {
        display: flex
    }

    .menu-btn {
        display: block
    }

    .quick-grid,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-box {
        padding: 34px;
        min-height: 560px
    }
}

@media(max-width:620px) {
    .topline {
        display: none
    }

    .navbar {
        min-height: 76px
    }

    .brand small {
        display: none
    }

    nav {
        top: 90px;
        max-height: calc(100vh - 110px)
    }

    .quick-grid,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column
    }

    .hero h1 {
        letter-spacing: -2px
    }

    .hero-box {
        border-radius: 28px;
        padding: 26px
    }

    .table-wrap {
        overflow: auto
    }
}
/* Ana sayfa üst haber slider */
.hero-slider {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(28px);
    transition: opacity .65s ease, transform .65s ease, visibility .65s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: white;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: .2s;
}

.hero-nav:hover {
    background: var(--gold);
    color: #241404;
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: .2s;
}

.hero-dot.active {
    width: 30px;
    background: var(--gold);
}

@media(max-width:620px) {
    .hero-nav {
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}

/* Header dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 800;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

.nav-dropdown:hover > button,
.nav-dropdown.active > button {
    background: rgba(134, 23, 43, .08);
    color: var(--bordo);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 80;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: grid;
    gap: 4px;
}

.dropdown-menu a {
    display: block;
    white-space: nowrap;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-card,
.person-card,
.link-card,
.contact-card {
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    padding: 22px;
}

.info-card h3,
.person-card h3,
.link-card h3,
.contact-card h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.info-card p,
.person-card p,
.link-card p,
.contact-card p,
.history-content p {
    color: var(--muted);
    line-height: 1.7;
}

.person-role,
.link-label {
    display: inline-flex;
    width: max-content;
    background: rgba(134, 23, 43, .08);
    color: var(--bordo);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.history-content {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.history-content p + p {
    margin-top: 14px;
}

.link-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    transition: .22s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.decision-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media(max-width:980px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > button {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        display: grid;
        position: static;
        box-shadow: none;
        border-radius: 16px;
        margin-top: 4px;
        min-width: 100%;
        background: #f8fafc;
    }

    .info-grid,
    .decision-tabs,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .info-grid,
    .decision-tabs,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin yönetimli kurumsal modül ekleri */
.dropdown-sub {
    position: relative;
}

.dropdown-sub-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 250px;
    background: white;
    border-radius: 18px;
    padding: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 32, 51, .08);
}

.dropdown-sub:hover .dropdown-sub-menu {
    display: grid;
}

.person-card-photo {
    overflow: hidden;
}

.person-card-photo img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
    background: #eef2f7;
}

.decision-switch {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.decision-switch a {
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    color: var(--lacivert);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.decision-switch a.active,
.decision-switch a:hover {
    background: var(--bordo);
    color: white;
}

.map-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 20px;
}

@media(max-width:980px) {
    .dropdown-sub-menu {
        display: grid;
        position: static;
        min-width: 100%;
        box-shadow: none;
        background: #eef2f7;
        margin-left: 12px;
    }
}

.ataturk-section {
    padding: 28px 0 10px;
}

.ataturk-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #102033, #86172b);
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(16, 32, 51, 0.18);
}

.ataturk-image {
    flex: 0 0 240px;
    height: 240px;
    overflow: hidden;
    background: #0d1a2a;
}

.ataturk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ataturk-content {
    padding: 28px 30px;
    flex: 1;
}

.ataturk-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.ataturk-content blockquote {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
}

.ataturk-sign {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    opacity: .9;
}

@media (max-width: 768px) {
    .ataturk-section {
        padding: 22px 0 8px;
    }

    .ataturk-card {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .ataturk-image {
        width: 100%;
        height: 260px;
        flex: none;
    }

    .ataturk-content {
        padding: 24px 20px;
    }

    .ataturk-content blockquote {
        font-size: 21px;
    }
}

/* Modern Haberler Sayfası */
.news-page-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 18px;
}

.news-page-hero::before {
    content: "";
    position: absolute;
    inset: -120px -80px auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .18);
    filter: blur(8px);
    pointer-events: none;
}

.news-hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 28px;
    align-items: end;
    min-height: 300px;
    padding: clamp(30px, 5vw, 52px);
    border-radius: 38px;
    color: white;
    background:
        radial-gradient(circle at 82% 20%, rgba(217, 164, 65, .34), transparent 28%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(134, 23, 43, .92));
    box-shadow: var(--shadow);
}

.news-hero-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 46px solid rgba(255, 255, 255, .08);
}

.news-hero-content,
.news-hero-stats {
    position: relative;
    z-index: 2;
}

.news-page-kicker,
.news-section-label,
.featured-label {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.news-page-kicker {
    margin-bottom: 16px;
    padding: 9px 14px;
    color: #fde68a;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
}

.news-hero-card h1 {
    font-size: clamp(44px, 7vw, 82px);
    line-height: .92;
    letter-spacing: -3px;
    margin-bottom: 18px;
}

.news-hero-card p {
    max-width: 660px;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.7;
}

.news-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.news-stat-card {
    min-height: 118px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
}

.news-stat-card strong {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    color: #fff;
}

.news-stat-card span {
    display: block;
    margin-top: 10px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}

.featured-news-section {
    padding: 22px 0 16px;
}

.featured-news-card {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    gap: 0;
    overflow: hidden;
    min-height: 360px;
    border-radius: 34px;
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    box-shadow: var(--shadow);
    transition: .24s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
}

.featured-news-media,
.modern-news-card-media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(217, 164, 65, .22), transparent 28%),
        linear-gradient(135deg, var(--lacivert), var(--bordo));
}

.featured-news-media img,
.modern-news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.featured-news-card:hover img,
.modern-news-card:hover img {
    transform: scale(1.05);
}

.featured-news-media.no-image,
.modern-news-card-media.no-image {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .88);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-news-media.no-image span {
    font-size: clamp(42px, 6vw, 74px);
    opacity: .22;
}

.featured-news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 4vw, 44px);
}

.featured-label {
    margin-bottom: 14px;
    padding: 8px 12px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
}

.featured-news-content h2 {
    margin-top: 8px;
    color: var(--lacivert);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.featured-news-content p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.featured-news-content strong,
.modern-news-card-body strong {
    display: inline-flex;
    width: max-content;
    margin-top: 20px;
    color: var(--bordo);
    font-weight: 900;
}

.modern-news-section {
    padding: 28px 0 52px;
}

.news-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.news-section-label {
    margin-bottom: 8px;
    color: var(--bordo);
}

.news-toolbar h2 {
    color: var(--lacivert);
    font-size: clamp(28px, 3.6vw, 44px);
    letter-spacing: -1.3px;
}

.news-search-box {
    width: min(360px, 100%);
    display: grid;
    gap: 8px;
}

.news-search-box span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.news-search-box input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(15, 32, 51, .12);
    border-radius: 999px;
    padding: 0 18px;
    outline: 0;
    background: white;
    color: var(--text);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.news-search-box input:focus {
    border-color: rgba(134, 23, 43, .5);
    box-shadow: 0 0 0 4px rgba(134, 23, 43, .08);
}

.modern-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.modern-news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(15, 32, 51, .08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.modern-news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 23, 43, .18);
    box-shadow: var(--shadow);
}

.modern-news-card-media {
    height: 190px;
}

.modern-news-card-media.no-image span {
    font-size: 18px;
    opacity: .5;
}

.modern-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.modern-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.modern-news-meta span,
.modern-news-meta em {
    font-size: 12px;
    font-weight: 900;
    font-style: normal;
}

.modern-news-meta span {
    color: var(--bordo);
}

.modern-news-meta em {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--lacivert);
    background: #f1f5f9;
}

.modern-news-card h3 {
    color: var(--lacivert);
    font-size: 21px;
    line-height: 1.28;
    letter-spacing: -.4px;
}

.modern-news-card p {
    flex: 1;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.news-empty-state {
    margin-top: 18px;
    padding: 32px;
    border-radius: 28px;
    text-align: center;
    background: white;
    border: 1px dashed rgba(15, 32, 51, .18);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.news-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.news-empty-state p {
    color: var(--muted);
}

.news-empty-state[hidden] {
    display: none !important;
}

@media(max-width:980px) {
    .news-hero-card,
    .featured-news-card {
        grid-template-columns: 1fr;
    }

    .featured-news-media {
        min-height: 260px;
    }

    .news-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .modern-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .news-page-hero {
        padding-top: 26px;
    }

    .news-hero-card {
        min-height: 0;
        border-radius: 28px;
    }

    .news-hero-card h1 {
        letter-spacing: -2px;
    }

    .news-hero-stats,
    .modern-news-grid {
        grid-template-columns: 1fr;
    }

    .featured-news-card,
    .modern-news-card {
        border-radius: 24px;
    }
}

/* ================================
   Haberler Sayfası - Premium Modern Tasarım
   ================================ */
.news-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(217, 164, 65, .22), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .16), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 42%, #f4efe7 100%);
}

.news-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .38;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 52%);
}

.news-neo-hero,
.news-feed-section {
    position: relative;
    z-index: 1;
}

.news-neo-hero {
    padding: 42px 0 28px;
}

.news-neo-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(370px, .82fr);
    gap: clamp(22px, 4vw, 42px);
    min-height: 560px;
    padding: clamp(26px, 4.4vw, 56px);
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .94) 52%, rgba(134, 23, 43, .9)),
        url('../img/askf.png') center/cover;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
    color: #fff;
}

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

.news-neo-panel::before {
    width: 460px;
    height: 460px;
    top: -210px;
    right: 20%;
    background: rgba(217, 164, 65, .28);
    filter: blur(16px);
}

.news-neo-panel::after {
    width: 290px;
    height: 290px;
    right: -80px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.news-neo-copy,
.news-spotlight-card {
    position: relative;
    z-index: 2;
}

.news-neo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.news-neo-kicker,
.news-overline,
.news-chip {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-neo-kicker {
    gap: 9px;
    padding: 10px 14px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.news-neo-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.news-neo-copy h1 {
    margin-top: 22px;
    max-width: 850px;
    font-size: clamp(43px, 6.8vw, 86px);
    line-height: .9;
    letter-spacing: -4px;
    color: white;
}

.news-neo-copy p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.72;
}

.news-neo-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.news-neo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    background: var(--gold);
    color: #251604;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(217, 164, 65, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.news-neo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(217, 164, 65, .32);
}

.news-neo-mini-stat {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.news-neo-mini-stat strong {
    font-size: 22px;
    color: #fff;
}

.news-neo-mini-stat span {
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 850;
}

.news-spotlight-card {
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.news-spotlight-card:hover {
    transform: translateY(-8px) rotate(-.45deg);
    border-color: rgba(217, 164, 65, .7);
    background: rgba(255, 255, 255, .18);
}

.news-spotlight-media {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    background: linear-gradient(135deg, rgba(217, 164, 65, .9), rgba(134, 23, 43, .85));
}

.news-spotlight-media img,
.news-neo-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.news-spotlight-card:hover img,
.news-neo-card:hover img {
    transform: scale(1.08);
}

.news-spotlight-media::after,
.news-neo-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 32, 51, .34), transparent 58%);
}

.news-spotlight-media.is-empty,
.news-neo-card-media.is-empty {
    display: grid;
    place-items: center;
    isolation: isolate;
}

.news-spotlight-media.is-empty::before,
.news-neo-card-media.is-empty::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
}

.news-spotlight-media.is-empty span,
.news-neo-card-media.is-empty span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .55);
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.news-spotlight-media.is-empty span {
    font-size: clamp(44px, 6vw, 72px);
}

.news-spotlight-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.news-chip {
    padding: 8px 11px;
    color: #251604;
    background: #f6d878;
}

.news-spotlight-content h2 {
    margin-top: 16px;
    color: #fff;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.news-spotlight-content p {
    margin-top: 12px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
}

.news-spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
}

.news-spotlight-footer span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 900;
}

.news-spotlight-footer strong {
    color: #f6d878;
    font-weight: 950;
}

.news-spotlight-empty {
    justify-content: center;
}

.news-feed-section {
    padding: 34px 0 70px;
}

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

.news-overline {
    margin-bottom: 9px;
    color: var(--bordo);
}

.news-feed-top h2 {
    color: var(--lacivert);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.news-feed-top p {
    max-width: 600px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.news-modern-search {
    position: relative;
    flex: 0 0 min(390px, 100%);
}

.news-modern-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    fill: var(--muted);
    pointer-events: none;
}

.news-modern-search input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 22px;
    outline: none;
    padding: 0 20px 0 50px;
    color: var(--text);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.news-modern-search input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 24px 54px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.news-feed-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.news-feed-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 14px;
}

.news-side-card,
.news-side-note {
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.news-side-card {
    padding: 22px;
}

.news-side-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-side-card strong {
    display: block;
    margin-top: 7px;
    color: var(--lacivert);
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1.2px;
}

.news-side-note {
    padding: 22px;
    background: linear-gradient(145deg, rgba(16, 32, 51, .96), rgba(95, 15, 29, .94));
    color: white;
}

.news-side-note b {
    display: block;
    color: #f6d878;
    margin-bottom: 8px;
}

.news-side-note p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.65;
}

.news-card-masonry {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.news-neo-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    min-height: 232px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 32px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.news-neo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 44%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.news-neo-card:hover {
    transform: translateY(-7px);
    border-color: rgba(134, 23, 43, .2);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .15);
}

.news-neo-card:hover::before {
    opacity: 1;
}

.news-neo-card.is-large {
    grid-column: span 2;
    grid-template-columns: minmax(300px, .86fr) minmax(0, 1fr);
    min-height: 340px;
}

.news-neo-card-media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(135deg, #102033, #86172b 58%, #d9a441);
}

.news-neo-card-media.is-empty span {
    padding: 0 24px;
    font-size: 15px;
    text-align: center;
}

.news-neo-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.news-neo-card.is-large .news-neo-card-body {
    padding: clamp(26px, 3vw, 38px);
}

.news-neo-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.news-neo-meta span,
.news-neo-meta em {
    font-size: 12px;
    font-weight: 950;
    font-style: normal;
}

.news-neo-meta span {
    color: var(--bordo);
}

.news-neo-meta em {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--lacivert);
    background: #f1f5f9;
}

.news-neo-card h3 {
    color: var(--lacivert);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.16;
    letter-spacing: -.8px;
}

.news-neo-card.is-large h3 {
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -1.4px;
}

.news-neo-card p {
    flex: 1;
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.news-neo-card.is-large p {
    font-size: 16px;
}

.news-neo-card strong {
    display: inline-flex;
    width: max-content;
    margin-top: 20px;
    padding-bottom: 4px;
    color: var(--bordo);
    font-weight: 950;
    border-bottom: 2px solid rgba(134, 23, 43, .22);
}

.news-empty-state {
    margin-top: 20px;
    padding: 38px;
    border-radius: 32px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.news-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.news-empty-state p {
    color: var(--muted);
}

.news-empty-state[hidden] {
    display: none !important;
}

@media(max-width:1100px) {
    .news-neo-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .news-spotlight-card {
        display: grid;
        grid-template-columns: minmax(270px, .78fr) minmax(0, 1fr);
    }

    .news-spotlight-media {
        min-height: 310px;
    }

    .news-feed-layout {
        grid-template-columns: 1fr;
    }

    .news-feed-sidebar {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .news-feed-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-modern-search {
        flex-basis: auto;
        width: 100%;
    }

    .news-card-masonry {
        grid-template-columns: 1fr;
    }

    .news-neo-card,
    .news-neo-card.is-large {
        grid-column: auto;
        grid-template-columns: 240px minmax(0, 1fr);
        min-height: 260px;
    }

    .news-feed-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-side-note {
        grid-column: span 2;
    }
}

@media(max-width:680px) {
    .news-neo-hero {
        padding-top: 24px;
    }

    .news-neo-panel {
        padding: 22px;
        border-radius: 30px;
    }

    .news-neo-copy h1 {
        letter-spacing: -2.4px;
    }

    .news-spotlight-card,
    .news-neo-card,
    .news-neo-card.is-large {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .news-spotlight-card {
        display: flex;
    }

    .news-spotlight-media,
    .news-neo-card-media {
        min-height: 210px;
    }

    .news-feed-sidebar {
        grid-template-columns: 1fr;
    }

    .news-side-note {
        grid-column: auto;
    }

    .news-feed-top h2 {
        letter-spacing: -1.5px;
    }
}

/* ================================
   Duyurular Sayfası - Premium Modern Tasarım
   ================================ */
.announcements-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(217, 164, 65, .22), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .16), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 45%, #f2ece3 100%);
}

.announcements-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .36;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 56%);
}

.ann-hero-section,
.ann-board-section {
    position: relative;
    z-index: 1;
}

.ann-hero-section {
    padding: 42px 0 30px;
}

.ann-hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
    gap: clamp(22px, 4vw, 42px);
    min-height: 520px;
    padding: clamp(26px, 4.4vw, 56px);
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, .68);
    color: white;
    background:
        radial-gradient(circle at 72% 22%, rgba(217, 164, 65, .32), transparent 26%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .95) 54%, rgba(134, 23, 43, .92));
    box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
}

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

.ann-hero-panel::before {
    width: 480px;
    height: 480px;
    top: -220px;
    right: 18%;
    background: rgba(217, 164, 65, .24);
    filter: blur(18px);
}

.ann-hero-panel::after {
    width: 310px;
    height: 310px;
    right: -95px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.ann-hero-copy,
.ann-latest-card {
    position: relative;
    z-index: 2;
}

.ann-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
}

.ann-kicker,
.ann-overline,
.ann-latest-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ann-kicker {
    gap: 9px;
    padding: 10px 14px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.ann-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.ann-hero-copy h1 {
    margin-top: 22px;
    color: white;
    font-size: clamp(48px, 7.4vw, 92px);
    line-height: .88;
    letter-spacing: -4px;
}

.ann-hero-copy p {
    max-width: 640px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.75;
}

.ann-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ann-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(217, 164, 65, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ann-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(217, 164, 65, .32);
}

.ann-mini-note {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 900;
}

.ann-latest-card {
    align-self: center;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.ann-latest-card:hover {
    transform: translateY(-8px) rotate(-.45deg);
    border-color: rgba(217, 164, 65, .68);
    background: rgba(255, 255, 255, .18);
}

.ann-latest-card a,
.ann-latest-empty {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: clamp(24px, 3.5vw, 34px);
}

.ann-latest-label {
    padding: 8px 11px;
    color: #251604;
    background: #f6d878;
}

.ann-latest-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-top: 34px;
    border-radius: 28px;
    color: #251604;
    background: linear-gradient(135deg, #fff3b0, #d9a441);
    box-shadow: 0 22px 46px rgba(217, 164, 65, .26);
    font-size: 42px;
    font-weight: 950;
}

.ann-latest-card time {
    display: block;
    margin-top: 26px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 900;
}

.ann-latest-card h2,
.ann-latest-empty h2 {
    margin-top: 13px;
    color: white;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.ann-latest-card p,
.ann-latest-empty p {
    margin-top: 13px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
}

.ann-latest-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: #f6d878;
    font-weight: 950;
}

.ann-board-section {
    padding: 34px 0 72px;
}

.ann-board-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.ann-overline {
    margin-bottom: 9px;
    color: var(--bordo);
}

.ann-board-top h2 {
    color: var(--lacivert);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.ann-board-top p {
    max-width: 610px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.ann-search-box {
    position: relative;
    flex: 0 0 min(390px, 100%);
}

.ann-search-box svg {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    fill: var(--muted);
    pointer-events: none;
}

.ann-search-box input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 22px;
    outline: none;
    padding: 0 20px 0 50px;
    color: var(--text);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ann-search-box input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 24px 54px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.ann-board-layout {
    display: grid;
    grid-template-columns: 252px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ann-side-panel {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 14px;
}

.ann-side-stat,
.ann-side-note {
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.ann-side-stat {
    padding: 22px;
}

.ann-side-stat span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ann-side-stat strong {
    display: block;
    margin-top: 7px;
    color: var(--lacivert);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.1px;
}

.ann-side-note {
    padding: 22px;
    color: white;
    background: linear-gradient(145deg, rgba(16, 32, 51, .96), rgba(95, 15, 29, .94));
}

.ann-side-note b {
    display: block;
    margin-bottom: 8px;
    color: #f6d878;
}

.ann-side-note p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.65;
}

.ann-timeline-list {
    position: relative;
    display: grid;
    gap: 18px;
}

.ann-timeline-list::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(134, 23, 43, .35), rgba(217, 164, 65, .18));
}

.ann-timeline-card {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-height: 188px;
    border-radius: 32px;
    transition: transform .24s ease, box-shadow .24s ease;
}

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

.ann-date-badge {
    position: relative;
    z-index: 2;
    align-self: start;
    display: grid;
    place-items: center;
    width: 82px;
    min-height: 88px;
    border-radius: 28px;
    color: white;
    background: linear-gradient(145deg, var(--lacivert), var(--bordo));
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
}

.ann-timeline-card.is-featured .ann-date-badge {
    color: #251604;
    background: linear-gradient(145deg, #fff0a9, var(--gold));
}

.ann-date-badge strong {
    display: block;
    font-size: 30px;
    line-height: .9;
    letter-spacing: -1px;
}

.ann-date-badge span {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 950;
}

.ann-card-content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    border-radius: 32px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: border-color .24s ease, box-shadow .24s ease;
}

.ann-card-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 45%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.ann-timeline-card:hover .ann-card-content {
    border-color: rgba(134, 23, 43, .2);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .14);
}

.ann-timeline-card:hover .ann-card-content::before {
    opacity: 1;
}

.ann-card-meta,
.ann-card-footer,
.ann-card-content h3,
.ann-card-content p {
    position: relative;
    z-index: 2;
}

.ann-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.ann-card-meta span,
.ann-card-meta em {
    font-size: 12px;
    font-weight: 950;
    font-style: normal;
}

.ann-card-meta span {
    color: var(--bordo);
}

.ann-card-meta em {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--lacivert);
    background: #f1f5f9;
}

.ann-card-content h3 {
    color: var(--lacivert);
    font-size: clamp(21px, 2.2vw, 31px);
    line-height: 1.14;
    letter-spacing: -1px;
}

.ann-card-content p {
    flex: 1;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.ann-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 32, 51, .08);
}

.ann-card-footer small {
    color: var(--bordo);
    font-weight: 950;
}

.ann-card-footer b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #251604;
    background: rgba(217, 164, 65, .28);
    transition: transform .22s ease, background .22s ease;
}

.ann-timeline-card:hover .ann-card-footer b {
    transform: translateX(4px);
    background: var(--gold);
}

.ann-empty-state {
    margin-top: 20px;
    padding: 38px;
    border-radius: 32px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.ann-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.ann-empty-state p {
    color: var(--muted);
}

.ann-empty-state[hidden] {
    display: none !important;
}

@media(max-width:1100px) {
    .ann-hero-panel,
    .ann-board-layout {
        grid-template-columns: 1fr;
    }

    .ann-latest-card a,
    .ann-latest-empty {
        min-height: 0;
    }

    .ann-side-panel {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .ann-board-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ann-search-box {
        flex-basis: auto;
        width: 100%;
    }

    .ann-side-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .ann-side-note {
        grid-column: span 2;
    }
}

@media(max-width:680px) {
    .ann-hero-section {
        padding-top: 24px;
    }

    .ann-hero-panel {
        padding: 22px;
        border-radius: 30px;
    }

    .ann-hero-copy h1 {
        letter-spacing: -2.4px;
    }

    .ann-side-panel {
        grid-template-columns: 1fr;
    }

    .ann-side-note {
        grid-column: auto;
    }

    .ann-timeline-list::before {
        display: none;
    }

    .ann-timeline-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ann-date-badge {
        width: 100%;
        min-height: 76px;
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 10px;
    }

    .ann-date-badge span {
        margin-top: 0;
    }

    .ann-card-content {
        border-radius: 26px;
        padding: 22px;
    }
}

/* Canlı arama sonucunda gizlenen kartlar */
.is-filter-hidden,
[data-news-card][hidden],
[data-announcement-card][hidden] {
    display: none !important;
}

/* Modern fikstür sayfası */
.fixture-hero-section {
    position: relative;
    overflow: hidden;
    padding: 42px 0 22px;
}

.fixture-hero-section::before,
.fixture-board-section::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(8px);
}

.fixture-hero-section::before {
    right: -180px;
    top: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(217, 164, 65, .28), transparent 64%);
}

.fixture-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 26px;
    overflow: hidden;
    border-radius: 42px;
    padding: clamp(26px, 4vw, 48px);
    color: white;
    background:
        radial-gradient(circle at 16% 12%, rgba(217, 164, 65, .32), transparent 28%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(134, 23, 43, .92) 54%, rgba(16, 32, 51, .96));
    box-shadow: 0 32px 90px rgba(15, 23, 42, .22);
}

.fixture-hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -80px -140px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.fixture-hero-copy,
.fixture-hero-card {
    position: relative;
    z-index: 2;
}

.fixture-kicker {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.fixture-kicker.small {
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
    border-color: rgba(134, 23, 43, .1);
}

.fixture-hero-copy h1 {
    max-width: 720px;
    margin-top: 18px;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .88;
    letter-spacing: -5px;
}

.fixture-hero-copy p {
    max-width: 650px;
    margin-top: 18px;
    color: #e5e7eb;
    font-size: 17px;
    line-height: 1.75;
}

.fixture-league-form {
    max-width: 680px;
    margin-top: 28px;
    padding: 13px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}

.fixture-league-form label {
    display: block;
    margin: 0 0 8px 4px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.fixture-select-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.fixture-select-wrap select,
.fixture-select-wrap button,
.fixture-search-box input {
    font: inherit;
}

.fixture-select-wrap select {
    width: 100%;
    min-height: 54px;
    border: 0;
    outline: 0;
    border-radius: 18px;
    padding: 0 16px;
    color: var(--lacivert);
    background: white;
    font-weight: 850;
}

.fixture-select-wrap button {
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    padding: 0 20px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
    cursor: pointer;
}

.fixture-hero-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
}

.fixture-card-label {
    display: inline-flex;
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(217, 164, 65, .16);
    font-size: 12px;
    font-weight: 950;
}

.fixture-hero-card h2 {
    margin-top: 24px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.fixture-hero-card p {
    margin-top: 10px;
    color: #e2e8f0;
}

.fixture-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.fixture-hero-stats div {
    padding: 15px 12px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
}

.fixture-hero-stats strong,
.fixture-hero-stats span {
    display: block;
}

.fixture-hero-stats strong {
    font-size: 28px;
    line-height: 1;
}

.fixture-hero-stats span {
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 850;
}

.fixture-board-section {
    position: relative;
    padding: 22px 0 56px;
}

.fixture-board-section::before {
    left: -180px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(134, 23, 43, .16), transparent 64%);
}

.fixture-board-layout {
    position: relative;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.fixture-side-panel {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 14px;
}

.fixture-side-card {
    overflow: hidden;
    position: relative;
    min-height: 150px;
    padding: 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(12px);
}

.fixture-side-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -54px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .12);
}

.fixture-side-card.is-dark {
    color: white;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
}

.fixture-side-card span,
.fixture-side-card strong,
.fixture-side-card b,
.fixture-side-card p {
    position: relative;
    z-index: 2;
}

.fixture-side-card span {
    display: block;
    color: var(--bordo);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.fixture-side-card.is-dark span {
    color: #fde68a;
}

.fixture-side-card strong {
    display: block;
    margin-top: 12px;
    color: var(--lacivert);
    font-size: 48px;
    line-height: .9;
    letter-spacing: -2px;
}

.fixture-side-card.is-dark strong {
    color: white;
}

.fixture-side-card b {
    display: block;
    margin-top: 12px;
    color: var(--lacivert);
    font-size: 18px;
    line-height: 1.35;
}

.fixture-side-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.fixture-side-card.is-dark p {
    color: #cbd5e1;
}

.fixture-main-panel {
    min-width: 0;
}

.fixture-toolbar {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
    gap: 18px;
    align-items: end;
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(12px);
}

.fixture-toolbar h2 {
    margin-top: 9px;
    color: var(--lacivert);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.fixture-toolbar p {
    margin-top: 7px;
    color: var(--muted);
}

.fixture-toolbar p strong {
    color: var(--bordo);
}

.fixture-tools {
    display: grid;
    gap: 12px;
}

.fixture-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 15px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(16, 32, 51, .1);
}

.fixture-search-box span {
    color: var(--bordo);
    font-weight: 950;
    font-size: 20px;
}

.fixture-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--lacivert);
    font-weight: 800;
    background: transparent;
}

.fixture-status-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fixture-status-tabs button {
    min-height: 40px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 999px;
    padding: 0 14px;
    color: var(--lacivert);
    background: white;
    font-weight: 950;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.fixture-status-tabs button:hover,
.fixture-status-tabs button.active {
    color: white;
    background: var(--bordo);
    transform: translateY(-1px);
}

.fixture-match-list {
    display: grid;
    gap: 14px;
}

.fixture-match-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 16px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fixture-match-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 45%, rgba(134, 23, 43, .07));
    transition: opacity .22s ease;
}

.fixture-match-card:hover {
    transform: translateY(-4px);
    border-color: rgba(134, 23, 43, .18);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .13);
}

.fixture-match-card:hover::before {
    opacity: 1;
}

.fixture-week-badge,
.fixture-teams,
.fixture-meta-row {
    position: relative;
    z-index: 2;
}

.fixture-week-badge {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 132px;
    border-radius: 24px;
    color: white;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
}

.fixture-week-badge span {
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #fde68a;
}

.fixture-week-badge strong {
    margin-top: 7px;
    font-size: 34px;
    line-height: .9;
    letter-spacing: -1px;
}

.fixture-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
}

.fixture-team span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fixture-team strong {
    display: block;
    margin-top: 6px;
    color: var(--lacivert);
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.15;
    letter-spacing: -.7px;
}

.fixture-team.align-right {
    text-align: right;
}

.fixture-score {
    text-align: center;
    display: grid;
    place-items: center;
    min-height: 76px;
    border-radius: 24px;
    background: #f1f5f9;
    border: 1px solid rgba(16, 32, 51, .08);
}

.fixture-score small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.fixture-score b {
    display: block;
    margin-top: 4px;
    color: var(--bordo);
    font-size: 25px;
    line-height: 1;
    letter-spacing: -1px;
}

.fixture-score.is-played {
    text-align: center;
    background: rgba(217, 164, 65, .18);
}

.fixture-meta-row {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(16, 32, 51, .08);
}

.fixture-meta-row span,
.fixture-meta-row em {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    font-style: normal;
}

.fixture-meta-row em {
    margin-left: auto;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
}

.fixture-meta-row em.is-played {
    color: #251604;
    background: rgba(217, 164, 65, .3);
}

.fixture-empty-state {
    margin-top: 18px;
    padding: 42px;
    border-radius: 32px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .22);
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.fixture-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.fixture-empty-state p {
    color: var(--muted);
}

.fixture-table-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.fixture-table-head {
    padding: 4px 4px 16px;
}

.fixture-table-head h3 {
    color: var(--lacivert);
    font-size: 24px;
    letter-spacing: -.8px;
}

.fixture-table-head p {
    margin-top: 5px;
    color: var(--muted);
}

.fixture-table-wrap {
    box-shadow: none;
    border-radius: 24px;
}

.fixture-empty-state[hidden],
[data-fixture-card][hidden] {
    display: none !important;
}

@media(max-width:1120px) {
    .fixture-hero-panel,
    .fixture-board-layout,
    .fixture-toolbar {
        grid-template-columns: 1fr;
    }

    .fixture-side-panel {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:820px) {
    .fixture-side-panel {
        grid-template-columns: 1fr;
    }

    .fixture-match-card {
        grid-template-columns: 1fr;
    }

    .fixture-week-badge {
        min-height: 74px;
        grid-auto-flow: column;
        justify-content: center;
        gap: 10px;
    }

    .fixture-week-badge strong {
        margin-top: 0;
    }

    .fixture-teams {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fixture-team.align-right {
        text-align: left;
    }

    .fixture-score {
        order: 2;
    }

    .fixture-meta-row em {
        margin-left: 0;
    }
}

@media(max-width:640px) {
    .fixture-hero-section {
        padding-top: 24px;
    }

    .fixture-hero-panel,
    .fixture-toolbar,
    .fixture-table-card {
        border-radius: 28px;
    }

    .fixture-hero-copy h1 {
        letter-spacing: -3px;
    }

    .fixture-select-wrap {
        grid-template-columns: 1fr;
    }

    .fixture-hero-stats {
        grid-template-columns: 1fr;
    }

    .fixture-match-card {
        border-radius: 26px;
        padding: 13px;
    }
}


/* Premium fikstür maç kartı - geliştirilmiş maç bilgi alanı */
.fixture-match-card-premium {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    align-items: stretch;
    padding: 26px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 12% 0%, rgba(217, 164, 65, .13), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(134, 23, 43, .10), transparent 32%),
        linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(255, 255, 255, .94) 48%, rgba(255, 246, 247, .96));
    border: 1px solid rgba(134, 23, 43, .16);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fixture-match-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(134, 23, 43, .28);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
}

.fixture-match-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .46), transparent 34%, rgba(255, 255, 255, .3)),
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .7), transparent 36%);
}

.fixture-match-card-premium > * {
    position: relative;
    z-index: 2;
}

.premium-week-badge {
    min-height: 210px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 30% 18%, rgba(217, 164, 65, .22), transparent 24%),
        linear-gradient(145deg, var(--lacivert), var(--bordo) 72%);
    color: white;
    box-shadow: 0 18px 40px rgba(134, 23, 43, .26);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-week-badge span {
    color: #fff08a;
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.premium-week-badge span::after {
    content: "";
    display: block;
    width: 46px;
    height: 1px;
    margin: 14px auto 0;
    background: rgba(255, 255, 255, .22);
}

.premium-week-badge strong {
    margin-top: 12px;
    color: white;
    font-size: 58px;
    line-height: 1;
    letter-spacing: -2px;
}

.fixture-premium-content {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.fixture-premium-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 160px;
}

.fixture-club {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.fixture-club-away {
    justify-content: flex-end;
    text-align: right;
}

.fixture-crest {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 246, 247, .88));
    border: 1px solid rgba(134, 23, 43, .28);
    box-shadow: inset 0 0 0 8px rgba(134, 23, 43, .035);
}

.fixture-crest::before {
    content: "";
    width: 38px;
    height: 44px;
    background: linear-gradient(145deg, rgba(134, 23, 43, .24), rgba(16, 32, 51, .12));
    clip-path: polygon(50% 0%, 88% 15%, 80% 72%, 50% 100%, 20% 72%, 12% 15%);
    opacity: .8;
}

.fixture-club-text {
    min-width: 0;
}

.fixture-club-text span {
    display: block;
    margin-bottom: 8px;
    color: var(--bordo);
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.fixture-club-text strong {
    display: block;
    color: var(--lacivert);
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.6px;
    word-break: break-word;
}

.premium-score {
    min-height: 118px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(248, 250, 252, .9));
    border: 1px solid rgba(16, 32, 51, .10);
    box-shadow:
        0 18px 38px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    display: grid;
    place-items: center;
    align-content: center;
}

.premium-score small {
    color: #64748b;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.premium-score small::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 12px auto 0;
    background: rgba(16, 32, 51, .12);
}

.premium-score b {
    margin-top: 12px;
    color: var(--bordo);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.8px;
}

.premium-score.is-played {
    background:
        radial-gradient(circle at 50% 0%, rgba(217, 164, 65, .25), transparent 58%),
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 248, 228, .9));
}

.fixture-premium-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1.65fr auto;
    align-items: center;
    gap: 0;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
}

.fixture-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 22px;
    border-right: 1px solid rgba(16, 32, 51, .09);
}

.fixture-info-item:first-child {
    padding-left: 6px;
}

.fixture-info-item i,
.fixture-status-pill i {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(134, 23, 43, .075);
    color: var(--bordo);
    font-style: normal;
    font-size: 20px;
}

.fixture-info-item span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.fixture-info-item strong {
    display: block;
    margin-top: 4px;
    color: var(--lacivert);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.fixture-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 62px;
    padding: 0 26px;
    margin-left: 20px;
    border-radius: 999px;
    background: rgba(134, 23, 43, .10);
    color: var(--bordo);
    font-weight: 950;
    white-space: nowrap;
}

.fixture-status-pill strong {
    font-size: 19px;
}

.fixture-status-pill.is-played {
    background: rgba(217, 164, 65, .24);
    color: #4b2b05;
}

.fixture-status-pill.is-played i {
    background: rgba(217, 164, 65, .20);
}

.fixture-match-card-premium .fixture-meta-row,
.fixture-match-card-premium .fixture-teams {
    display: none;
}

@media(max-width:1120px) {
    .fixture-match-card-premium {
        grid-template-columns: 110px 1fr;
        gap: 20px;
    }

    .premium-week-badge {
        min-height: 190px;
    }

    .fixture-premium-top {
        grid-template-columns: 1fr 140px 1fr;
        gap: 18px;
    }

    .fixture-crest {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
    }

    .fixture-premium-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fixture-info-item {
        border-right: 0;
        padding: 12px;
        border-radius: 22px;
        background: rgba(248, 250, 252, .78);
    }

    .fixture-status-pill {
        margin-left: 0;
        justify-content: center;
    }
}

@media(max-width:820px) {
    .fixture-match-card-premium {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 30px;
    }

    .premium-week-badge {
        min-height: 82px;
        flex-direction: row;
        gap: 16px;
        border-radius: 24px;
    }

    .premium-week-badge span::after {
        display: none;
    }

    .premium-week-badge strong {
        margin-top: 0;
        font-size: 44px;
    }

    .fixture-premium-top {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fixture-club,
    .fixture-club-away {
        justify-content: flex-start;
        text-align: left;
    }

    .fixture-club-away .fixture-club-text {
        order: 2;
    }

    .fixture-club-away .fixture-crest {
        order: 1;
    }

    .premium-score {
        min-height: 96px;
        order: 2;
    }

    .fixture-premium-info {
        grid-template-columns: 1fr;
    }

    .fixture-status-pill {
        width: 100%;
    }
}

@media(max-width:520px) {
    .fixture-crest {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .fixture-club-text strong {
        font-size: 25px;
    }

    .fixture-info-item strong {
        font-size: 18px;
    }
}

/* Fikstür V2 - hafta seçimi + gelişmiş istatistik paneli + premium maç kartı */
.fixture-filter-form {
    max-width: 820px;
}

.fixture-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, .65fr) auto;
    gap: 10px;
    align-items: end;
}

.fixture-filter-field label {
    display: block;
    margin: 0 0 8px 4px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.fixture-filter-field select,
.fixture-filter-grid button {
    width: 100%;
    min-height: 54px;
    border: 0;
    outline: 0;
    border-radius: 18px;
    font: inherit;
    font-weight: 900;
}

.fixture-filter-field select {
    padding: 0 16px;
    color: var(--lacivert);
    background: white;
}

.fixture-filter-grid button {
    padding: 0 22px;
    color: #251604;
    background: var(--gold);
    cursor: pointer;
}

.fixture-toolbar p em {
    display: inline-flex;
    margin-left: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(134, 23, 43, .08);
    color: var(--bordo);
    font-style: normal;
    font-weight: 950;
    font-size: 12px;
}

.fixture-stats-panel {
    gap: 12px;
}

.fixture-season-card strong {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.fixture-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fixture-mini-card {
    min-height: 122px;
    padding: 16px;
    border-radius: 24px;
}

.fixture-mini-card strong {
    margin-top: 10px;
    font-size: 34px;
    letter-spacing: -1.2px;
}

.fixture-mini-card p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
}

.fixture-highlight-card {
    min-height: 132px;
}

.fixture-highlight-card b {
    font-size: 16px;
}

.fixture-match-card-premium {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 26px;
    padding: 24px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 14% 8%, rgba(217, 164, 65, .16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(134, 23, 43, .11), transparent 34%),
        linear-gradient(135deg, rgba(255, 250, 242, .98), rgba(255, 255, 255, .96) 52%, rgba(255, 246, 247, .97));
    border: 1px solid rgba(134, 23, 43, .16);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.fixture-match-card-premium::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .52), transparent 38%, rgba(255, 255, 255, .3)),
        radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .75), transparent 32%);
}

.fixture-match-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(134, 23, 43, .28);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
}

.premium-week-badge {
    min-height: 206px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 28% 18%, rgba(217, 164, 65, .25), transparent 25%),
        linear-gradient(145deg, #151b34, var(--bordo) 72%);
    box-shadow: 0 18px 44px rgba(134, 23, 43, .26);
}

.premium-week-badge strong {
    font-size: 60px;
}

.fixture-premium-top {
    grid-template-columns: minmax(0, 1fr) 164px minmax(0, 1fr);
    min-height: 155px;
    gap: 26px;
}

.fixture-crest {
    width: 86px;
    height: 86px;
    flex-basis: 86px;
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,246,247,.9));
    border: 1px solid rgba(134, 23, 43, .30);
    box-shadow:
        inset 0 0 0 8px rgba(134, 23, 43, .035),
        0 14px 30px rgba(15, 23, 42, .05);
}

.fixture-club-text span {
    color: var(--bordo);
    font-size: 14px;
}

.fixture-club-text strong {
    font-size: clamp(26px, 3vw, 40px);
}

.premium-score {
    min-height: 112px;
    border-radius: 28px;
}

.premium-score b {
    font-size: 39px;
}

.fixture-premium-info {
    grid-template-columns: minmax(150px, .85fr) minmax(130px, .65fr) minmax(220px, 1.15fr) auto;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(16, 32, 51, .08);
}

.fixture-info-item {
    min-height: 62px;
    padding: 0 20px;
}

.fixture-info-item:first-child {
    padding-left: 4px;
}

.fixture-info-item i,
.fixture-status-pill i {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
}

.fixture-info-item strong {
    font-size: 19px;
}

.fixture-status-pill {
    min-height: 60px;
    padding: 0 24px;
    background: rgba(134, 23, 43, .11);
}

@media(max-width:1180px) {
    .fixture-board-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .fixture-mini-stats {
        grid-template-columns: 1fr;
    }
}

@media(max-width:1120px) {
    .fixture-board-layout {
        grid-template-columns: 1fr;
    }

    .fixture-side-panel {
        position: static;
        grid-template-columns: 1fr;
    }

    .fixture-mini-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fixture-match-card-premium {
        grid-template-columns: 110px 1fr;
        gap: 20px;
    }

    .premium-week-badge {
        min-height: 190px;
    }

    .fixture-premium-top {
        grid-template-columns: 1fr 140px 1fr;
        gap: 18px;
    }

    .fixture-crest {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .fixture-premium-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fixture-info-item {
        border-right: 0;
        padding: 12px;
        border-radius: 22px;
        background: rgba(248, 250, 252, .78);
    }

    .fixture-status-pill {
        margin-left: 0;
        justify-content: center;
    }
}

@media(max-width:860px) {
    .fixture-filter-grid {
        grid-template-columns: 1fr;
    }

    .fixture-mini-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fixture-match-card-premium {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 30px;
    }

    .premium-week-badge {
        min-height: 82px;
        flex-direction: row;
        gap: 16px;
        border-radius: 24px;
    }

    .premium-week-badge span::after {
        display: none;
    }

    .premium-week-badge strong {
        margin-top: 0;
        font-size: 44px;
    }

    .fixture-premium-top {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fixture-club,
    .fixture-club-away {
        justify-content: flex-start;
        text-align: left;
    }

    .fixture-club-away .fixture-club-text {
        order: 2;
    }

    .fixture-club-away .fixture-crest {
        order: 1;
    }

    .premium-score {
        min-height: 96px;
        order: 2;
    }

    .fixture-premium-info {
        grid-template-columns: 1fr;
    }

    .fixture-status-pill {
        width: 100%;
    }
}

@media(max-width:540px) {
    .fixture-mini-stats {
        grid-template-columns: 1fr;
    }

    .fixture-crest {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .fixture-club-text strong {
        font-size: 25px;
    }

    .fixture-info-item strong {
        font-size: 18px;
    }
}


/* =========================================================
   FİKSTÜR MAÇ KARTI - TEMİZ, OKUNAKLI, LOGOSUZ SON DÜZEN
   Bu blok özellikle en alta eklenmiştir; önceki fikstür kartı
   stillerini ezip kartların çakışmasını ve taşmasını engeller.
   ========================================================= */

.fixture-match-list {
    display: grid;
    gap: 18px;
}

.fixture-match-card-premium,
.fixture-match-card.fixture-match-card-premium {
    position: relative;
    overflow: hidden;
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(217, 164, 65, .12), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(134, 23, 43, .08), transparent 34%),
        linear-gradient(135deg, rgba(255, 250, 242, .98), rgba(255, 255, 255, .97) 48%, rgba(255, 246, 247, .97));
    border: 1px solid rgba(134, 23, 43, .14);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fixture-match-card-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(134, 23, 43, .22);
    box-shadow: 0 26px 62px rgba(15, 23, 42, .12);
}

.fixture-match-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .42), transparent 42%, rgba(255, 255, 255, .22)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .62), transparent 34%);
    opacity: 1;
}

.fixture-match-card-premium > * {
    position: relative;
    z-index: 2;
}

/* Logolar / arma yerleri tamamen kaldırıldı */
.fixture-match-card-premium .fixture-crest {
    display: none !important;
}

/* Hafta alanı */
.fixture-match-card-premium .premium-week-badge,
.fixture-match-card-premium .fixture-week-badge {
    min-height: 100% !important;
    width: 96px;
    border-radius: 24px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    background:
        radial-gradient(circle at 35% 14%, rgba(217, 164, 65, .22), transparent 26%),
        linear-gradient(150deg, #151b34 0%, #5f0f1d 45%, #86172b 100%);
    box-shadow: 0 16px 34px rgba(134, 23, 43, .22);
}

.fixture-match-card-premium .premium-week-badge span,
.fixture-match-card-premium .fixture-week-badge span {
    margin: 0;
    color: #fff08a;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.fixture-match-card-premium .premium-week-badge span::after,
.fixture-match-card-premium .fixture-week-badge span::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin: 10px auto 0;
    background: rgba(255, 255, 255, .24);
}

.fixture-match-card-premium .premium-week-badge strong,
.fixture-match-card-premium .fixture-week-badge strong {
    margin: 0;
    color: white;
    font-size: clamp(34px, 4vw, 48px);
    line-height: .9;
    letter-spacing: -1.5px;
}

/* Kart içeriği */
.fixture-premium-content {
    display: grid !important;
    grid-template-rows: auto auto;
    gap: 14px !important;
    min-width: 0;
    overflow: visible !important;
}

/* Takım + skor üst satırı */
.fixture-premium-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 124px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center;
    min-height: 112px !important;
    width: 100%;
    min-width: 0;
}

.fixture-club,
.fixture-match-card-premium .fixture-club {
    display: flex !important;
    align-items: center;
    min-width: 0;
    gap: 0 !important;
}

.fixture-club-home {
    justify-content: flex-start;
    text-align: left;
}

.fixture-club-away {
    justify-content: flex-end !important;
    text-align: right !important;
}

.fixture-club-text {
    min-width: 0;
    max-width: 100%;
}

.fixture-club-text span {
    display: block;
    margin: 0 0 8px;
    color: var(--bordo);
    font-size: 13px !important;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .65px;
}

.fixture-club-text strong {
    display: block;
    max-width: 100%;
    color: var(--lacivert);
    font-size: clamp(24px, 2.15vw, 34px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1.1px;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none;
}

/* VS / skor kutusu */
.premium-score,
.fixture-match-card-premium .fixture-score {
    min-height: 92px !important;
    border-radius: 24px !important;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 14px 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(248, 250, 252, .94));
    border: 1px solid rgba(16, 32, 51, .10);
    box-shadow:
        0 14px 30px rgba(15, 23, 42, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.premium-score small,
.fixture-match-card-premium .fixture-score small {
    display: block;
    color: #64748b;
    font-size: 12px !important;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.premium-score small::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    margin: 10px auto 0;
    background: rgba(16, 32, 51, .12);
}

.premium-score b,
.fixture-match-card-premium .fixture-score b {
    display: block;
    margin-top: 10px;
    color: var(--bordo);
    font-size: clamp(28px, 3vw, 36px) !important;
    line-height: 1;
    letter-spacing: -1.2px;
    white-space: nowrap;
}

.premium-score.is-played {
    background:
        radial-gradient(circle at 50% 0%, rgba(217, 164, 65, .22), transparent 55%),
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 248, 228, .92));
}

/* Alt bilgi paneli */
.fixture-premium-info {
    display: grid !important;
    grid-template-columns:
        minmax(155px, 1fr)
        minmax(120px, .75fr)
        minmax(185px, 1.15fr)
        minmax(140px, .8fr) !important;
    gap: 10px !important;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    padding: 10px !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
}

.fixture-info-item {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    min-width: 0;
    min-height: 60px !important;
    padding: 10px 12px !important;
    border: 0 !important;
    border-radius: 18px;
    background: rgba(248, 250, 252, .76);
}

.fixture-info-item:first-child {
    padding-left: 12px !important;
}

.fixture-info-item i,
.fixture-status-pill i {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(134, 23, 43, .075);
    color: var(--bordo);
    font-size: 17px !important;
    font-style: normal;
}

.fixture-info-item div {
    min-width: 0;
}

.fixture-info-item span {
    display: block;
    color: #64748b;
    font-size: 11px !important;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .55px;
}

.fixture-info-item strong {
    display: block;
    margin-top: 6px;
    color: var(--lacivert);
    font-size: clamp(15px, 1.35vw, 18px) !important;
    line-height: 1.15 !important;
    letter-spacing: -.35px;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none;
}

.fixture-status-pill {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 60px !important;
    margin-left: 0 !important;
    padding: 10px 14px !important;
    border-radius: 18px !important;
    background: rgba(134, 23, 43, .10);
    color: var(--bordo);
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
}

.fixture-status-pill strong {
    font-size: clamp(14px, 1.25vw, 17px) !important;
    line-height: 1;
    white-space: nowrap;
}

.fixture-status-pill.is-played {
    background: rgba(217, 164, 65, .24);
    color: #4b2b05;
}

.fixture-status-pill.is-played i {
    background: rgba(217, 164, 65, .20);
}

/* Eski kart yapısı premium kart içinde görünmesin */
.fixture-match-card-premium .fixture-meta-row,
.fixture-match-card-premium .fixture-teams {
    display: none !important;
}

/* Orta ekranlar */
@media(max-width:1180px) {
    .fixture-match-card-premium,
    .fixture-match-card.fixture-match-card-premium {
        grid-template-columns: 82px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 14px !important;
        border-radius: 26px !important;
    }

    .fixture-match-card-premium .premium-week-badge,
    .fixture-match-card-premium .fixture-week-badge {
        width: 82px;
        border-radius: 22px !important;
    }

    .fixture-premium-top {
        grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr) !important;
        gap: 12px !important;
        min-height: 96px !important;
    }

    .fixture-club-text strong {
        font-size: clamp(21px, 2vw, 29px) !important;
    }

    .premium-score,
    .fixture-match-card-premium .fixture-score {
        min-height: 82px !important;
    }

    .premium-score b,
    .fixture-match-card-premium .fixture-score b {
        font-size: 30px !important;
    }

    .fixture-premium-info {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Tablet ve mobil */
@media(max-width:820px) {
    .fixture-match-card-premium,
    .fixture-match-card.fixture-match-card-premium {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 14px !important;
    }

    .fixture-match-card-premium .premium-week-badge,
    .fixture-match-card-premium .fixture-week-badge {
        width: 100%;
        min-height: 72px !important;
        flex-direction: row;
        border-radius: 20px !important;
    }

    .fixture-match-card-premium .premium-week-badge span::after,
    .fixture-match-card-premium .fixture-week-badge span::after {
        display: none;
    }

    .fixture-premium-top {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        min-height: auto !important;
    }

    .fixture-club-home,
    .fixture-club-away {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .fixture-club-away .fixture-club-text {
        order: initial !important;
    }

    .premium-score,
    .fixture-match-card-premium .fixture-score {
        order: 2;
        min-height: 78px !important;
    }

    .fixture-premium-info {
        grid-template-columns: 1fr !important;
    }

    .fixture-status-pill {
        justify-content: flex-start;
    }
}

@media(max-width:520px) {
    .fixture-club-text strong {
        font-size: 24px !important;
    }

    .fixture-info-item strong {
        font-size: 16px !important;
    }
}

/* Fikstür alt bilgi yerleşim düzeltmesi - yazı boyutlarına dokunmaz */
.fixture-premium-info {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    align-items: stretch !important;
}

/* Oynanacak / Oynandı kısmını kaldır */
.fixture-premium-info .fixture-status-pill {
    display: none !important;
}

/* Tarih / Saat / Saha kutularını eşit yay */
.fixture-premium-info .fixture-info-item {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    border-right: 0 !important;
    border-radius: 24px !important;
    background: rgba(248, 250, 252, .88) !important;
    display: flex !important;
    align-items: center !important;
}

/* Saha kutusu da diğerleri gibi davransın */
.fixture-premium-info .fixture-info-wide {
    grid-column: auto !important;
}

/* İçerik taşmasın ama yazı boyutu değişmesin */
.fixture-premium-info .fixture-info-item div {
    min-width: 0 !important;
}

/* Mobilde alt alta gelsin */
@media(max-width: 980px) {
    .fixture-premium-info {
        grid-template-columns: 1fr !important;
    }
}

.ataturk-section {
    padding: 30px 0 10px;
}

.ataturk-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
    border: 1px solid rgba(16, 32, 51, 0.08);
    min-height: 260px;
}

.ataturk-left {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 34px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f7f9fc);
}

.ataturk-image {
    flex: 0 0 150px;
    width: 150px;
    height: 190px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(16, 32, 51, 0.18);
}

.ataturk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ataturk-content {
    flex: 1;
}

.ataturk-content blockquote {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #102033;
}

.ataturk-sign {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #86172b;
}

.ataturk-right {
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: linear-gradient(135deg, #102033, #86172b);
    position: relative;
}

.ataturk-right img {
    max-width: 260px;
    width: 70%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.25));
}

@media (max-width: 900px) {
    .ataturk-split-card {
        grid-template-columns: 1fr;
    }

    .ataturk-left {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
    }

    .ataturk-image {
        width: 135px;
        height: 170px;
        flex-basis: auto;
    }

    .ataturk-content blockquote {
        font-size: 20px;
    }

    .ataturk-right {
        min-height: 200px;
        padding: 28px;
    }

    .ataturk-right img {
        max-width: 210px;
    }
}

/* Atatürk bölümü sağ görsel tam otursun */
.ataturk-split-card {
    align-items: stretch;
}

.ataturk-right {
    height: auto;
    min-height: 260px;
    padding: 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #102033, #86172b);
}

.ataturk-right img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
}

/* Mobil görünüm */
@media (max-width: 900px) {
    .ataturk-right {
        min-height: 220px;
        padding: 0 !important;
    }

    .ataturk-right img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        object-position: center;
    }
}

/* ================================
   Puan Durumu Sayfası - Premium Modern Tasarım
   ================================ */
.standings-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(217, 164, 65, .22), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .14), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 45%, #f2ece3 100%);
}

.standings-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 55%);
}

.standings-hero-section,
.standings-board-section {
    position: relative;
    z-index: 1;
}

.standings-hero-section {
    padding: 42px 0 30px;
}

.standings-hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
    gap: clamp(22px, 4vw, 42px);
    min-height: 520px;
    padding: clamp(26px, 4.4vw, 56px);
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, .68);
    color: white;
    background:
        radial-gradient(circle at 76% 20%, rgba(217, 164, 65, .32), transparent 26%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 54%, rgba(134, 23, 43, .92));
    box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
}

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

.standings-hero-panel::before {
    width: 480px;
    height: 480px;
    top: -220px;
    right: 16%;
    background: rgba(217, 164, 65, .24);
    filter: blur(18px);
}

.standings-hero-panel::after {
    width: 310px;
    height: 310px;
    right: -95px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.standings-hero-copy,
.standings-summary-card {
    position: relative;
    z-index: 2;
}

.standings-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
}

.standings-kicker,
.standings-overline,
.standings-summary-label,
.standings-table-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.standings-kicker {
    gap: 9px;
    padding: 10px 14px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.standings-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.standings-hero-copy h1 {
    margin-top: 22px;
    color: white;
    font-size: clamp(48px, 7.4vw, 92px);
    line-height: .88;
    letter-spacing: -4px;
}

.standings-hero-copy p {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.75;
}

.standings-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.standings-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(217, 164, 65, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.standings-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(217, 164, 65, .32);
}

.standings-mini-note {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.standings-summary-card {
    align-self: center;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(24px, 3.4vw, 34px);
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}

.standings-summary-label {
    padding: 8px 11px;
    color: #251604;
    background: #f6d878;
}

.standings-summary-card h2 {
    margin-top: 22px;
    color: white;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.standings-summary-card p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-weight: 850;
}

.standings-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.standings-summary-grid div {
    min-height: 112px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
}

.standings-summary-grid strong {
    display: block;
    color: white;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.standings-summary-grid span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.standings-board-section {
    padding: 34px 0 72px;
}

.standings-board-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.standings-overline {
    margin-bottom: 9px;
    color: var(--bordo);
}

.standings-board-top h2 {
    color: var(--lacivert);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.standings-board-top p {
    max-width: 620px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.standings-filter {
    display: grid;
    gap: 8px;
    flex: 0 0 min(390px, 100%);
}

.standings-filter label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.standings-filter select {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 22px;
    outline: none;
    padding: 0 18px;
    color: var(--text);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    font-family: inherit;
    font-weight: 850;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.standings-filter select:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 24px 54px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.standings-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.standings-stat-card {
    min-height: 132px;
    padding: 22px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.standings-stat-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.standings-stat-card strong {
    display: block;
    margin-top: 12px;
    color: var(--lacivert);
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.02;
    letter-spacing: -1.1px;
}

.standings-table-card {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 34px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    backdrop-filter: blur(14px);
}

.standings-table-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
}

.standings-table-label {
    margin-bottom: 8px;
    color: var(--bordo);
}

.standings-table-toolbar h3 {
    color: var(--lacivert);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -1.2px;
}

.standings-search {
    position: relative;
    flex: 0 0 min(340px, 100%);
}

.standings-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
    fill: var(--muted);
    pointer-events: none;
}

.standings-search input {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 20px;
    outline: none;
    padding: 0 18px 0 50px;
    color: var(--text);
    background: white;
    font-family: inherit;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.standings-search input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 18px 42px rgba(15, 23, 42, .1);
    transform: translateY(-1px);
}

.standings-count-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    background: rgba(248, 250, 252, .7);
}

.standings-count-row b {
    color: var(--bordo);
}

.standings-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
}

.standings-table th,
.standings-table td {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    text-align: center;
    white-space: nowrap;
}

.standings-table th {
    position: sticky;
    top: 0;
    z-index: 3;
    color: #64748b;
    background: #f8fafc;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    text-align: left;
}

.standings-table tbody tr {
    transition: background .18s ease, transform .18s ease;
}

.standings-table tbody tr:hover {
    background: rgba(217, 164, 65, .08);
}

.standings-table tbody tr:last-child td {
    border-bottom: 0;
}

.standings-rank {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 15px;
    color: var(--lacivert);
    background: #f1f5f9;
    font-weight: 950;
}

.standings-rank.is-top {
    color: #251604;
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    box-shadow: 0 12px 24px rgba(217, 164, 65, .22);
}

.standings-team-cell {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 240px;
}

.standings-team-logo {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 17px;
    color: white;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}

.standings-team-cell strong {
    display: block;
    color: var(--lacivert);
    font-size: 15px;
    line-height: 1.2;
}

.standings-team-cell small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.standings-diff,
.standings-point {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 34px;
    border-radius: 999px;
    font-weight: 950;
}

.standings-diff {
    color: var(--lacivert);
    background: #f1f5f9;
}

.standings-diff.is-positive {
    color: #166534;
    background: #dcfce7;
}

.standings-diff.is-negative {
    color: #991b1b;
    background: #fee2e2;
}

.standings-point {
    color: white;
    background: var(--bordo);
    box-shadow: 0 12px 24px rgba(134, 23, 43, .18);
}

.standings-empty-inline {
    display: grid;
    gap: 8px;
    padding: 28px;
    text-align: center;
}

.standings-empty-inline strong {
    color: var(--lacivert);
    font-size: 18px;
}

.standings-empty-inline span {
    color: var(--muted);
}

.standings-empty-state {
    margin: 24px;
    padding: 32px;
    border-radius: 28px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .86);
}

.standings-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.standings-empty-state p {
    color: var(--muted);
}

.standings-empty-state[hidden],
.standings-table tr[hidden] {
    display: none !important;
}

@media(max-width:1100px) {
    .standings-hero-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .standings-summary-card {
        align-self: stretch;
    }

    .standings-stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:820px) {
    .standings-board-top,
    .standings-table-toolbar,
    .standings-count-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .standings-filter,
    .standings-search {
        flex-basis: auto;
        width: 100%;
    }

    .standings-count-row {
        gap: 8px;
    }
}

@media(max-width:620px) {
    .standings-hero-section {
        padding-top: 24px;
    }

    .standings-hero-panel {
        padding: 22px;
        border-radius: 30px;
    }

    .standings-hero-copy h1 {
        letter-spacing: -2.4px;
    }

    .standings-summary-grid,
    .standings-stat-strip {
        grid-template-columns: 1fr;
    }

    .standings-table-card {
        border-radius: 26px;
    }

    .standings-table-toolbar {
        padding: 20px;
    }
}

/* ================================
   Belgeler Sayfası - Premium Modern Tasarım
   ================================ */
.documents-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 7%, rgba(217, 164, 65, .23), transparent 30%),
        radial-gradient(circle at 92% 2%, rgba(15, 108, 141, .16), transparent 29%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 46%, #f2ece3 100%);
}

.documents-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 56%);
}

.docs-hero-section,
.docs-library-section {
    position: relative;
    z-index: 1;
}

.docs-hero-section {
    padding: 42px 0 30px;
}

.docs-hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .74fr);
    gap: clamp(22px, 4vw, 42px);
    min-height: 520px;
    padding: clamp(26px, 4.4vw, 56px);
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, .68);
    color: white;
    background:
        radial-gradient(circle at 74% 20%, rgba(217, 164, 65, .34), transparent 27%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .95) 54%, rgba(134, 23, 43, .92));
    box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
}

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

.docs-hero-panel::before {
    width: 500px;
    height: 500px;
    top: -240px;
    right: 16%;
    background: rgba(217, 164, 65, .24);
    filter: blur(18px);
}

.docs-hero-panel::after {
    width: 310px;
    height: 310px;
    right: -95px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.docs-hero-copy,
.docs-hero-card {
    position: relative;
    z-index: 2;
}

.docs-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 790px;
}

.docs-kicker,
.docs-overline,
.docs-card-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.docs-kicker {
    gap: 9px;
    padding: 10px 14px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.docs-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.docs-hero-copy h1 {
    margin-top: 22px;
    color: white;
    font-size: clamp(48px, 7.4vw, 92px);
    line-height: .88;
    letter-spacing: -4px;
}

.docs-hero-copy p {
    max-width: 660px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.75;
}

.docs-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.docs-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(217, 164, 65, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.docs-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(217, 164, 65, .32);
}

.docs-mini-note {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 900;
}

.docs-mini-note strong {
    color: #fff;
    font-size: 20px;
}

.docs-hero-card {
    align-self: center;
    overflow: hidden;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: clamp(24px, 3.5vw, 34px);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.docs-hero-card:hover {
    transform: translateY(-8px) rotate(-.45deg);
    border-color: rgba(217, 164, 65, .68);
    background: rgba(255, 255, 255, .18);
}

.docs-card-label {
    padding: 8px 11px;
    color: #251604;
    background: #f6d878;
}

.docs-hero-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-top: 32px;
    border-radius: 30px;
    color: #251604;
    background: linear-gradient(135deg, #fff3b0, #d9a441);
    box-shadow: 0 22px 46px rgba(217, 164, 65, .26);
    font-size: 42px;
}

.docs-hero-card h2 {
    margin-top: 24px;
    color: white;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.3px;
}

.docs-hero-card p {
    margin-top: 13px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.68;
}

.docs-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.docs-hero-stats div {
    min-height: 92px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .09);
}

.docs-hero-stats strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1;
    letter-spacing: -1px;
}

.docs-hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 850;
}

.docs-library-section {
    padding: 34px 0 72px;
    scroll-margin-top: 110px;
}

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

.docs-overline {
    margin-bottom: 9px;
    color: var(--bordo);
}

.docs-toolbar h2 {
    color: var(--lacivert);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.docs-toolbar p {
    max-width: 630px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.docs-toolbar p strong {
    color: var(--bordo);
}

.docs-modern-search {
    position: relative;
    flex: 0 0 min(390px, 100%);
}

.docs-modern-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    fill: var(--muted);
    pointer-events: none;
}

.docs-modern-search input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 22px;
    outline: none;
    padding: 0 20px 0 50px;
    color: var(--text);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.docs-modern-search input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 24px 54px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.docs-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.docs-filter-panel {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 30px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.docs-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    padding: 4px 4px 10px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
}

.docs-filter-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.docs-filter-head strong {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    color: white;
    background: var(--bordo);
    font-size: 13px;
}

.docs-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 18px;
    padding: 13px 14px;
    color: var(--lacivert);
    background: transparent;
    font-family: inherit;
    font-weight: 950;
    text-align: left;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.docs-category-btn:hover {
    transform: translateX(3px);
    background: rgba(134, 23, 43, .07);
}

.docs-category-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
    box-shadow: 0 16px 34px rgba(134, 23, 43, .18);
}

.docs-category-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-category-btn em {
    flex-shrink: 0;
    min-width: 30px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
    font-size: 12px;
    font-style: normal;
    text-align: center;
}

.docs-category-btn.active em {
    color: #251604;
    background: var(--gold);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.docs-modern-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 188px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 30px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.docs-modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 44%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.docs-modern-card:hover {
    transform: translateY(-7px);
    border-color: rgba(134, 23, 43, .2);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .15);
}

.docs-modern-card:hover::before {
    opacity: 1;
}

.docs-file-badge {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 100%;
    color: white;
    background:
        radial-gradient(circle at 32% 24%, rgba(217, 164, 65, .55), transparent 36%),
        linear-gradient(145deg, var(--lacivert), var(--bordo));
    font-size: 18px;
    font-weight: 950;
    letter-spacing: .08em;
}

.docs-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.docs-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.docs-card-meta span,
.docs-card-meta time {
    font-size: 12px;
    font-weight: 950;
}

.docs-card-meta span {
    max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--bordo);
}

.docs-card-meta time {
    flex-shrink: 0;
    color: var(--muted);
}

.docs-modern-card h3 {
    color: var(--lacivert);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.18;
    letter-spacing: -.8px;
}

.docs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
}

.docs-card-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--lacivert);
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 950;
}

.docs-card-footer strong {
    color: var(--bordo);
    font-weight: 950;
    white-space: nowrap;
}

.docs-empty-state {
    margin-top: 20px;
    padding: 38px;
    border-radius: 32px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.docs-empty-state-static {
    margin-top: 0;
}

.docs-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.docs-empty-state p {
    color: var(--muted);
}

.docs-empty-state[hidden],
.docs-modern-card[hidden] {
    display: none !important;
}

@media(max-width:1100px) {
    .docs-hero-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .docs-hero-card {
        min-height: 0;
    }

    .docs-layout {
        grid-template-columns: 1fr;
    }

    .docs-filter-panel {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }

    .docs-filter-head {
        grid-column: 1 / -1;
    }
}

@media(max-width:900px) {
    .docs-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .docs-modern-search {
        flex-basis: auto;
        width: 100%;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .docs-filter-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:680px) {
    .docs-hero-section {
        padding-top: 24px;
    }

    .docs-hero-panel {
        padding: 22px;
        border-radius: 30px;
    }

    .docs-hero-copy h1 {
        letter-spacing: -2.4px;
    }

    .docs-hero-stats,
    .docs-filter-panel {
        grid-template-columns: 1fr;
    }

    .docs-modern-card {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .docs-file-badge {
        min-height: 86px;
    }

    .docs-card-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .docs-card-meta span {
        max-width: 100%;
    }

    .docs-toolbar h2 {
        letter-spacing: -1.5px;
    }
}

/* ================================
   Yönetim Kurulu Sayfası - Premium Modern Tasarım
   ================================ */
.board-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 6%, rgba(217, 164, 65, .2), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .16), transparent 29%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 46%, #f2ece3 100%);
}

.board-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .32;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 58%);
}

.board-hero-section,
.board-stats-section,
.board-members-section {
    position: relative;
    z-index: 1;
}

.board-hero-section {
    padding: 28px 0 14px;
}

.board-hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .58fr);
    gap: clamp(18px, 3vw, 30px);
    min-height: 390px;
    padding: clamp(24px, 3.3vw, 40px);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .68);
    color: white;
    background:
        radial-gradient(circle at 72% 22%, rgba(217, 164, 65, .32), transparent 27%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .95) 55%, rgba(134, 23, 43, .92));
    box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
}

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

.board-hero-panel::before {
    width: 470px;
    height: 470px;
    top: -225px;
    right: 20%;
    background: rgba(217, 164, 65, .24);
    filter: blur(18px);
}

.board-hero-panel::after {
    width: 310px;
    height: 310px;
    right: -92px;
    bottom: -94px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.board-hero-copy,
.board-spotlight-card {
    position: relative;
    z-index: 2;
}

.board-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
}

.board-kicker,
.board-overline {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.board-kicker {
    gap: 9px;
    padding: 10px 14px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.board-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.board-hero-copy h1 {
    margin-top: 16px;
    color: white;
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: .94;
    letter-spacing: -2.8px;
}

.board-hero-copy p {
    max-width: 600px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.65;
}

.board-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.board-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(217, 164, 65, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.board-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(217, 164, 65, .32);
}

.board-mini-note {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 900;
}

.board-spotlight-card {
    align-self: center;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.board-spotlight-card:hover {
    transform: translateY(-8px) rotate(-.45deg);
    border-color: rgba(217, 164, 65, .68);
    background: rgba(255, 255, 255, .18);
}

.board-spotlight-media {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    background: linear-gradient(135deg, rgba(217, 164, 65, .9), rgba(134, 23, 43, .85));
}

.board-spotlight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 32, 51, .4), transparent 62%);
}

.board-spotlight-media img,
.board-member-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.board-spotlight-card:hover img,
.board-member-card:hover img {
    transform: scale(1.06);
}

.board-spotlight-content,
.board-spotlight-empty {
    display: flex;
    flex-direction: column;
    padding: clamp(18px, 2.4vw, 24px);
}

.board-spotlight-content span {
    display: inline-flex;
    width: max-content;
    padding: 8px 11px;
    border-radius: 999px;
    color: #251604;
    background: #f6d878;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.board-spotlight-content h2,
.board-spotlight-empty h2 {
    margin-top: 12px;
    color: white;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.board-spotlight-content p,
.board-spotlight-empty p {
    margin-top: 10px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
}

.board-spotlight-empty {
    min-height: 260px;
    justify-content: center;
}

.board-spotlight-empty > span {
    color: rgba(255, 255, 255, .34);
    font-size: clamp(34px, 4.6vw, 52px);
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.board-stats-section {
    padding: 14px 0 22px;
}

.board-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.board-stat-card {
    min-height: 132px;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.board-stat-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.board-stat-card strong {
    display: block;
    margin-top: 9px;
    color: var(--lacivert);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.board-stat-card p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.board-stat-card-dark {
    color: white;
    background: linear-gradient(145deg, rgba(16, 32, 51, .96), rgba(95, 15, 29, .94));
}

.board-stat-card-dark span,
.board-stat-card-dark p {
    color: rgba(255, 255, 255, .72);
}

.board-stat-card-dark strong {
    color: #f6d878;
    font-size: clamp(28px, 3.4vw, 44px);
}

.board-members-section {
    padding: 28px 0 70px;
}

.board-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.board-overline {
    margin-bottom: 9px;
    color: var(--bordo);
}

.board-section-top h2 {
    color: var(--lacivert);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.board-section-top p {
    max-width: 620px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.board-section-top p strong {
    color: var(--bordo);
}

.board-search-box {
    position: relative;
    flex: 0 0 min(390px, 100%);
}

.board-search-box svg {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    fill: var(--muted);
    pointer-events: none;
}

.board-search-box input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 22px;
    outline: none;
    padding: 0 20px 0 50px;
    color: var(--text);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.board-search-box input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .09), 0 24px 54px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.board-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.board-filter-row button {
    min-height: 44px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--lacivert);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    font-family: inherit;
    font-weight: 950;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.board-filter-row button:hover,
.board-filter-row button.active {
    transform: translateY(-2px);
    color: white;
    background: var(--bordo);
    border-color: var(--bordo);
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.board-member-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.board-member-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 44%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.board-member-card:hover {
    transform: translateY(-7px);
    border-color: rgba(134, 23, 43, .2);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .15);
}

.board-member-card:hover::before {
    opacity: 1;
}

.board-member-media {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #102033, #86172b 58%, #d9a441);
}

.board-member-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 32, 51, .36), transparent 56%);
}

.board-member-media span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 38px;
    border-radius: 999px;
    color: white;
    background: rgba(16, 32, 51, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px;
    font-weight: 950;
    backdrop-filter: blur(10px);
}

.board-member-body {
    position: relative;
    z-index: 2;
    padding: 22px;
}

.board-role-pill {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.board-member-body h3 {
    margin-top: 12px;
    color: var(--lacivert);
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.board-member-body p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.board-empty-state {
    margin-top: 20px;
    padding: 38px;
    border-radius: 32px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.board-empty-state h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.board-empty-state p {
    color: var(--muted);
}

.board-empty-state[hidden] {
    display: none !important;
}

.board-empty-state-main {
    margin-top: 0;
}

@media(max-width:1100px) {
    .board-hero-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .board-spotlight-card {
        display: grid;
        grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
    }

    .board-spotlight-media {
        min-height: 230px;
    }

    .board-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:900px) {
    .board-section-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .board-search-box {
        flex-basis: auto;
        width: 100%;
    }

    .board-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-stat-card-dark {
        grid-column: span 2;
    }
}

@media(max-width:680px) {
    .board-hero-section {
        padding-top: 20px;
    }

    .board-hero-panel {
        padding: 20px;
        border-radius: 28px;
    }

    .board-hero-copy h1 {
        letter-spacing: -2.4px;
    }

    .board-spotlight-card,
    .board-member-card {
        border-radius: 26px;
    }

    .board-spotlight-card {
        display: flex;
        flex-direction: column;
    }

    .board-spotlight-media {
        min-height: 190px;
        height: 210px;
    }

    .board-member-media {
        min-height: 220px;
        height: 260px;
    }

    .board-members-grid,
    .board-stats-grid {
        grid-template-columns: 1fr;
    }

    .board-stat-card-dark {
        grid-column: auto;
    }

    .board-section-top h2 {
        letter-spacing: -1.5px;
    }

    .board-filter-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .board-filter-row button {
        justify-content: center;
    }
}


/* ================================
   Tarihçe Sayfası - Sade Modern Tasarım
   Sadece tarihce.php içindeki .history-simple-* class'larını etkiler.
   ================================ */
.history-simple-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(217, 164, 65, .16), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .10), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 52%, #f4efe7 100%);
}

.history-simple-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(16, 32, 51, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .05) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 48%);
}

.history-simple-hero,
.history-simple-section {
    position: relative;
    z-index: 1;
}

.history-simple-hero {
    padding: 36px 0 18px;
}

.history-simple-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 85% 18%, rgba(217, 164, 65, .30), transparent 26%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .95) 58%, rgba(134, 23, 43, .92));
    box-shadow: 0 26px 70px rgba(15, 23, 42, .18);
    border: 1px solid rgba(255, 255, 255, .55);
}

.history-simple-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 44px solid rgba(255, 255, 255, .07);
    pointer-events: none;
}

.history-simple-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff7d6;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .17);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.history-simple-panel h1,
.history-simple-panel p {
    position: relative;
    z-index: 1;
}

.history-simple-panel h1 {
    max-width: 860px;
    color: white;
    font-size: clamp(40px, 6vw, 74px);
    line-height: .95;
    letter-spacing: -3px;
}

.history-simple-panel p {
    max-width: 650px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
}

.history-simple-section {
    padding: 18px 0 64px;
}

.history-simple-content {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 44px);
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 32, 51, .09);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.history-simple-content p {
    color: #334155;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.9;
}

.history-simple-content p + p {
    margin-top: 18px;
}

@media(max-width:680px) {
    .history-simple-hero {
        padding-top: 24px;
    }

    .history-simple-panel {
        border-radius: 28px;
        padding: 24px;
    }

    .history-simple-panel h1 {
        letter-spacing: -2px;
    }

    .history-simple-content {
        border-radius: 24px;
        padding: 24px;
    }
}

/* ================================
   Başkanlar Sayfası - Sayfaya Özel Modern Tasarım
   Not: Sadece .presidents-* sınıflarını etkiler.
   ================================ */
.presidents-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(217, 164, 65, .16), transparent 30%),
        radial-gradient(circle at 96% 8%, rgba(15, 108, 141, .10), transparent 28%),
        var(--krem);
}

.presidents-hero,
.presidents-current-section,
.presidents-list-section {
    position: relative;
    z-index: 1;
}

.presidents-hero {
    padding: 34px 0 16px;
}

.presidents-hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
    align-items: center;
    gap: 24px;
    min-height: 250px;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 80% 18%, rgba(217, 164, 65, .30), transparent 28%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 58%, rgba(134, 23, 43, .92));
    box-shadow: 0 24px 64px rgba(15, 23, 42, .18);
    border: 1px solid rgba(255, 255, 255, .32);
}

.presidents-hero-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.presidents-hero-copy,
.presidents-hero-stats {
    position: relative;
    z-index: 1;
}

.presidents-kicker,
.presidents-label,
.presidents-section-head span,
.presidents-period {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.presidents-kicker {
    margin-bottom: 15px;
    padding: 9px 13px;
    color: #fff7d6;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
}

.presidents-hero-copy h1 {
    max-width: 780px;
    color: white;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
}

.presidents-hero-copy p {
    max-width: 620px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
}

.presidents-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.presidents-stat-card {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
}

.presidents-stat-card strong {
    color: white;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -1px;
}

.presidents-stat-card span {
    margin-top: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
}

.presidents-current-section {
    padding: 14px 0 18px;
}

.presidents-current-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: stretch;
    max-width: 760px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 32, 51, .09);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.presidents-current-photo {
    min-height: 170px;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
}

.presidents-current-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.presidents-current-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.presidents-label {
    margin-bottom: 12px;
    padding: 8px 11px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
}

.presidents-current-content h2 {
    color: var(--lacivert);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.presidents-current-content p {
    margin-top: 9px;
    color: var(--muted);
    font-weight: 900;
}

.presidents-list-section {
    padding: 22px 0 70px;
}

.presidents-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.presidents-section-head span {
    margin-bottom: 8px;
    color: var(--bordo);
}

.presidents-section-head h2 {
    color: var(--lacivert);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -1.6px;
}

.presidents-section-head p {
    max-width: 430px;
    color: var(--muted);
    line-height: 1.65;
}

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

.presidents-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 32, 51, .09);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.presidents-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 23, 43, .18);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
}

.presidents-card-photo {
    position: relative;
    overflow: hidden;
    height: 245px;
    background:
        radial-gradient(circle at 30% 24%, rgba(217, 164, 65, .28), transparent 30%),
        linear-gradient(135deg, var(--lacivert), var(--bordo));
}

.presidents-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.presidents-card:hover .presidents-card-photo img {
    transform: scale(1.05);
}

.presidents-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.presidents-period {
    margin-bottom: 13px;
    padding: 8px 11px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
}

.presidents-card-body h3 {
    color: var(--lacivert);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.presidents-card-body small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-weight: 850;
}

.presidents-empty-card {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    border: 1px dashed rgba(16, 32, 51, .20);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
}

.presidents-empty-card h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.presidents-empty-card p {
    color: var(--muted);
    line-height: 1.65;
}

@media(max-width:980px) {
    .presidents-hero-panel,
    .presidents-section-head {
        grid-template-columns: 1fr;
    }

    .presidents-hero-panel {
        min-height: 0;
    }

    .presidents-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .presidents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:680px) {
    .presidents-hero {
        padding-top: 24px;
    }

    .presidents-hero-panel {
        border-radius: 28px;
        padding: 24px;
    }

    .presidents-hero-copy h1 {
        letter-spacing: -2px;
    }

    .presidents-hero-stats,
    .presidents-grid,
    .presidents-current-card {
        grid-template-columns: 1fr;
    }

    .presidents-current-photo {
        min-height: 240px;
    }

    .presidents-card,
    .presidents-current-card {
        border-radius: 24px;
    }
}
/* ================================
   Kararlar Sayfası - Sadece bu sayfaya özel
   ================================ */
.decisions-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 2%, rgba(217, 164, 65, .18), transparent 28%),
        radial-gradient(circle at 95% 8%, rgba(15, 108, 141, .12), transparent 26%),
        var(--krem);
}

.decisions-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .25;
    background-image:
        linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 48%);
}

.decisions-hero,
.decisions-section {
    position: relative;
    z-index: 1;
}

.decisions-hero {
    padding: 34px 0 20px;
}

.decisions-hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
    gap: 22px;
    align-items: stretch;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 82% 20%, rgba(217, 164, 65, .32), transparent 27%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .95) 58%, rgba(134, 23, 43, .92));
    box-shadow: 0 28px 72px rgba(15, 23, 42, .18);
}

.decisions-hero-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, .07);
}

.decisions-hero-content,
.decisions-hero-stats {
    position: relative;
    z-index: 2;
}

.decisions-kicker,
.decisions-overline {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.decisions-kicker {
    margin-bottom: 16px;
    padding: 9px 13px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(12px);
}

.decisions-hero h1 {
    max-width: 820px;
    color: white;
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: .95;
    letter-spacing: -2.6px;
}

.decisions-hero p {
    max-width: 650px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
}

.decisions-hero-stats {
    display: grid;
    gap: 12px;
}

.decisions-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.decisions-stat-card strong {
    display: block;
    color: white;
    font-size: clamp(25px, 2.7vw, 38px);
    line-height: 1;
    letter-spacing: -1px;
}

.decisions-stat-card span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 850;
}

.decisions-section {
    padding: 22px 0 68px;
}

.decisions-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.decisions-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.decisions-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 9px 16px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 999px;
    color: var(--lacivert);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    backdrop-filter: blur(12px);
    font-weight: 950;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.decisions-tabs a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, .12);
}

.decisions-tabs a.active {
    color: white;
    background: var(--bordo);
}

.decisions-tabs a strong {
    display: grid;
    place-items: center;
    min-width: 31px;
    height: 31px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(16, 32, 51, .08);
    font-size: 13px;
}

.decisions-tabs a.active strong {
    color: #251604;
    background: var(--gold);
}

.decisions-search {
    display: grid;
    gap: 8px;
    width: min(360px, 100%);
}

.decisions-search span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.decisions-search input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 20px;
    outline: none;
    padding: 0 17px;
    color: var(--text);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
    backdrop-filter: blur(12px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.decisions-search input:focus {
    border-color: rgba(134, 23, 43, .42);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .08), 0 18px 42px rgba(15, 23, 42, .1);
    transform: translateY(-1px);
}

.decisions-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.decisions-overline {
    margin-bottom: 8px;
    color: var(--bordo);
}

.decisions-list-head h2 {
    color: var(--lacivert);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -1.4px;
}

.decisions-list-head p {
    color: var(--muted);
    font-weight: 850;
}

.decisions-list-head p strong {
    color: var(--bordo);
}

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

.decisions-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 174px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
    backdrop-filter: blur(12px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.decisions-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 42%, rgba(134, 23, 43, .08));
    transition: opacity .22s ease;
}

.decisions-card:hover {
    transform: translateY(-5px);
    border-color: rgba(134, 23, 43, .18);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .13);
}

.decisions-card:hover::before {
    opacity: 1;
}

.decisions-card-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(217, 164, 65, .35), transparent 32%),
        linear-gradient(145deg, var(--lacivert), var(--bordo));
}

.decisions-card-icon span {
    color: rgba(255, 255, 255, .72);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -1px;
}

.decisions-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.decisions-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.decisions-card-meta time,
.decisions-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.decisions-card-meta time {
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
}

.decisions-card-meta span {
    color: var(--lacivert);
    background: #f1f5f9;
}

.decisions-card h3 {
    color: var(--lacivert);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.2;
    letter-spacing: -.7px;
}

.decisions-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
}

.decisions-card-footer span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.decisions-card-footer strong {
    color: var(--bordo);
    font-weight: 950;
    white-space: nowrap;
}

.decisions-empty {
    margin-top: 18px;
    padding: 34px;
    border: 1px dashed rgba(16, 32, 51, .2);
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.decisions-empty h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.decisions-empty p {
    color: var(--muted);
}

.decisions-empty[hidden] {
    display: none !important;
}

@media(max-width:980px) {
    .decisions-hero-card,
    .decisions-grid {
        grid-template-columns: 1fr;
    }

    .decisions-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .decisions-toolbar,
    .decisions-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .decisions-search {
        width: 100%;
    }
}

@media(max-width:620px) {
    .decisions-hero {
        padding-top: 24px;
    }

    .decisions-hero-card {
        border-radius: 28px;
        padding: 24px;
    }

    .decisions-hero h1 {
        letter-spacing: -1.8px;
    }

    .decisions-hero-stats {
        grid-template-columns: 1fr;
    }

    .decisions-tabs,
    .decisions-tabs a {
        width: 100%;
    }

    .decisions-tabs a {
        justify-content: space-between;
    }

    .decisions-card {
        grid-template-columns: 1fr;
    }

    .decisions-card-icon {
        min-height: 78px;
    }

    .decisions-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ================================
   İletişim Sayfası - Modern Sade Tasarım
   Sadece .contact-modern-* class'ları kullanır.
   ================================ */
.contact-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 4%, rgba(217, 164, 65, .18), transparent 28%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .12), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 48%, #f3eee6 100%);
}

.contact-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .26;
    background-image:
        linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 52%);
}

.contact-modern-hero,
.contact-modern-info-section,
.contact-modern-map-section {
    position: relative;
    z-index: 1;
}

.contact-modern-hero {
    padding: 38px 0 22px;
}

.contact-modern-hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, .52fr);
    align-items: stretch;
    gap: 22px;
    min-height: 300px;
    padding: clamp(26px, 4vw, 46px);
    border-radius: 36px;
    color: white;
    background:
        radial-gradient(circle at 78% 20%, rgba(217, 164, 65, .30), transparent 26%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 58%, rgba(134, 23, 43, .92));
    box-shadow: 0 30px 76px rgba(15, 23, 42, .20);
}

.contact-modern-hero-card::after {
    content: "";
    position: absolute;
    right: -82px;
    bottom: -96px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 38px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.contact-modern-hero-content,
.contact-modern-hero-box {
    position: relative;
    z-index: 2;
}

.contact-modern-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.contact-modern-kicker,
.contact-modern-map-head span,
.contact-modern-card span,
.contact-modern-hero-box span {
    display: inline-flex;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-modern-kicker {
    padding: 9px 13px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.contact-modern-hero h1 {
    margin-top: 18px;
    color: white;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
}

.contact-modern-hero p {
    max-width: 600px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
}

.contact-modern-hero-box {
    align-self: center;
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .16);
    backdrop-filter: blur(16px);
}

.contact-modern-hero-box span {
    padding: 7px 10px;
    color: #251604;
    background: #f6d878;
}

.contact-modern-hero-box strong {
    color: white;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.7px;
}

.contact-modern-hero-box p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.65;
}

.contact-modern-info-section {
    padding: 18px 0 20px;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contact-modern-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 178px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-modern-card:hover {
    transform: translateY(-5px);
    border-color: rgba(134, 23, 43, .18);
    box-shadow: 0 28px 66px rgba(15, 23, 42, .13);
}

.contact-modern-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -46px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .13);
    pointer-events: none;
}

.contact-modern-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: white;
    font-size: 22px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
    box-shadow: 0 14px 28px rgba(134, 23, 43, .18);
}

.contact-modern-card span {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: var(--bordo);
}

.contact-modern-card strong,
.contact-modern-card a {
    position: relative;
    z-index: 1;
    color: var(--lacivert);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
    word-break: break-word;
}

.contact-modern-card a:hover {
    color: var(--bordo);
}

.contact-modern-card-wide {
    grid-column: span 1;
}

.contact-modern-map-section {
    padding: 22px 0 64px;
}

.contact-modern-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.contact-modern-map-head span {
    margin-bottom: 8px;
    color: var(--bordo);
}

.contact-modern-map-head h2 {
    color: var(--lacivert);
    font-size: clamp(28px, 3.8vw, 46px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.contact-modern-map-head p {
    max-width: 460px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.contact-modern-map-card {
    overflow: hidden;
    padding: 14px;
    border-radius: 32px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .12);
    backdrop-filter: blur(14px);
}

.contact-modern-map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 24px;
}

.contact-modern-map-empty {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 34px;
    border-radius: 24px;
    text-align: center;
    background: #f8fafc;
    border: 1px dashed rgba(16, 32, 51, .18);
}

.contact-modern-map-empty h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.contact-modern-map-empty p {
    max-width: 440px;
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width:1100px) {
    .contact-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .contact-modern-hero-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-modern-map-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width:620px) {
    .contact-modern-hero {
        padding-top: 24px;
    }

    .contact-modern-hero-card {
        border-radius: 28px;
        padding: 24px;
    }

    .contact-modern-hero h1 {
        letter-spacing: -2px;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-modern-card {
        min-height: 150px;
    }

    .contact-modern-map-card iframe {
        min-height: 330px;
    }
}


/* ================================
   Bağlantılar Sayfası - Modern Tasarım
   Sadece .links-modern-* alanlarını etkiler.
   ================================ */
.links-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(217, 164, 65, .18), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(15, 108, 141, .12), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 46%, #f3eee6 100%);
}

.links-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .26;
    background-image:
        linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
    background-size: 66px 66px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 52%);
}

.links-modern-hero,
.links-modern-section {
    position: relative;
    z-index: 1;
}

.links-modern-hero {
    padding: 34px 0 22px;
}

.links-modern-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
    align-items: stretch;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .72);
    color: white;
    background:
        radial-gradient(circle at 80% 12%, rgba(217, 164, 65, .32), transparent 28%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 55%, rgba(134, 23, 43, .92));
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.links-modern-panel::after {
    content: "";
    position: absolute;
    right: -86px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.links-modern-copy,
.links-modern-summary {
    position: relative;
    z-index: 2;
}

.links-modern-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.links-modern-kicker,
.links-modern-overline {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.links-modern-kicker {
    gap: 9px;
    padding: 9px 13px;
    color: #fff7d6;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(14px);
}

.links-modern-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(217, 164, 65, .16);
}

.links-modern-copy h1 {
    margin-top: 18px;
    color: white;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
}

.links-modern-copy p {
    max-width: 660px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.68;
}

.links-modern-summary {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .15);
    backdrop-filter: blur(16px);
}

.links-modern-summary-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #251604;
    background: var(--gold);
    font-size: 25px;
    font-weight: 950;
}

.links-modern-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.links-modern-summary-row span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 850;
}

.links-modern-summary-row strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.links-modern-summary-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #251604;
    background: var(--gold);
    font-weight: 950;
}

.links-modern-section {
    padding: 26px 0 68px;
}

.links-modern-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.links-modern-overline {
    margin-bottom: 8px;
    color: var(--bordo);
}

.links-modern-toolbar h2 {
    color: var(--lacivert);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.links-modern-toolbar p {
    margin-top: 9px;
    color: var(--muted);
    line-height: 1.55;
}

.links-modern-toolbar p strong {
    color: var(--bordo);
}

.links-modern-search {
    flex: 0 0 min(390px, 100%);
    display: grid;
    gap: 8px;
}

.links-modern-search span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.links-modern-search input {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(16, 32, 51, .11);
    border-radius: 22px;
    outline: none;
    padding: 0 18px;
    color: var(--text);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.links-modern-search input:focus {
    border-color: rgba(134, 23, 43, .44);
    box-shadow: 0 0 0 5px rgba(134, 23, 43, .08), 0 22px 50px rgba(15, 23, 42, .1);
    transform: translateY(-1px);
}

.links-modern-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.links-modern-filters {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 10px;
}

.links-modern-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    width: 100%;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 18px;
    padding: 0 15px;
    background: rgba(255, 255, 255, .78);
    color: var(--lacivert);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
    transition: .22s ease;
}

.links-modern-filter span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.links-modern-filter strong {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
    font-size: 13px;
}

.links-modern-filter:hover,
.links-modern-filter.active {
    transform: translateY(-2px);
    border-color: rgba(134, 23, 43, .2);
    background: var(--bordo);
    color: white;
    box-shadow: var(--shadow);
}

.links-modern-filter:hover strong,
.links-modern-filter.active strong {
    color: #251604;
    background: var(--gold);
}

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

.links-modern-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 235px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(16, 32, 51, .09);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .075);
    backdrop-filter: blur(14px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.links-modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(217, 164, 65, .16), transparent 46%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.links-modern-card:hover {
    transform: translateY(-7px);
    border-color: rgba(134, 23, 43, .22);
    box-shadow: 0 28px 68px rgba(15, 23, 42, .14);
}

.links-modern-card:hover::before {
    opacity: 1;
}

.links-modern-card.is-disabled {
    cursor: default;
    opacity: .82;
}

.links-modern-card-head,
.links-modern-card h3,
.links-modern-card p,
.links-modern-card-foot {
    position: relative;
    z-index: 2;
}

.links-modern-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.links-modern-logo {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, var(--lacivert), var(--bordo));
    box-shadow: 0 14px 28px rgba(134, 23, 43, .2);
    font-size: 24px;
    font-weight: 950;
}

.links-modern-card-head span {
    min-width: 0;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--bordo);
    background: rgba(134, 23, 43, .08);
    font-size: 12px;
    font-weight: 950;
}

.links-modern-card h3 {
    color: var(--lacivert);
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.6px;
}

.links-modern-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}

.links-modern-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
}

.links-modern-card-foot small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.links-modern-card-foot strong {
    color: var(--bordo);
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
}

.links-modern-empty {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    border: 1px dashed rgba(16, 32, 51, .2);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.links-modern-empty h3 {
    color: var(--lacivert);
    margin-bottom: 8px;
}

.links-modern-empty p {
    color: var(--muted);
}

.links-modern-empty[hidden] {
    display: none !important;
}

@media(max-width:1100px) {
    .links-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:900px) {
    .links-modern-panel,
    .links-modern-layout {
        grid-template-columns: 1fr;
    }

    .links-modern-summary {
        grid-template-columns: 72px repeat(2, 1fr);
        align-items: center;
    }

    .links-modern-summary-btn {
        grid-column: 1 / -1;
    }

    .links-modern-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .links-modern-search {
        flex-basis: auto;
        width: 100%;
    }

    .links-modern-filters {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .links-modern-hero {
        padding-top: 24px;
    }

    .links-modern-panel {
        border-radius: 28px;
        padding: 22px;
    }

    .links-modern-copy h1 {
        letter-spacing: -2px;
    }

    .links-modern-summary,
    .links-modern-filters,
    .links-modern-grid {
        grid-template-columns: 1fr;
    }

    .links-modern-card {
        min-height: 220px;
        border-radius: 24px;
    }
}

/* ================================
   Sosyal Medya Sayfası - Sade Modern Tasarım
   Sadece sosyal-medya.php içindeki .social-modern-* class'larını etkiler.
   ================================ */
.social-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(217, 164, 65, .16), transparent 28%),
        radial-gradient(circle at 94% 0%, rgba(134, 23, 43, .10), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 58%, #f4eee6 100%);
}

.social-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .32;
    background-image:
        linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 58%);
}

.social-modern-hero,
.social-modern-section {
    position: relative;
    z-index: 1;
}

.social-modern-hero {
    padding: 42px 0 22px;
}

.social-modern-panel {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    padding: clamp(28px, 4.8vw, 54px);
    border-radius: 38px;
    color: white;
    background:
        radial-gradient(circle at 82% 18%, rgba(217, 164, 65, .28), transparent 28%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 56%, rgba(134, 23, 43, .92));
    box-shadow: 0 30px 78px rgba(15, 23, 42, .18);
}

.social-modern-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 44px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.social-modern-kicker {
    display: inline-flex;
    width: max-content;
    margin-bottom: 16px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff2bc;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modern-panel h1 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: white;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
}

.social-modern-panel p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
}

.social-modern-section {
    padding: 18px 0 66px;
}

.social-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.social-modern-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 32, 51, .09);
    box-shadow: 0 20px 52px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.social-modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(217, 164, 65, .12), transparent 46%, rgba(134, 23, 43, .08));
    transition: opacity .24s ease;
}

.social-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 23, 43, .2);
    box-shadow: 0 30px 72px rgba(15, 23, 42, .14);
}

.social-modern-card:hover::before {
    opacity: 1;
}

.social-modern-label,
.social-modern-card h2,
.social-modern-card p,
.social-modern-url,
.social-modern-card strong {
    position: relative;
    z-index: 1;
}

.social-modern-label {
    display: inline-flex;
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(134, 23, 43, .08);
    color: var(--bordo);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.social-modern-card h2 {
    margin-top: 18px;
    color: var(--lacivert);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.social-modern-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.social-modern-url {
    margin-top: 22px;
    padding: 13px 15px;
    border-radius: 18px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 850;
    word-break: break-word;
}

.social-modern-card strong {
    display: inline-flex;
    width: max-content;
    margin-top: 20px;
    color: var(--bordo);
    font-weight: 950;
}

@media(max-width:980px) {
    .social-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:620px) {
    .social-modern-hero {
        padding-top: 26px;
    }

    .social-modern-panel {
        min-height: 0;
        border-radius: 28px;
        padding: 26px;
    }

    .social-modern-panel h1 {
        letter-spacing: -2px;
    }

    .social-modern-grid {
        grid-template-columns: 1fr;
    }

    .social-modern-card {
        border-radius: 26px;
        padding: 24px;
    }
}

/* ================================
   Haber / Duyuru Detay Sayfaları
   Sadece .detail-modern-* class'ları kullanır
   ================================ */
.detail-modern-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(217, 164, 65, .16), transparent 28%),
        radial-gradient(circle at 92% 0%, rgba(134, 23, 43, .10), transparent 26%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2eb 46%, #f4efe7 100%);
}

.detail-modern-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .30;
    background-image:
        linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
    background-size: 66px 66px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 58%);
}

.detail-modern-hero,
.detail-modern-body-section {
    position: relative;
    z-index: 1;
}

.detail-modern-hero {
    padding: 34px 0 18px;
}

.detail-modern-back {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 42px;
    margin-bottom: 16px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(16, 32, 51, .08);
    color: var(--lacivert);
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.detail-modern-back:hover {
    transform: translateY(-2px);
    color: var(--bordo);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

.detail-modern-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    gap: clamp(22px, 4vw, 42px);
    align-items: stretch;
    min-height: 390px;
    padding: clamp(24px, 4.2vw, 48px);
    border-radius: 38px;
    color: white;
    border: 1px solid rgba(255, 255, 255, .64);
    background:
        radial-gradient(circle at 78% 18%, rgba(217, 164, 65, .28), transparent 27%),
        linear-gradient(135deg, rgba(16, 32, 51, .98), rgba(95, 15, 29, .96) 55%, rgba(134, 23, 43, .92));
    box-shadow: 0 34px 86px rgba(15, 23, 42, .20);
}

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

.detail-modern-panel::before {
    width: 420px;
    height: 420px;
    top: -210px;
    right: 18%;
    background: rgba(217, 164, 65, .24);
    filter: blur(18px);
}

.detail-modern-panel::after {
    width: 300px;
    height: 300px;
    right: -90px;
    bottom: -100px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
}

.detail-modern-copy,
.detail-modern-media {
    position: relative;
    z-index: 2;
}

.detail-modern-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
}

.detail-modern-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 16px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff7d6;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-modern-copy h1 {
    max-width: 880px;
    color: #fff;
    font-size: clamp(36px, 5.2vw, 68px);
    line-height: .96;
    letter-spacing: -2.8px;
}

.detail-modern-date {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 20px;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 14px;
    font-weight: 900;
}

.detail-modern-media {
    overflow: hidden;
    min-height: 300px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(217, 164, 65, .92), rgba(134, 23, 43, .88));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .22);
}

.detail-modern-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-modern-media.is-empty {
    display: grid;
    place-items: center;
    isolation: isolate;
}

.detail-modern-media.is-empty::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .24);
}

.detail-modern-media.is-empty span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.detail-modern-body-section {
    padding: 18px 0 64px;
}

.detail-modern-content-card {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 34px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .10);
    backdrop-filter: blur(14px);
}

.detail-modern-content {
    color: #334155;
    font-size: 17px;
    line-height: 1.92;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media(max-width:980px) {
    .detail-modern-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .detail-modern-media {
        min-height: 280px;
    }
}

@media(max-width:620px) {
    .detail-modern-hero {
        padding-top: 24px;
    }

    .detail-modern-panel,
    .detail-modern-content-card {
        border-radius: 26px;
    }

    .detail-modern-panel {
        padding: 22px;
    }

    .detail-modern-copy h1 {
        letter-spacing: -1.8px;
    }

    .detail-modern-media {
        min-height: 220px;
        border-radius: 22px;
    }

    .detail-modern-content {
        font-size: 16px;
        line-height: 1.82;
    }
}

/* Puan Durumu - Üst kart küçültme */
.standings-hero-section {
    padding: 24px 0 20px;
}

.standings-hero-panel {
    min-height: 360px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 32px;
    gap: clamp(18px, 3vw, 30px);
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
}

.standings-hero-panel::before {
    width: 330px;
    height: 330px;
    top: -160px;
}

.standings-hero-panel::after {
    width: 220px;
    height: 220px;
    right: -75px;
    bottom: -75px;
}

.standings-hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: .94;
    letter-spacing: -2.6px;
}

.standings-hero-copy p {
    margin-top: 14px;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    max-width: 570px;
}

.standings-hero-actions {
    margin-top: 22px;
}

.standings-primary-btn,
.standings-mini-note {
    min-height: 46px;
}

.standings-summary-card {
    padding: clamp(20px, 2.4vw, 26px);
    border-radius: 26px;
}

.standings-summary-card h2 {
    margin-top: 15px;
    font-size: clamp(24px, 2.5vw, 32px);
    letter-spacing: -1px;
}

.standings-summary-grid {
    margin-top: 20px;
    gap: 12px;
}

.standings-summary-grid div {
    min-height: 84px;
    padding: 14px;
    border-radius: 18px;
}

.standings-summary-grid strong {
    font-size: clamp(19px, 2vw, 26px);
}

@media(max-width:1100px) {
    .standings-hero-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }
}

@media(max-width:620px) {
    .standings-hero-section {
        padding-top: 18px;
    }

    .standings-hero-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .standings-hero-copy h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .standings-summary-grid div {
        min-height: auto;
    }
}

.docs-hero-section {
    padding: 24px 0 20px;
}

.docs-hero-panel {
    min-height: 360px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 32px;
    gap: clamp(18px, 3vw, 30px);
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .58fr);
}

.docs-hero-panel::before {
    width: 330px;
    height: 330px;
    top: -160px;
    right: 18%;
}

.docs-hero-panel::after {
    width: 220px;
    height: 220px;
    right: -75px;
    bottom: -75px;
}

.docs-hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: .94;
    letter-spacing: -2.6px;
}

.docs-hero-copy p {
    margin-top: 14px;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    max-width: 570px;
}

.docs-hero-actions {
    margin-top: 22px;
}

.docs-primary-btn,
.docs-mini-note {
    min-height: 46px;
}

.docs-mini-note {
    padding: 7px 14px;
}

.docs-mini-note strong {
    font-size: 18px;
}

.docs-hero-card {
    min-height: 300px;
    padding: clamp(18px, 2.4vw, 26px);
    border-radius: 26px;
}

.docs-hero-icon {
    width: 60px;
    height: 60px;
    margin-top: 18px;
    border-radius: 20px;
    font-size: 30px;
}

.docs-hero-card h2 {
    margin-top: 16px;
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: -1px;
}

.docs-hero-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
}

.docs-hero-stats {
    padding-top: 18px;
    gap: 8px;
}

.docs-hero-stats div {
    min-height: 72px;
    padding: 12px;
    border-radius: 16px;
}

.docs-hero-stats strong {
    font-size: clamp(18px, 1.8vw, 24px);
}

.docs-hero-stats span {
    margin-top: 6px;
    font-size: 11px;
}

@media(max-width:1100px) {
    .docs-hero-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .docs-hero-card {
        min-height: 0;
    }
}

@media(max-width:680px) {
    .docs-hero-section {
        padding-top: 18px;
    }

    .docs-hero-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .docs-hero-copy h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .docs-hero-stats {
        grid-template-columns: 1fr;
    }

    .docs-hero-stats div {
        min-height: auto;
    }
}

/* Duyurular Sayfası - Üst kart küçültme */
.ann-hero-section {
    padding: 24px 0 20px;
}

.ann-hero-panel {
    min-height: 360px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 32px;
    gap: clamp(18px, 3vw, 30px);
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .58fr);
}

.ann-hero-panel::before {
    width: 330px;
    height: 330px;
    top: -160px;
    right: 18%;
}

.ann-hero-panel::after {
    width: 220px;
    height: 220px;
    right: -75px;
    bottom: -75px;
}

.ann-hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: .94;
    letter-spacing: -2.6px;
}

.ann-hero-copy p {
    margin-top: 14px;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    max-width: 570px;
}

.ann-hero-actions {
    margin-top: 22px;
}

.ann-primary-btn {
    min-height: 46px;
    padding: 0 19px;
}

.ann-mini-note {
    font-size: 12px;
}

.ann-latest-card {
    border-radius: 26px;
}

.ann-latest-card a,
.ann-latest-empty {
    min-height: 300px;
    padding: clamp(18px, 2.4vw, 26px);
}

.ann-latest-icon {
    width: 60px;
    height: 60px;
    margin-top: 18px;
    border-radius: 20px;
    font-size: 30px;
}

.ann-latest-card time {
    margin-top: 16px;
    font-size: 12px;
}

.ann-latest-card h2,
.ann-latest-empty h2 {
    margin-top: 10px;
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: -1px;
}

.ann-latest-card p,
.ann-latest-empty p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
}

.ann-latest-card strong {
    padding-top: 16px;
}

@media(max-width:1100px) {
    .ann-hero-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .ann-latest-card a,
    .ann-latest-empty {
        min-height: 0;
    }
}

@media(max-width:680px) {
    .ann-hero-section {
        padding-top: 18px;
    }

    .ann-hero-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .ann-hero-copy h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .ann-latest-card {
        border-radius: 24px;
    }
}

/* Fikstür Sayfası - Üst kart küçültme */
.fixture-hero-section {
    padding: 24px 0 18px;
}

.fixture-hero-section::before {
    width: 300px;
    height: 300px;
    right: -130px;
    top: -120px;
}

.fixture-hero-panel {
    padding: clamp(20px, 3vw, 34px);
    border-radius: 32px;
    gap: clamp(16px, 2.6vw, 26px);
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, .56fr);
}

.fixture-hero-panel::after {
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -90px;
}

.fixture-kicker {
    padding: 7px 12px;
    font-size: 11px;
}

.fixture-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: .94;
    letter-spacing: -2.6px;
}

.fixture-hero-copy p {
    max-width: 560px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.fixture-filter-form {
    margin-top: 20px;
}

.fixture-filter-grid {
    gap: 10px;
}

.fixture-filter-field label {
    font-size: 11px;
}

.fixture-filter-field select,
.fixture-filter-grid button {
    min-height: 44px;
    border-radius: 14px;
}

.fixture-hero-card {
    min-height: 235px;
    padding: 20px;
    border-radius: 24px;
}

.fixture-card-label {
    padding: 7px 10px;
    font-size: 11px;
}

.fixture-hero-card h2 {
    margin-top: 16px;
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.fixture-hero-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.fixture-hero-stats {
    gap: 8px;
    margin-top: 16px;
}

.fixture-hero-stats div {
    padding: 11px 9px;
    border-radius: 15px;
}

.fixture-hero-stats strong {
    font-size: 22px;
}

.fixture-hero-stats span {
    margin-top: 5px;
    font-size: 11px;
}

@media(max-width:980px) {
    .fixture-hero-panel {
        grid-template-columns: 1fr;
    }

    .fixture-hero-card {
        min-height: 0;
    }
}

@media(max-width:620px) {
    .fixture-hero-section {
        padding-top: 18px;
    }

    .fixture-hero-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .fixture-hero-copy h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .fixture-hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Yönetim Kurulu Sayfası - Üst kart küçültme */
.board-hero-section {
    padding: 22px 0 12px;
}

.board-hero-panel {
    min-height: 310px;
    padding: clamp(20px, 2.6vw, 32px);
    border-radius: 30px;
    gap: clamp(16px, 2.4vw, 24px);
    grid-template-columns: minmax(0, 1.18fr) minmax(270px, .52fr);
}

.board-hero-panel::before {
    width: 320px;
    height: 320px;
    top: -155px;
    right: 18%;
}

.board-hero-panel::after {
    width: 210px;
    height: 210px;
    right: -70px;
    bottom: -75px;
}

.board-kicker {
    padding: 7px 12px;
    font-size: 11px;
}

.board-kicker i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(217, 164, 65, .14);
}

.board-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: .95;
    letter-spacing: -2.3px;
}

.board-hero-copy p {
    max-width: 540px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
}

.board-hero-actions {
    margin-top: 18px;
}

.board-primary-btn {
    min-height: 44px;
    padding: 0 18px;
}

.board-spotlight-card {
    border-radius: 24px;
}

.board-spotlight-media {
    min-height: 150px;
    height: 160px;
}

.board-spotlight-content,
.board-spotlight-empty {
    padding: 18px;
}

.board-spotlight-content span,
.board-spotlight-empty span {
    font-size: 11px;
}

.board-spotlight-content h2,
.board-spotlight-empty h2 {
    margin-top: 8px;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.board-spotlight-content p,
.board-spotlight-empty p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.45;
}

@media(max-width:1100px) {
    .board-hero-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .board-spotlight-card {
        display: grid;
        grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
    }

    .board-spotlight-media {
        min-height: 180px;
        height: auto;
    }
}

@media(max-width:680px) {
    .board-hero-section {
        padding-top: 18px;
    }

    .board-hero-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .board-hero-copy h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .board-spotlight-card {
        display: flex;
        flex-direction: column;
        border-radius: 24px;
    }

    .board-spotlight-media {
        min-height: 170px;
        height: 190px;
    }
}

.decisions-card.is-filter-hidden,
.decisions-grid[hidden],
.decisions-empty[hidden] {
    display: none !important;
}

.decisions-empty.is-visible {
    display: block;
}

.compact-fixture-page {
    padding: 40px 0;
}

.compact-fixture-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.compact-fixture-header h1 {
    margin: 6px 0;
}

.compact-fixture-filter {
    display: flex;
    gap: 10px;
}

.compact-fixture-filter select {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
}

.compact-fixture-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.compact-fixture-stats div {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.compact-fixture-stats strong {
    display: block;
    font-size: 24px;
}

.compact-fixture-stats span {
    color: #666;
    font-size: 13px;
}

.compact-fixture-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-fixture-row {
    display: grid;
    grid-template-columns: 100px 120px 1fr 180px 100px;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.fixture-week {
    font-weight: 700;
    color: #86172b;
}

.fixture-date strong,
.fixture-date span {
    display: block;
}

.fixture-date span {
    color: #666;
    font-size: 13px;
}

.fixture-teams {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.fixture-teams strong:first-child {
    text-align: right;
}

.fixture-teams strong:last-child {
    text-align: left;
}

.fixture-teams span {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 8px;
    font-weight: 800;
}

.fixture-stadium {
    color: #555;
    font-size: 14px;
}

.fixture-status {
    text-align: center;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
}

.fixture-status.played {
    background: #e8f7ee;
    color: #198754;
}

.fixture-status.upcoming {
    background: #fff3cd;
    color: #8a6d00;
}

@media (max-width: 900px) {
    .compact-fixture-header {
        flex-direction: column;
        align-items: stretch;
    }

    .compact-fixture-filter {
        flex-direction: column;
    }

    .compact-fixture-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .compact-fixture-row {
        grid-template-columns: 1fr;
    }

    .fixture-teams {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .fixture-teams strong:first-child,
    .fixture-teams strong:last-child {
        text-align: left;
    }
}



/* =========================================================
   Ana Sayfa - Minimal Son Duyurular ve Son Kararlar
   ========================================================= */
.home-updates-section {
    padding: 6px 0 42px;
}

.home-updates-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.home-updates-kicker {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--bordo);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-updates-heading h2 {
    color: var(--lacivert);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -1.1px;
}

.home-updates-heading > p {
    max-width: 430px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    text-align: right;
}

.home-updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-update-panel {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
    height: 30px;
}

.home-update-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 18px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
}

.home-update-title-wrap {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.home-update-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 13px;
    color: #fff;
    background: var(--bordo);
    font-size: 17px;
    font-weight: 950;
}

.home-decision-panel .home-update-icon {
    background: var(--lacivert);
}

.home-update-panel-head small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-update-panel-head h3 {
    color: var(--lacivert);
    font-size: 18px;
    line-height: 1.1;
}

.home-update-panel-head > a {
    flex-shrink: 0;
    color: var(--bordo);
    font-size: 12px;
    font-weight: 950;
}

.home-update-list {
    display: grid;
}

.home-update-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(16, 32, 51, .065);
    transition: background .18s ease, padding-left .18s ease;
}

.home-update-row:last-child {
    border-bottom: 0;
}

.home-update-row:hover {
    padding-left: 21px;
    background: rgba(134, 23, 43, .045);
}

.home-update-row time {
    color: var(--bordo);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.home-decision-panel .home-update-row time {
    color: var(--lacivert);
}

.home-update-row > span {
    min-width: 0;
    overflow: hidden;
    color: #263548;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-update-row > span small {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-update-row > b {
    color: var(--bordo);
    font-size: 15px;
    text-align: right;
    transition: transform .18s ease;
}

.home-update-row:hover > b {
    transform: translateX(3px);
}

.home-update-empty {
    padding: 24px 18px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 820px) {
    .home-updates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .home-updates-section {
        padding-top: 0;
    }

    .home-updates-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .home-updates-heading > p {
        text-align: left;
    }

    .home-update-panel {
        border-radius: 19px;
    }

    .home-update-row {
        grid-template-columns: 72px minmax(0, 1fr) 16px;
        gap: 9px;
        padding: 10px 14px;
    }

    .home-update-row:hover {
        padding-left: 16px;
    }
}


/* =========================================================
   Ana Sayfa - Atatürk kartı kompakt görünüm ve yeni akış
   Sıra: Atatürk kartı > Duyuru/Karar > Haber sliderı
   ========================================================= */
.ataturk-section {
    padding: 22px 0 8px;
}

.ataturk-split-card {
    min-height: 205px;
    border-radius: 20px;
}

.ataturk-left {
    gap: 20px;
    padding: 24px 28px;
}

.ataturk-image {
    flex: 0 0 118px;
    width: 118px;
    height: 150px;
    border-radius: 15px;
}

.ataturk-content blockquote {
    font-size: 21px;
    line-height: 1.3;
}

.ataturk-sign {
    margin-top: 11px;
    font-size: 14px;
}

.ataturk-right {
    min-height: 205px;
}

.home-updates-section {
    padding-top: 18px;
    padding-bottom: 30px;
}

.home-updates-section + .hero {
    padding-top: 4px;
}

@media (max-width: 900px) {
    .ataturk-split-card {
        min-height: 0;
    }

    .ataturk-left {
        gap: 15px;
        padding: 22px 18px;
    }

    .ataturk-image {
        width: 105px;
        height: 132px;
    }

    .ataturk-content blockquote {
        font-size: 18px;
    }

    .ataturk-right {
        min-height: 160px;
        max-height: 190px;
    }
}

@media (max-width: 620px) {
    .ataturk-section {
        padding-top: 16px;
    }

    .ataturk-left {
        flex-direction: row;
        text-align: left;
        padding: 18px 15px;
    }

    .ataturk-image {
        flex: 0 0 88px;
        width: 88px;
        height: 112px;
        border-radius: 13px;
    }

    .ataturk-content blockquote {
        font-size: 16px;
        line-height: 1.28;
    }

    .ataturk-sign {
        margin-top: 8px;
        font-size: 12px;
    }

    .ataturk-right {
        min-height: 135px;
        max-height: 160px;
    }

    .home-updates-section {
        padding-top: 14px;
        padding-bottom: 24px;
    }
}



/* =========================================================
   ANA SAYFA ÜST YERLEŞİMİ
   Kararlar | Atatürk kartı + Haberler | Duyurular
   Yalnızca index.php içindeki yeni ana sayfa sınıflarını etkiler.
   ========================================================= */
.home-top-section {
    padding: 28px 0 38px;
}

.home-top-container {
    width: calc(100% - 20px);
    max-width: 1880px;
    margin: 0 auto;
}

.home-top-grid {
    display: grid;
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) minmax(220px, 250px);
    gap: 5px;
    align-items: stretch;
}

.home-top-grid > * {
    min-width: 0;
}

.home-center-column {
    display: grid;
    grid-template-rows: 224px minmax(410px, 1fr);
    gap: 18px;
    min-width: 0;
}

.home-top-grid .home-side-panel {
    height: 100%;
    min-height: 652px;
    display: flex;
    flex-direction: column;
}

.home-top-grid .home-side-panel .home-update-list {
    flex: 1;
}

.home-center-column .ataturk-split-card {
    min-height: 0;
    height: 224px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    border-radius: 24px;
}

.home-center-column .ataturk-left {
    gap: 18px;
    padding: 22px;
}

.home-center-column .ataturk-image {
    flex: 0 0 118px;
    width: 118px;
    height: 156px;
    border-radius: 15px;
}

.home-center-column .ataturk-content {
    padding: 0;
}

.home-center-column .ataturk-content blockquote {
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.34;
}

.home-center-column .ataturk-sign {
    margin-top: 12px;
    font-size: 14px;
}

.home-center-column .ataturk-right {
    min-height: 0;
    height: 224px;
    max-height: none;
}

.home-center-column .ataturk-right img {
    object-fit: contain !important;
    object-position: center;
    background: linear-gradient(135deg, #102033, #86172b);
}

.home-news-panel,
.home-news-panel .hero-slider,
.home-news-panel .hero-box {
    min-height: 410px;
    height: 100%;
}

.home-news-panel {
    min-width: 0;
}

.home-news-panel .hero-box {
    border-radius: 24px;
    padding: 38px 44px;
}

.home-news-panel .hero h1,
.home-news-panel h1 {
    font-size: clamp(28px, 3vw, 43px);
    max-width: 660px;
}

.home-news-panel .hero-nav {
    width: 42px;
    height: 42px;
}

@media (max-width: 1080px) {
    .home-top-container {
        width: calc(100% - 16px);
    }

    .home-top-grid {
        grid-template-columns: minmax(190px, 215px) minmax(0, 1fr) minmax(190px, 215px);
        gap: 12px;
    }

    .home-center-column {
        grid-template-rows: 210px minmax(390px, 1fr);
        gap: 14px;
    }

    .home-top-grid .home-side-panel {
        min-height: 614px;
    }

    .home-center-column .ataturk-split-card,
    .home-center-column .ataturk-right {
        height: 210px;
    }

    .home-center-column .ataturk-left {
        padding: 18px;
    }

    .home-center-column .ataturk-image {
        flex-basis: 98px;
        width: 98px;
        height: 132px;
    }

    .home-news-panel,
    .home-news-panel .hero-slider,
    .home-news-panel .hero-box {
        min-height: 390px;
    }
}

@media (max-width: 900px) {
    .home-top-container {
        width: min(100% - 24px, 860px);
    }

    .home-top-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .home-center-column {
        grid-column: 1 / -1;
        grid-row: 1;
        grid-template-rows: auto auto;
    }

    .home-top-grid .home-decision-panel {
        grid-column: 1;
        grid-row: 2;
    }

    .home-top-grid .home-announcement-panel {
        grid-column: 2;
        grid-row: 2;
    }

    .home-top-grid .home-side-panel {
        min-height: 0;
        height: auto;
    }

    .home-center-column .ataturk-split-card {
        height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .home-center-column .ataturk-left {
        flex-direction: row;
        text-align: left;
    }

    .home-center-column .ataturk-right {
        height: auto;
        min-height: 190px;
    }
}

@media (max-width: 620px) {
    .home-top-section {
        padding: 18px 0 26px;
    }

    .home-top-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-center-column,
    .home-top-grid .home-decision-panel,
    .home-top-grid .home-announcement-panel {
        grid-column: 1;
        grid-row: auto;
    }

    .home-center-column .ataturk-split-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .home-center-column .ataturk-left {
        padding: 17px 15px;
    }

    .home-center-column .ataturk-image {
        flex: 0 0 86px;
        width: 86px;
        height: 112px;
    }

    .home-center-column .ataturk-content blockquote {
        font-size: 16px;
    }

    .home-center-column .ataturk-right {
        min-height: 150px;
    }

    .home-news-panel,
    .home-news-panel .hero-slider,
    .home-news-panel .hero-box {
        min-height: 420px;
    }

    .home-news-panel .hero-box {
        padding: 28px 24px;
        border-radius: 20px;
    }
}

/* Ana sayfa: Yalnızca Kararlar ve Duyurular kartlarının yüksekliğini içerik kadar tutar. */
@media (min-width: 901px) {
    .home-top-grid > .home-side-panel {
        align-self: start !important;
        height: max-content !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .home-top-grid > .home-side-panel .home-update-list {
        flex: 0 0 auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
}


/* =========================================================
   ANA SAYFA YENİ YERLEŞİMİ
   Üstte tam genişlik Atatürk kartı
   Altta Kararlar | Haberler | Duyurular aynı hizada
   ========================================================= */
.home-ataturk-full {
    
    margin-bottom: 18px;
    margin-left: 120px;
    margin-right: 120px;
}

.home-ataturk-full .ataturk-split-card {
    width: 100%;
    min-height: 0;
    height: 224px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    border-radius: 24px;
}

.home-ataturk-full .ataturk-left {
    gap: 18px;
    padding: 22px;
}

.home-ataturk-full .ataturk-image {
    flex: 0 0 118px;
    width: 118px;
    height: 156px;
    border-radius: 15px;
}

.home-ataturk-full .ataturk-content {
    padding: 0;
}

.home-ataturk-full .ataturk-content blockquote {
    font-size: clamp(27px, 1.55vw, 23px);
    line-height: 1.34;
}

.home-ataturk-full .ataturk-sign {
    margin-top: 12px;
    font-size: 14px;
}

.home-ataturk-full .ataturk-right {
    min-height: 0;
    height: 224px;
    max-height: none;
}

.home-ataturk-full .ataturk-right img {
    object-fit: contain !important;
    object-position: center;
    background: linear-gradient(135deg, #10203, #86172b);
}

.home-top-grid {
    align-items: start;
}

.home-center-column {
    display: block;
}

.home-center-column .home-news-panel,
.home-center-column .home-news-panel .hero-slider,
.home-center-column .home-news-panel .hero-box {
    height: 100%;
    min-height: 410px;
}

.home-top-grid > .home-side-panel {
    align-self: start !important;
    height: auto !important;
    min-height: 0 !important;
}

@media (max-width: 1080px) {
    .home-ataturk-full .ataturk-split-card,
    .home-ataturk-full .ataturk-right {
        height: 210px;
    }

    .home-ataturk-full .ataturk-left {
        padding: 18px;
    }

    .home-ataturk-full .ataturk-image {
        flex-basis: 98px;
        width: 98px;
        height: 132px;
    }

    .home-center-column .home-news-panel,
    .home-center-column .home-news-panel .hero-slider,
    .home-center-column .home-news-panel .hero-box {
        min-height: 390px;
    }
}

@media (max-width: 900px) {
    .home-ataturk-full .ataturk-split-card {
        height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .home-ataturk-full .ataturk-left {
        flex-direction: row;
        text-align: left;
    }

    .home-ataturk-full .ataturk-right {
        height: auto;
        min-height: 190px;
    }

    .home-center-column {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .home-top-grid .home-decision-panel {
        grid-column: 1;
        grid-row: 2;
    }

    .home-top-grid .home-announcement-panel {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 620px) {
    .home-ataturk-full {
        margin-bottom: 14px;
    }

    .home-ataturk-full .ataturk-split-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .home-ataturk-full .ataturk-left {
        padding: 17px 15px;
    }

    .home-ataturk-full .ataturk-image {
        flex: 0 0 86px;
        width: 86px;
        height: 112px;
    }

    .home-ataturk-full .ataturk-content blockquote {
        font-size: 16px;
    }

    .home-ataturk-full .ataturk-right {
        min-height: 150px;
    }

    .home-center-column,
    .home-top-grid .home-decision-panel,
    .home-top-grid .home-announcement-panel {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Atatürk kartı genişlik ayarı */
.home-center-column .ataturk-split-card{
    width:96%;
    margin:0 auto;
}

/* =========================================================
   ANA SAYFA KARTLARI — PROFESYONEL YERLEŞİM
   Yalnızca Atatürk, haber sliderı, kararlar ve duyurular.
   ========================================================= */
.home-top-section {
    padding: 26px 0 42px;
}

.home-top-container {
    width: min(1360px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
}

/* Atatürk / resim / yazı kartı */
.home-ataturk-full {
    width: 100%;
    margin: 0 0 18px;
}

.home-ataturk-full .ataturk-split-card {
    width: 100%;
    height: 266px;
    min-height: 266px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .10);
}

.home-ataturk-full .ataturk-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 38px 24px 26px;
    background:
        radial-gradient(circle at 15% 18%, rgba(217, 164, 65, .13), transparent 32%),
        linear-gradient(135deg, #fff 0%, #fbfbfc 62%, #f3f5f8 100%);
}

.home-ataturk-full .ataturk-left::after {
    content: "“";
    position: absolute;
    left: 208px;
    top: 12px;
    color: rgba(217, 164, 65, .44);
    font-family: Georgia, serif;
    font-size: 78px;
    line-height: 1;
    pointer-events: none;
}

.home-ataturk-full .ataturk-image {
    flex: 0 0 150px;
    width: 150px;
    height: 202px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16, 32, 51, .10);
    background: #f4f4f4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

.home-ataturk-full .ataturk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) contrast(1.04);
}

.home-ataturk-full .ataturk-content {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 0;
}

.home-ataturk-full .ataturk-content blockquote {
    max-width: 610px;
    margin: 0;
    color: var(--lacivert);
    font-size: clamp(25px, 2.2vw, 36px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -.9px;
}

.home-ataturk-full .ataturk-sign {
    margin-top: 18px;
    color: var(--bordo);
    font-size: 15px;
    font-weight: 900;
}

.home-ataturk-full .ataturk-right {
    position: relative;
    height: 266px;
    min-height: 266px;
    overflow: hidden;
    background: linear-gradient(135deg, #102033, #86172b);
}

.home-ataturk-full .ataturk-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(16, 32, 51, .18), transparent 34%);
    pointer-events: none;
}

.home-ataturk-full .ataturk-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover !important;
    object-position: center;
    background: transparent;
}

/* Kararlar | Haber sliderı | Duyurular */
.home-top-grid {
    display: grid;
    grid-template-columns: minmax(245px, 270px) minmax(0, 1fr) minmax(245px, 270px);
    gap: 16px;
    align-items: stretch;
}

.home-center-column {
    min-width: 0;
    display: block;
}

.home-center-column .home-news-panel,
.home-center-column .home-news-panel .hero-slider,
.home-center-column .home-news-panel .hero-box {
    height: 460px;
    min-height: 460px;
}

.home-news-panel .hero-box {
    overflow: hidden;
    border-radius: 26px;
    padding: 44px 50px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .18);
    background-position: center;
    background-size: cover;
}

.home-news-panel .hero-box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(8, 24, 42, .24), transparent 68%);
    pointer-events: none;
}

.home-news-panel .eyebrow {
    padding: 9px 14px;
    margin-bottom: 20px;
    border-color: rgba(255, 255, 255, .25);
    background: rgba(134, 23, 43, .82);
    font-size: 12px;
    letter-spacing: .04em;
}

.home-news-panel h1 {
    max-width: 620px;
    color: #fff;
    font-size: clamp(34px, 3.7vw, 56px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .22);
}

.home-news-panel .hero-box p {
    max-width: 570px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
}

.home-news-panel .hero-actions {
    margin-top: 26px;
}

.home-news-panel .btn {
    min-height: 48px;
    padding: 0 22px;
}

.home-news-panel .btn-primary {
    background: var(--bordo);
    color: #fff;
    box-shadow: 0 12px 28px rgba(134, 23, 43, .30);
}

.home-news-panel .hero-nav {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(16, 32, 51, .55);
}

.home-news-panel .hero-prev { left: 18px; }
.home-news-panel .hero-next { right: 18px; }
.home-news-panel .hero-dots { bottom: 20px; }

/* Yan kartlar */
.home-top-grid > .home-side-panel {
    height: 460px !important;
    min-height: 460px !important;
    align-self: stretch !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .09);
}

.home-update-panel-head {
    min-height: 76px;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    background: linear-gradient(135deg, #102033, #162c45);
}

.home-announcement-panel .home-update-panel-head {
    background: linear-gradient(135deg, #86172b, #a31330);
}

.home-update-title-wrap {
    gap: 11px;
}

.home-update-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    font-size: 19px;
    font-weight: 900;
}

.home-update-panel-head small,
.home-update-panel-head h3,
.home-update-panel-head > a {
    color: #fff;
}

.home-update-panel-head small {
    opacity: .72;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-update-panel-head h3 {
    margin-top: 2px;
    font-size: 19px;
    line-height: 1.1;
}

.home-update-panel-head > a {
    font-size: 12px;
    font-weight: 900;
    opacity: .9;
}

.home-update-panel-head > a:hover {
    opacity: 1;
}

.home-top-grid > .home-side-panel .home-update-list {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.home-update-row {
    flex: 1 1 0;
    min-height: 0;
    grid-template-columns: 74px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(16, 32, 51, .075);
    background: #fff;
    transition: background .18s ease, transform .18s ease;
}

.home-update-row:last-child {
    border-bottom: 0;
}

.home-update-row:hover {
    padding-left: 14px;
    background: #f8fafc;
    transform: translateX(2px);
}

.home-update-row time {
    color: var(--bordo);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
}

.home-decision-panel .home-update-row time {
    color: var(--lacivert);
}

.home-update-row > span {
    min-width: 0;
    overflow: hidden;
    color: var(--lacivert);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-update-row > span small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.home-update-row b {
    color: var(--bordo);
    font-size: 15px;
}

.home-decision-panel .home-update-row b {
    color: var(--lacivert);
}

.home-update-empty {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1100px) {
    .home-top-container {
        width: min(100% - 28px, 1040px);
    }

    .home-ataturk-full .ataturk-split-card {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    }

    .home-ataturk-full .ataturk-left {
        padding-right: 26px;
    }

    .home-top-grid {
        grid-template-columns: minmax(220px, 245px) minmax(0, 1fr) minmax(220px, 245px);
        gap: 13px;
    }
}

@media (max-width: 900px) {
    .home-ataturk-full .ataturk-split-card {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
    }

    .home-ataturk-full .ataturk-left {
        min-height: 230px;
        padding: 22px;
    }

    .home-ataturk-full .ataturk-right {
        height: auto;
        min-height: 230px;
    }

    .home-ataturk-full .ataturk-image {
        flex-basis: 125px;
        width: 125px;
        height: 170px;
    }

    .home-ataturk-full .ataturk-left::after {
        left: 165px;
    }

    .home-top-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-center-column {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .home-center-column .home-news-panel,
    .home-center-column .home-news-panel .hero-slider,
    .home-center-column .home-news-panel .hero-box {
        height: 430px;
        min-height: 430px;
    }

    .home-top-grid .home-decision-panel,
    .home-top-grid .home-announcement-panel {
        height: 390px !important;
        min-height: 390px !important;
    }
}

@media (max-width: 620px) {
    .home-top-section {
        padding: 18px 0 28px;
    }

    .home-top-container {
        width: calc(100% - 24px);
    }

    .home-ataturk-full {
        margin-bottom: 14px;
    }

    .home-ataturk-full .ataturk-split-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .home-ataturk-full .ataturk-left {
        min-height: 0;
        gap: 16px;
        padding: 18px 16px;
    }

    .home-ataturk-full .ataturk-left::after {
        display: none;
    }

    .home-ataturk-full .ataturk-image {
        flex: 0 0 88px;
        width: 88px;
        height: 118px;
        border-radius: 14px;
    }

    .home-ataturk-full .ataturk-content blockquote {
        font-size: 17px;
        line-height: 1.3;
        letter-spacing: -.35px;
    }

    .home-ataturk-full .ataturk-sign {
        margin-top: 9px;
        font-size: 12px;
    }

    .home-ataturk-full .ataturk-right {
        min-height: 165px;
    }

    .home-top-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-center-column,
    .home-top-grid .home-decision-panel,
    .home-top-grid .home-announcement-panel {
        grid-column: 1;
        grid-row: auto;
    }

    .home-center-column .home-news-panel,
    .home-center-column .home-news-panel .hero-slider,
    .home-center-column .home-news-panel .hero-box {
        height: 420px;
        min-height: 420px;
    }

    .home-news-panel .hero-box {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .home-news-panel h1 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .home-top-grid .home-decision-panel,
    .home-top-grid .home-announcement-panel {
        height: 390px !important;
        min-height: 390px !important;
    }
}

/* =========================================================
   ANA SAYFA ORAN DÜZELTMESİ
   Atatürk kartı kırpılmadan, tüm parçaları orantılı küçültülür.
   Haber alanı genişletilir; yan kartlar hafif daraltılır.
   ========================================================= */
@media (min-width: 901px) {
    .home-ataturk-full .ataturk-split-card {
        height: 220px;
        min-height: 220px;
        grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    }

    .home-ataturk-full .ataturk-left {
        gap: 22px;
        padding: 18px 30px 18px 22px;
    }

    .home-ataturk-full .ataturk-left::after {
        left: 170px;
        top: 8px;
        font-size: 62px;
    }

    .home-ataturk-full .ataturk-image {
        flex: 0 0 122px;
        width: 122px;
        height: 164px;
        border-radius: 17px;
    }

    .home-ataturk-full .ataturk-image img {
        object-fit: contain;
        object-position: center;
        background: #f4f4f4;
    }

    .home-ataturk-full .ataturk-content blockquote {
        max-width: 560px;
        font-size: clamp(21px, 1.85vw, 30px);
        line-height: 1.2;
        letter-spacing: -.7px;
    }

    .home-ataturk-full .ataturk-sign {
        margin-top: 12px;
        font-size: 13px;
    }

    .home-ataturk-full .ataturk-right {
        height: 220px;
        min-height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-ataturk-full .ataturk-right img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center;
    }

    .home-top-grid {
        grid-template-columns: minmax(225px, 245px) minmax(0, 1fr) minmax(225px, 245px);
        gap: 14px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .home-ataturk-full .ataturk-split-card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    }

    .home-top-grid {
        grid-template-columns: minmax(205px, 225px) minmax(0, 1fr) minmax(205px, 225px);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .home-ataturk-full .ataturk-image img,
    .home-ataturk-full .ataturk-right img {
        object-fit: contain !important;
        object-position: center;
    }
}

/* =========================================================
   ANA SAYFA ÜST KART - SAĞ GÖRSELİ KENARLARA TAM OTURTMA
   Sağ ve soldaki boşlukları kaldırır, görsel alanı tamamen doldurur.
   ========================================================= */
.home-ataturk-full .ataturk-right {
    padding: 0 !important;
    overflow: hidden !important;
}

.home-ataturk-full .ataturk-right img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 900px) {
    .home-ataturk-full .ataturk-right {
        padding: 0 !important;
        overflow: hidden !important;
    }

    .home-ataturk-full .ataturk-right img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}
