:root {
    --brand-red: #e2231a;
    --brand-red-dark: #c01d15;
    --brand-dark: #1a1a1a;
    --brand-gray: #6b7280;
    --brand-border: #e9edf4;
    --brand-yellow: #f2c14e;
    --hero-navy: #0f1b33;
    --body-bg: #F6F6F6;
}

/* ===== ASSET İKON SİSTEMİ (assets/icons/*.svg, renk/boyut CSS'ten) ===== */
.icon-svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
}

.icon-facebook { -webkit-mask-image: url(../icons/facebook.svg); mask-image: url(../icons/facebook.svg); }
.icon-x { -webkit-mask-image: url(../icons/x.svg); mask-image: url(../icons/x.svg); }
.icon-instagram { -webkit-mask-image: url(../icons/instagram.svg); mask-image: url(../icons/instagram.svg); }
.icon-youtube { -webkit-mask-image: url(../icons/youtube.svg); mask-image: url(../icons/youtube.svg); }
.icon-telegram { -webkit-mask-image: url(../icons/telegram.svg); mask-image: url(../icons/telegram.svg); }
.icon-whatsapp { -webkit-mask-image: url(../icons/whatsapp.svg); mask-image: url(../icons/whatsapp.svg); }
.icon-linkedin { -webkit-mask-image: url(../icons/linkedin.svg); mask-image: url(../icons/linkedin.svg); }
.icon-apple { -webkit-mask-image: url(../icons/apple.svg); mask-image: url(../icons/apple.svg); }
.icon-google-play { -webkit-mask-image: url(../icons/google-play.svg); mask-image: url(../icons/google-play.svg); }
.icon-24 { -webkit-mask-image: url(../icons/24.svg); mask-image: url(../icons/24.svg); background-color: var(--brand-red); }

.icon-svg-sm { width: 15px; height: 15px; }
.icon-svg-lg { width: 20px; height: 20px; }

/* material-symbols-outlined ikon fontu ligatür metnini (chevron_left, chevron_right, play_arrow)
   SEO araçları sayfa metni/anahtar kelime sayıyordu — bu üçü yerine inline SVG kullanılıyor,
   bu class sadece font-size/renk ile aynı hizada görünmesini sağlıyor (bkz. ilgili widget'lar). */
.icon-inline { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; }

.icon-google-img {
    width: 18px;
    height: 18px;
}

.icon-facebook-brand {
    background-color: #1877f2;
}

.auth-social-btn .icon-svg {
    width: 18px;
    height: 18px;
}

html {
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: var(--body-bg);
    overflow-x: clip;
    max-width: 100vw;
}

/* Mobilde tüm sayfalarda kenarlarda standart boşluk kalsın — Bootstrap'in varsayılan
   gutter'ı (12px) bazı dar ekranlarda yetersiz/tutarsız görünüyordu. */
@media (max-width: 767.98px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

a {
    text-decoration: none;
}

/* ===== TOP ACCENT BAR ===== */
.top-accent-bar {
    height: 4px;
    background: var(--brand-red);
}

/* ===== UTILITY BAR ===== */
.utility-bar {
    background: #f5f5f5;
    border-bottom: 1px solid var(--brand-border);
    font-size: .8125rem;
}

.utility-bar .utility-datetime {
    color: #4b5563;
}

.utility-bar .utility-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-bar .utility-links a {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}

.utility-bar .utility-links a .material-symbols-outlined {
    font-size: 20px;
    color: #4b5563;
}

.utility-bar .utility-links a:hover,
.utility-bar .utility-links a:hover .material-symbols-outlined,
.utility-bar .utility-links a.active,
.utility-bar .utility-links a.active .material-symbols-outlined {
    color: var(--brand-red);
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--brand-dark);
    line-height: 1;
}

.brand-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.brand-logo-sm img {
    height: 34px;
}

.brand-logo .brand-dot {
    color: var(--brand-red);
}

.brand-logo .brand-suffix {
    background: var(--brand-dark);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: .15rem .4rem;
    border-radius: 4px;
    margin-left: .25rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.main-nav a {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .8125rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.header-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    background: transparent;
    border: none;
    transition: background .15s ease, color .15s ease;
}

/* Görsel buton 38px kalsın ama mobilde dokunma alanı en az 44x44 olsun (WCAG 2.5.5 / Lighthouse tap-target) */
.header-icon-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.header-icon-btn:hover,
.header-icon-btn.active {
    background: #f3f4f6;
    color: var(--brand-red);
}

[x-cloak] {
    display: none !important;
}

/* ===== APPS MEGA MENU ===== */
.header-wrap {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 1px 0 var(--brand-border);
    transition: box-shadow .2s ease;
}

.header-wrap.is-scrolled {
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.apps-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--brand-border);
    box-shadow: 0 16px 32px rgba(0,0,0,.1);
    z-index: 1030;
}

.mega-menu-inner {
    display: flex;
    padding: 1.75rem 0;
    gap: 2.5rem;
}

.mega-sidebar {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    border-right: 1px solid var(--brand-border);
    padding-right: 1.75rem;
}

.mega-sidebar-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .9375rem;
    padding: .5rem 0;
}

.mega-sidebar-link .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--brand-red);
}

.mega-sidebar-link:hover {
    color: var(--brand-red);
}

.mega-sidebar-divider {
    margin: .75rem 0;
    border-color: var(--brand-border);
    opacity: 1;
}

.mega-social-icons {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.mega-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.mega-social-icon:hover {
    background: var(--brand-red);
    color: #fff;
}

.mega-columns {
    flex: 1;
    display: flex;
    gap: 2.5rem;
}

.mega-col {
    flex: 1;
}

.mega-col-wide {
    flex: 1.5;
}

.mega-col-title {
    color: var(--brand-red);
    font-weight: 800;
    font-size: .8125rem;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}

.mega-col-split {
    display: flex;
    gap: 1.5rem;
}

.mega-col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mega-col-list li + li {
    margin-top: .7rem;
}

.mega-col-list a {
    color: var(--brand-dark);
    font-size: .875rem;
    font-weight: 500;
}

.mega-col-list a:hover {
    color: var(--brand-red);
}

.mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--brand-border);
    padding: 1.1rem 0;
}

.mega-menu-footer > span {
    color: var(--brand-gray);
    font-size: .875rem;
    font-weight: 500;
}

.store-badges {
    display: flex;
    gap: .75rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--brand-dark);
    color: #fff;
    padding: .4rem .9rem;
    border-radius: 8px;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-badge-text small {
    font-size: .625rem;
    opacity: .85;
}

.store-badge-text strong {
    font-size: .875rem;
    font-weight: 700;
}

/* ===== SEARCH MODAL ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,.55);
    backdrop-filter: blur(2px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8vh 1rem 0;
}

.search-modal {
    width: min(650px, 100%);
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-input-box {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--brand-border);
}

.search-input-box > .material-symbols-outlined {
    color: var(--brand-gray);
    font-size: 1.4rem;
}

.search-input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
}

.search-input-box input::placeholder {
    color: #9ca3af;
}

.search-esc-badge {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--brand-gray);
    background: #f3f4f6;
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    padding: .2rem .5rem;
    cursor: pointer;
}

.search-content {
    padding: 1.1rem 1.25rem;
    overflow-y: auto;
}

.search-section-title {
    color: var(--brand-gray);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .04em;
    margin-bottom: .75rem;
}

.search-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: .6rem .5rem;
    border-radius: 10px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .9375rem;
}

.search-item:hover {
    background: #f8f9fb;
    color: var(--brand-red);
}

.search-section-title-spaced {
    margin-top: 1.1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    background: #f3f4f6;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .8125rem;
    padding: .4rem .8rem;
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}

.search-tag:hover {
    background: var(--brand-red);
    color: #fff;
}

.icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-item-thumb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.icon-box .material-symbols-outlined.mat-icon-sm {
    font-size: 1.15rem;
}

.icon-box-red { background: rgba(226,35,26,.1); color: var(--brand-red); }
.icon-box-blue { background: rgba(37,99,235,.1); color: #2563eb; }
.icon-box-purple { background: rgba(139,92,246,.1); color: #8b5cf6; }
.icon-box-yellow { background: rgba(242,193,78,.18); color: #b8860b; }

.search-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: .75rem 1.25rem;
    border-top: 1px solid var(--brand-border);
    background: #fafafa;
}

.search-footer span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    color: var(--brand-gray);
    font-weight: 500;
}

.search-footer kbd {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-bottom-width: 2px;
    border-radius: 4px;
    padding: .1rem .4rem;
    font-size: .6875rem;
    font-weight: 600;
    color: var(--brand-dark);
    font-family: inherit;
}

@media (max-width: 575.98px) {
    .search-overlay {
        padding-top: 0;
    }

    .search-modal {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        width: 100%;
    }
}

/* ===== AUTH MODAL (GİRİŞ / ÜYE OL) ===== */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,.55);
    backdrop-filter: blur(2px);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.auth-modal {
    position: relative;
    width: min(420px, 100%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,.25);
    padding: 2rem 1.75rem 1.75rem;
    margin: auto;
}

.auth-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: var(--brand-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-close:hover {
    background: #e5e7eb;
    color: var(--brand-dark);
}

.auth-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-logo-sm {
    font-size: 1.35rem;
    margin-bottom: .6rem;
}

.auth-subtitle {
    color: var(--brand-gray);
    font-size: .875rem;
    margin: 0;
}

.auth-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 10px;
    padding: .25rem;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: .55rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: var(--brand-gray);
}

.auth-tab.active {
    background: #fff;
    color: var(--brand-red);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.auth-field-label {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.auth-input-box {
    display: flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .65rem .85rem;
    transition: border-color .15s ease;
}

.auth-input-box:focus-within {
    border-color: var(--brand-red);
}

.auth-input-box > .material-symbols-outlined {
    font-size: 1.15rem;
    color: var(--brand-gray);
}

.auth-input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    min-width: 0;
}

.auth-input-box input::placeholder,
.auth-input-box textarea::placeholder {
    color: #9ca3af;
}

.auth-input-box textarea {
    flex: 1;
    border: none;
    outline: none;
    resize: vertical;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    min-width: 0;
    min-height: 110px;
}

.iletisim-form-basari,
.iletisim-form-hata {
    border-radius: 10px;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.iletisim-form-basari {
    background: #ecfdf5;
    color: #047857;
}

.iletisim-form-hata {
    background: #fef2f2;
    color: #b91c1c;
}

.auth-alert {
    border-radius: 10px;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.auth-alert-success {
    background: #ecfdf5;
    color: #047857;
}

.auth-alert-error {
    background: #fef2f2;
    color: #b91c1c;
}

.header-uye-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.auth-pw-toggle {
    border: none;
    background: transparent;
    color: var(--brand-gray);
    display: inline-flex;
    padding: 0;
}

.auth-pw-toggle .material-symbols-outlined {
    font-size: 1.15rem;
}

.auth-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -.5rem;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--brand-gray);
    font-weight: 500;
    cursor: pointer;
}

.auth-checkbox input {
    margin-top: .2rem;
}

.auth-link {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-red);
}

.btn-auth-primary {
    border: none;
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    font-size: .9375rem;
    padding: .75rem;
    border-radius: 10px;
    transition: background .15s ease;
}

.btn-auth-primary:hover {
    background: var(--brand-red-dark);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--brand-gray);
    font-size: .75rem;
    font-weight: 600;
    margin: -.25rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--brand-border);
}

.auth-divider span {
    padding: 0 .75rem;
}

.auth-social {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border: 1px solid var(--brand-border);
    background: #fff;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .875rem;
    padding: .6rem;
    border-radius: 10px;
}

.auth-social-btn:hover {
    background: #f8f9fb;
}

.auth-switch-text {
    text-align: center;
    font-size: .8438rem;
    color: var(--brand-gray);
    margin: 0;
}

.auth-switch-text a {
    color: var(--brand-red);
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .auth-modal {
        padding: 1.75rem 1.25rem 1.5rem;
    }
}

/* ===== BREAKING NEWS TICKER ===== */
.breaking-news-bar {
    background: var(--brand-red);
    color: #fff;
}

.breaking-news-bar .bn-inner {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: .9rem 0;
}

.breaking-news-bar .bn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-red);
    font-weight: 800;
    font-size: .75rem;
    flex-shrink: 0;
}

.breaking-news-bar .bn-label {
    font-weight: 800;
    font-size: .8125rem;
    letter-spacing: .03em;
    flex-shrink: 0;
    white-space: nowrap;
}

.breaking-news-bar .bn-time {
    font-weight: 700;
    font-size: .8125rem;
    flex-shrink: 0;
}

.breaking-news-bar .bn-text {
    font-size: .875rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breaking-news-bar .bn-text a {
    color: inherit;
}

.breaking-news-bar .bn-ticker {
    flex: 1 1 auto;
    min-width: 0;
    height: 24px;
    overflow: hidden;
}

.breaking-news-bar .bn-ticker-track {
    transition: transform .6s ease;
}

.breaking-news-bar .bn-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    height: 24px;
    min-width: 0;
}

.breaking-news-bar .bn-item .bn-text {
    min-width: 0;
}

/* ===== HERO SECTION ===== */
.hero-wrap {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.hero-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: var(--hero-navy);
}

.hero-card .hero-image {
    position: absolute;
    inset: 0;
    left: 30%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

.hero-card .hero-image.is-active {
    opacity: 1;
}

.hero-card .hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hero-navy) 0%, rgba(15,27,51,.92) 18%, rgba(15,27,51,.35) 42%, rgba(15,27,51,0) 65%);
}

.hero-card .hero-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem 2.25rem 4.5rem;
    max-width: 46%;
}

.hero-card .hero-badges {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.badge-special {
    background: var(--brand-yellow);
    color: #1a1a1a;
    font-weight: 800;
    font-size: .75rem;
    padding: .3rem .65rem;
    border-radius: 4px;
    letter-spacing: .02em;
}

.badge-live {
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    padding: .3rem .65rem .3rem .5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    letter-spacing: .02em;
}

.badge-live .material-symbols-outlined {
    font-size: 1rem;
}

.hero-flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--brand-red);
}

.hero-flag-icon .material-symbols-outlined {
    font-size: 1.05rem;
    color: #fff;
}

.hero-flag-icon--canli { background: var(--brand-red); }
.hero-flag-icon--video { background: #2563eb; }
.hero-flag-icon--galeri { background: #7c3aed; }
.hero-flag-icon--ozel { background: #d97706; }

.hero-card .hero-title {
    color: var(--brand-yellow);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: .75rem;
    max-width: 720px;
}

.hero-card .hero-desc {
    color: #f3f4f6;
    font-size: .95rem;
    max-width: 620px;
    margin-bottom: 0;
}

.hero-pagination {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hero-pagination .hp-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    backdrop-filter: blur(2px);
    transition: background .15s ease;
}

.hero-pagination .hp-dot.active,
.hero-pagination .hp-dot:hover {
    background: var(--brand-red);
}

/* ===== NEWS CARD GRID ===== */
.news-grid-wrap {
    padding-bottom: 2rem;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.5rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .75rem 1rem;
    margin-bottom: .75rem;
    box-sizing: border-box;
}

.section-heading-title {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .02em;
    border-left: 3px solid var(--brand-red);
    padding-left: .55rem;
    margin: 0;
    line-height: 1.1;
}

.section-heading-nav {
    display: flex;
    gap: .5rem;
}

.slider-nav-btn {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--brand-border);
    background: #fff;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.slider-nav-btn .material-symbols-outlined {
    font-size: 1.15rem;
}

/* Görsel buton 32px kalsın ama mobilde dokunma alanı en az 44x44 olsun (WCAG 2.5.5 / Lighthouse tap-target) */
.slider-nav-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.slider-nav-btn.disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.slider-nav-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.featured-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: .25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.featured-slide {
    flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 767.98px) {
    .featured-slide {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

.writer-track {
    --writer-cols: 5;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: .25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.writer-track::-webkit-scrollbar {
    display: none;
}

.writer-slide {
    flex: 0 0 calc((100% - (var(--writer-cols) - 1) * 1rem) / var(--writer-cols));
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 767.98px) {
    .writer-slide {
        flex: 0 0 100%;
    }
}

.news-card {
    display: block;
    color: inherit;
}

.news-card .news-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: .75rem;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.news-card .news-thumb .material-symbols-outlined {
    font-size: 2rem;
    color: #9ca3af;
}

.news-category-badge {
    display: inline-block;
    background: var(--brand-red);
    font-size: .6875rem;
    font-weight: 700;
    color: #fff;
    padding: .25rem .55rem;
    border-radius: 4px;
}

.news-card .news-category-badge {
    position: absolute;
    left: .6rem;
    bottom: .6rem;
    z-index: 2;
}

.news-card .news-badge-row {
    position: absolute;
    left: .6rem;
    bottom: .6rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.news-badge-row .news-category-badge {
    position: static;
}

.news-category-badge.cat-official { background: var(--brand-red); }
.news-category-badge.cat-economy { background: #16a34a; }
.news-category-badge.cat-agenda { background: #2563eb; }
.news-category-badge.cat-resmi-ilan { background: #d97706; }

.news-card .news-play-icon {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--brand-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.news-card .news-play-icon .material-symbols-outlined {
    font-size: 1.05rem;
    color: #fff;
}

.news-card .news-flag-badges {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 2;
    display: flex;
    gap: .3rem;
}

.news-flag-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--brand-red);
}

.news-flag-badge .material-symbols-outlined {
    font-size: 1rem;
    color: #fff;
}

.news-flag-badge--canli { background: var(--brand-red); }
.news-flag-badge--video { background: #2563eb; }
.news-flag-badge--galeri { background: #7c3aed; }
.news-flag-badge--ozel { background: #d97706; }

.news-card .news-title {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-title {
    color: var(--brand-red);
}

.news-card .news-ref {
    font-size: .75rem;
    color: var(--brand-red);
    font-weight: 600;
    margin-top: .25rem;
    display: block;
}

/* ===== SPLIT WIDGET (DÜNYA / SPOR) ===== */
.split-widget {
    padding-bottom: 2.5rem;
}

.split-widget-col {
    height: 100%;
}

.split-hero-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    margin-bottom: 1rem;
    color: inherit;
}

.split-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.82) 100%);
}

.split-hero-topbadges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.split-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem 1.5rem;
}

.split-hero-caption h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: .6rem 0 0;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--brand-dark);
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .02em;
    padding: .3rem .75rem;
    border-radius: 999px;
}

.category-pill.cat-sport {
    background: rgba(255,255,255,.15);
    color: #fff;
    backdrop-filter: blur(2px);
}

.number-pager {
    display: flex;
    align-items: center;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    margin-bottom: 1.25rem;
    scrollbar-width: none;
}

.number-pager::-webkit-scrollbar {
    display: none;
}

.number-pager-item {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.number-pager-item:hover {
    background: #e5e7eb;
}

.number-pager-item.active {
    background: var(--brand-red);
    color: #fff;
}

.number-pager-all {
    flex: 0 0 auto;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .02em;
    padding: 0 1rem;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    margin-left: .25rem;
}

.number-pager-all:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

.number-pager-center {
    justify-content: center;
    overflow: visible;
}

.kategori-manset {
    margin-bottom: 1.5rem;
}

/* Şablon 2, ekonomi widget'ındaki .econ-slide'ı paylaşır — orada sütun yüksekliğine göre esner,
   burada tek başına olduğu için 16/9 (1280x720) oranına sabitlenir. */
.kategori-manset .econ-slide {
    flex: none;
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.tall-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 320px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    padding: 1.5rem;
    color: inherit;
}

.tall-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%);
    z-index: 0;
}

.tall-feature-card .tall-feature-top,
.tall-feature-card h3 {
    position: relative;
    z-index: 1;
}

.tall-feature-top {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.tall-feature-card h3 {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.3;
    margin: .75rem 0 0;
}

.tall-feature-dots {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.tall-feature-dots .econ-dot {
    background: rgba(255,255,255,.4);
}

.tall-feature-dots .econ-dot.active {
    background: var(--brand-red);
}

/* ===== YAZARLAR ===== */
.writers-widget {
    padding-bottom: 2.5rem;
}

.writer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .625rem;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem .875rem;
    color: inherit;
    height: 100%;
}

.writer-card:hover .writer-title-box {
    color: var(--brand-red);
}

.writer-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    min-width: 0;
}

.writer-name {
    font-weight: 800;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--brand-gray);
}

.writer-title-box {
    width: 100%;
    background: #f1f1f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    border-radius: 8px;
    padding: .6rem .75rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.writer-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.writer-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: 1.75rem;
}

.writer-avatar--kare {
    border-radius: 1px;
}

.writer-avatar--kare-oval {
    border-radius: 5px;
}

.writer-role {
    font-size: .75rem;
    color: var(--brand-gray);
    margin-top: -.3rem;
}

/* ===== YAZARLAR SAYFASI (/yazarlar) ===== */
.writers-page-hero {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
    padding: 1.5rem 0 1.75rem;
    margin-bottom: 2rem;
}

.writers-page {
    padding-bottom: 3rem;
}

.writers-page-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
}

.writers-page-title {
    font-weight: 800;
    margin: .5rem 0 .35rem;
}

.writers-page-desc {
    color: var(--brand-gray);
    max-width: 640px;
    margin-bottom: 0;
}

.writers-page-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.writers-search-form {
    flex: 1;
    min-width: 240px;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #f4f5f6;
    border-radius: 8px;
    padding: .625rem .875rem;
}

.writers-search-form .material-symbols-outlined {
    color: var(--brand-gray);
}

.writers-search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: .9rem;
}

.writers-column-toggle {
    display: flex;
    gap: .375rem;
}

.writers-col-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--brand-gray);
    cursor: pointer;
}

.writers-col-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.writers-page-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
}

.writers-page-grid.kolon-2 { grid-template-columns: repeat(2, 1fr); }
.writers-page-grid.kolon-3 { grid-template-columns: repeat(3, 1fr); }
.writers-page-grid.kolon-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .writers-page-grid.kolon-3, .writers-page-grid.kolon-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .writers-page-grid { grid-template-columns: 1fr !important; }
}

.writer-card--wide {
    flex-direction: row;
    text-align: left;
    align-items: center;
}

.writer-card--wide .writer-content {
    align-items: flex-start;
    text-align: left;
}

.writer-card--wide .writer-avatar,
.writer-card--wide .writer-avatar--placeholder {
    width: 96px;
    height: 96px;
}

/* ===== YAZAR PROFİL SAYFASI (/yazar/{slug}-{id}) ===== */
.writer-profile-header {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
    padding: 1.5rem 0 1.75rem;
    margin-bottom: 2rem;
}

.writer-profile-hr {
    margin: 1rem 0 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    border: none;
    border-top: 1px solid var(--brand-border);
}

.writer-profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.25rem;
}

.writer-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    font-size: 2.25rem;
}

.writer-profile-name {
    font-weight: 800;
    margin-bottom: .25rem;
}

.writer-profile-title {
    display: inline-block;
    color: var(--brand-red);
    font-weight: 700;
    font-size: .875rem;
    margin-bottom: .5rem;
}

.writer-profile-bio {
    color: var(--brand-gray);
    max-width: 720px;
    margin-bottom: 0;
}

.writer-profile-content {
    padding-bottom: 3rem;
}

.writer-yazilar-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    max-width: 720px;
    margin-top: 1.25rem;
}

.writer-yazi-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .6rem .875rem;
    color: inherit;
}

.writer-yazi-item:hover .writer-yazi-title {
    color: var(--brand-red);
}

.writer-yazi-thumb {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.writer-yazi-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    color: #9ca3af;
}

.writer-yazi-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
}

.article-related-authors {
    height: 100%;
}

.article-related-authors .section-heading-title,
.writer-profile-content .section-heading-title {
    margin-bottom: 1.25rem;
}

.article-related-authors .writer-yazilar-list {
    max-width: 100%;
}

/* ===== EKONOMİ WIDGETİ ===== */
.economy-widget {
    padding-bottom: 2.5rem;
}

.econ-slider {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.econ-slide {
    position: relative;
    flex: 1;
    min-height: 280px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    display: flex;
    align-items: flex-end;
}

.econ-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.85);
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Görsel buton 38px kalsın ama mobilde dokunma alanı en az 44x44 olsun (WCAG 2.5.5 / Lighthouse tap-target) */
.econ-nav-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.econ-nav-btn:hover {
    background: #fff;
}

.econ-nav-prev { left: .75rem; }
.econ-nav-next { right: .75rem; }

.econ-slide-caption {
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(238,224,204,.92);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    padding: 1rem 1.25rem;
}

.econ-slide-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: .6rem;
}

.econ-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    padding: 0;
}

.econ-dot.active {
    background: var(--brand-red);
    width: 10px;
    height: 10px;
}

/* Görsel nokta 8px kalsın ama mobilde dokunma alanı en az 44x44 olsun (WCAG 2.5.5 / Lighthouse tap-target) */
.econ-dot,
.magazin-dot {
    position: relative;
}

.econ-dot::before,
.magazin-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.finance-ticker {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.finance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .7rem .9rem;
}

.finance-label {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    font-weight: 700;
    font-size: .75rem;
    color: var(--brand-gray);
    letter-spacing: .02em;
}

.finance-value {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.finance-change {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: .8125rem;
    padding: .3rem .5rem;
    border-radius: 999px;
}

.finance-change.up {
    color: #0f7a35;
    background: rgba(22,163,74,.1);
}

.finance-change.down {
    color: var(--brand-red-dark);
    background: rgba(226,35,26,.1);
}

.finance-live-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #0f7a35;
    color: #fff;
    font-weight: 800;
    font-size: .8125rem;
    letter-spacing: .02em;
    padding: .8rem;
    border-radius: 8px;
}

.finance-live-btn:hover {
    background: #0c6b2e;
    color: #fff;
}

.weather-widget {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.weather-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: .5rem;
}

.weather-title {
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin: 0 0 .75rem;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}

.weather-icon {
    font-size: 2.5rem;
}

.weather-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}

.weather-temp {
    font-size: 2.25rem;
    font-weight: 800;
}

.weather-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem .75rem;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    padding: .6rem .75rem;
    margin-bottom: .75rem;
}

.weather-times div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8125rem;
}

.weather-times span {
    opacity: .85;
}

.weather-times strong {
    font-weight: 800;
}

.weather-stats {
    font-size: .75rem;
    opacity: .9;
    margin-bottom: .75rem;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: .4rem;
    width: 100%;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    padding: .55rem .75rem;
    border-radius: 8px;
}

.weather-location-chevron {
    margin-left: auto;
}

.weather-location select {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    font-family: inherit;
    padding: 0;
    cursor: pointer;
}

.weather-location select:focus {
    outline: none;
}

.weather-location select:focus-visible {
    outline: 1px solid rgba(255,255,255,.6);
    outline-offset: 2px;
}

.weather-location select::-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #fff;
}

.weather-location select option {
    color: #0f172a;
}

.weather-location .weather-location-chevron {
    flex: none;
    pointer-events: none;
}

.weather-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.weather-all-link svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.weather-all-link:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
}

.econ-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .75rem .9rem;
    margin-top: auto;
}

.econ-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.econ-social-icon:hover {
    background: var(--brand-red);
    color: #fff;
}

/* ===== DÜNYA WİDGETİ ===== */
.world-widget {
    padding-bottom: 2.5rem;
}

.world-slide {
    position: relative;
    height: 100%;
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    display: flex;
    align-items: flex-end;
}

.world-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.82) 100%);
}

.world-slide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    padding: .3rem .65rem;
    border-radius: 4px;
}

.world-slide-badge .material-symbols-outlined {
    font-size: 1rem;
}

.slide-flag-icons {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    display: flex;
    gap: .35rem;
}

.slide-flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--brand-red);
}

.slide-flag-icon .material-symbols-outlined {
    font-size: 1.05rem;
    color: #fff;
}

.slide-flag-icon--canli { background: var(--brand-red); }
.slide-flag-icon--video { background: #2563eb; }
.slide-flag-icon--galeri { background: #7c3aed; }
.slide-flag-icon--ozel { background: #d97706; }

.world-slide-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.25rem 1.5rem 1.5rem;
}

.world-slide-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    max-width: 90%;
}

.world-slide-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.world-slide-dots .hp-dot {
    position: static;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    backdrop-filter: blur(2px);
    transition: background .15s ease;
}

.world-slide-dots .hp-dot.active,
.world-slide-dots .hp-dot:hover {
    background: var(--brand-red);
}

.ad-banner {
    position: relative;
    display: block;
    height: 100%;
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(160deg, #1a2233, #2b3550);
    color: #fff;
    padding: 1.25rem;
}

.ad-banner-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ad-banner-close .material-symbols-outlined {
    font-size: 1rem;
}

.ad-banner-label {
    display: inline-block;
    background: var(--brand-yellow);
    color: #1a1a1a;
    font-weight: 800;
    font-size: .625rem;
    letter-spacing: .04em;
    padding: .2rem .5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ad-banner-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 .75rem;
}

.ad-banner-desc {
    font-size: .8125rem;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
    margin: 0;
}

.news-thumb-sm {
    aspect-ratio: 16 / 9;
}

/* ===== SPOR WİDGETİ ===== */
.sport-widget {
    padding-bottom: 2.5rem;
}

.sport-slide-col {
    display: flex;
    flex-direction: column;
}

.sport-slide {
    position: relative;
    flex: 1;
    min-height: 280px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    display: flex;
    align-items: flex-end;
}

.sport-slide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    color: var(--brand-red);
    font-weight: 800;
    font-size: .75rem;
    padding: .3rem .65rem .3rem .4rem;
    border-radius: 4px;
}

.sport-slide-badge .material-symbols-outlined {
    font-size: 1.1rem;
}

.sport-slide-title {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #0f7a35;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.35;
    padding: 1rem 1.25rem;
    margin: 0;
}

.sport-slide-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: .6rem;
}

.sport-dot.active {
    background: #16a34a;
}

.sport-stack {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sport-stack .news-card:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sport-stack .news-card:last-child .news-thumb {
    flex: 1;
    aspect-ratio: auto;
}

.news-thumb-lg {
    aspect-ratio: 16 / 8;
}

.sport-feature .news-title {
    font-size: 1rem;
}

.sport-list {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .5rem;
    overflow-y: auto;
}

.sport-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .6rem .75rem;
    color: inherit;
}

.sport-list-item:hover .sport-list-title {
    color: var(--brand-red);
}

.sport-list-title {
    font-size: .8438rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.3;
}

.sport-list-thumb {
    width: 56px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Magazin ve Spor Widgeti listeleri tam yüksekliğe yayılmasın — kartlar arası sabit
   5px boşluk kalsın, kalan boşluk zeminde (arkaplanda) kalsın. */
.magazin-widget .sport-list,
.sport-widget .sport-list {
    justify-content: flex-start;
    gap: 5px;
}

/* ===== RÖPORTAJ SLIDER (YAZARLAR SAĞI) ===== */
.interview-slide {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    display: flex;
    align-items: flex-end;
}

.interview-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.82) 100%);
}

.interview-slide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .03em;
    padding: .3rem .65rem;
    border-radius: 4px;
}

.interview-slide-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.25rem;
}

.interview-slide-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 0 0 .85rem;
}

.interview-slide-dots {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.interview-slide-dots .econ-dot {
    background: rgba(255,255,255,.4);
}

.interview-slide-dots .econ-dot.active {
    background: var(--brand-red);
}

/* ===== MAGAZİN WİDGETİ ===== */
.magazin-widget {
    padding-bottom: 2.5rem;
}

.magazin-slide-col {
    margin-bottom: .75rem;
}

.magazin-slide {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b;
    display: flex;
    align-items: flex-end;
}

.magazin-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(17,0,10,.88) 100%);
}

.magazin-slide-badge {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    background: #db2777;
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .04em;
    padding: .35rem .75rem;
    border-radius: 999px;
}

.magazin-slide-video-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .02em;
    padding: .35rem .7rem .35rem .55rem;
    border-radius: 999px;
}

.magazin-slide-video-badge .material-symbols-outlined {
    font-size: 1.05rem;
}

.magazin-slide-bottom {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.75rem 4rem;
}

.magazin-slide-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 .6rem;
    max-width: 85%;
}

.magazin-slide-desc {
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    line-height: 1.5;
    max-width: 80%;
    margin: 0;
}

.magazin-slide-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: .5rem .75rem;
}

.magazin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,.4);
}

.magazin-dot.active {
    background: #db2777;
    width: 18px;
    border-radius: 4px;
}

.magazin-ad-banner {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 130px;
    background: #fdf2f8;
    border: 1px solid #f9a8d4;
    color: var(--brand-dark);
}

.magazin-ad-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #1a1a1a;
    color: #fff;
    font-weight: 800;
    font-size: .625rem;
    letter-spacing: .05em;
    padding: .3rem .9rem;
    border-radius: 0 0 0 10px;
}

.magazin-ad-photo {
    flex-shrink: 0;
    align-self: stretch;
    width: 130px;
    overflow: hidden;
    background: #fff;
}

.magazin-ad-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.magazin-ad-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.25rem;
}

.magazin-ad-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 .25rem;
}

.magazin-ad-desc {
    font-size: .8125rem;
    color: #4b5563;
    margin: 0;
}

.magazin-ad-btn {
    flex-shrink: 0;
    align-self: center;
    display: inline-block;
    background: var(--brand-dark);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    padding: .6rem 1.25rem;
    border-radius: 999px;
    margin-right: 1.5rem;
    white-space: nowrap;
}

/* ===== TEKNOLOJİ WİDGETİ ===== */
.tech-widget {
    padding-bottom: 2.5rem;
}

.tech-photo {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background: #f3f4f6;
}

.tech-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.78) 100%);
    pointer-events: none;
}

.tech-photo-title {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
    padding: 1rem 1.1rem;
}

.tech-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.tech-photo:hover img {
    transform: scale(1.04);
}

.tech-stack {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.tech-stack .tech-photo {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
}

/* ===== VİDEO WİDGETİ ===== */
.video-widget {
    padding-bottom: 2.5rem;
}

.video-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #2b2b2b;
    background-size: cover;
    background-position: center;
    color: inherit;
}

.video-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(153,20,15,.92) 100%);
}

.video-slide-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 0;
    padding: 1.5rem 1.75rem;
    max-width: 90%;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--brand-red);
}

.video-play-btn .material-symbols-outlined {
    font-size: 1.15rem;
}

.video-play-btn-lg {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
}

.video-play-btn-lg .material-symbols-outlined {
    font-size: 2rem;
}

.video-list {
    max-height: 380px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    overflow-y: auto;
    padding-right: .4rem;
}

.video-list::-webkit-scrollbar {
    width: 4px;
}

.video-list::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 999px;
}

.video-list-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: #eef0f2;
    border-radius: 10px;
    padding: .6rem;
    color: inherit;
    transition: background .15s ease;
}

.video-list-item:hover,
.video-list-item.active {
    background: #e2e5e9;
}

.video-list-item.active .video-list-title {
    color: var(--brand-red-dark);
}

.video-list-item:hover .video-list-title {
    color: var(--brand-red-dark);
}

.video-thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--brand-red);
    color: #fff;
}

.video-thumb-wrap .video-play-btn .material-symbols-outlined {
    font-size: .9rem;
}

.video-list-title {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}

/* ===== SPOT HABERLER WİDGETİ ===== */
.spot-widget {
    padding-bottom: 2.5rem;
}

.spot-stack {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.spot-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex: 1;
    min-height: 220px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #2b2b2b;
    color: inherit;
}

.spot-card-sm {
    min-height: 200px;
}

.spot-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spot-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
    z-index: 0;
}

.spot-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 2;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    font-size: .6875rem;
    letter-spacing: .03em;
    padding: .3rem .6rem;
    border-radius: 4px;
}

.cat-yasam { background: #14b8a6; }
.cat-magazin { background: #db2777; }
.cat-teknoloji { background: #8b5cf6; }
.cat-saglik { background: #16a34a; }

.spot-card-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: .9375rem;
    line-height: 1.35;
    margin: 0;
    padding: 1rem;
}

.spot-card-graphic {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.spot-graphic-green {
    background: linear-gradient(160deg, #16a34a, #0f7a37);
}

.spot-graphic-dark {
    background: linear-gradient(160deg, #1a1a2e, #0d0d1a);
}

.spot-graphic-icon {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    color: rgba(255,255,255,.9);
    margin-bottom: .5rem;
}

.spot-graphic-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 1rem;
}

.spot-card-graphic .spot-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.spot-ad-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    min-height: 150px;
    border-radius: 10px;
    padding: 1.5rem;
    background: linear-gradient(120deg, #1e3a8a, #1d4ed8);
    color: #fff;
}

.spot-ad-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.spot-ad-desc {
    font-size: .875rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1rem;
}

.spot-ad-btn {
    display: inline-block;
    background: #fff;
    color: #1d4ed8;
    font-weight: 700;
    font-size: .8125rem;
    padding: .5rem 1.25rem;
    border-radius: 999px;
}

/* ===== YEREL HABERLER WİDGETİ ===== */
.yerel-widget {
    padding-bottom: 2.5rem;
}

.section-heading-title-pink {
    color: #db2777;
    border-left-color: #db2777;
}

.yerel-il-grid-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
}

.yerel-il-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem 1.5rem;
}

.yerel-il-toggle-wrap {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--brand-border);
}

.yerel-il-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #f8f0f4;
    color: #9d174d;
    border: none;
    font-weight: 700;
    font-size: .875rem;
    padding: .55rem 1.25rem;
    border-radius: 999px;
}

.yerel-il-toggle-btn:hover {
    background: #fce7f3;
}

.yerel-il-toggle-btn .toggle-text-open {
    display: none;
}

.yerel-il-toggle-btn[aria-expanded="true"] .toggle-text-closed {
    display: none;
}

.yerel-il-toggle-btn[aria-expanded="true"] .toggle-text-open {
    display: inline;
}

.yerel-il-toggle-btn .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.yerel-il-toggle-btn[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(180deg);
}

.yerel-il-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.yerel-il-link:hover {
    color: #db2777;
}

@media (max-width: 767.98px) {
    .yerel-il-grid-card {
        padding: 1.25rem;
    }

    .yerel-il-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .85rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .yerel-il-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--brand-border);
    margin-top: 1rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.footer-social-icon:hover {
    background: var(--brand-red);
    color: #fff;
}

.footer-divider {
    margin: 0;
    border: none;
    border-top: 1px solid var(--brand-border);
    opacity: 1;
}

.footer-columns {
    padding: 2rem 0;
}

.footer-col-title {
    color: var(--brand-red);
    font-weight: 800;
    font-size: .8125rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-col-split {
    display: flex;
    gap: 1.5rem;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.footer-link-list li + li {
    margin-top: .65rem;
}

.footer-link-list a {
    color: var(--brand-gray);
    font-size: .875rem;
    font-weight: 500;
}

.footer-link-list a:hover {
    color: var(--brand-red);
}

.footer-app-desc {
    color: var(--brand-gray);
    font-size: .875rem;
    margin-bottom: 1rem;
}

.footer-store-badges {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-store-badges .store-badge {
    width: fit-content;
}

.footer-desc {
    color: var(--brand-gray);
    font-size: .8125rem;
    line-height: 1.6;
    padding: 1.5rem 0;
    margin: 0;
}

.footer-bottom-bar {
    background: #fafafa;
    border-top: 1px solid var(--brand-border);
    padding: 1rem 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--brand-gray);
    font-size: .8125rem;
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: var(--brand-red);
}

.footer-copyright {
    text-align: center;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-dark);
    padding: 1.25rem 0;
}

@media (max-width: 767.98px) {
    .site-footer {
        margin: 1rem .75rem;
        border: 1px solid var(--brand-border);
        border-radius: 12px;
        overflow: hidden;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-columns {
        padding: 1.5rem 0;
    }

    .footer-columns .row > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 1.5rem;
        margin-bottom: 0;
        border-top: 1px solid var(--brand-border);
    }

    .footer-columns .row > div:first-child {
        border-top: none;
        padding-top: 0;
    }

    .footer-col-split {
        gap: 2rem;
        margin-left: 1.25rem;
    }

    .footer-col-split .footer-link-list {
        flex: 0 0 140px;
    }

    .footer-col-split .footer-link-list:first-child {
        padding-right: 2rem;
        border-right: 1px solid var(--brand-border);
    }

    .footer-app-desc {
        text-align: center;
    }

    .footer-store-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem 1.5rem;
        text-align: left;
        margin-left: 1.25rem;
    }

    .footer-bottom-bar .container {
        display: flex;
        justify-content: center;
    }
}

/* ===== HEADER LEFT / MOBİL MENÜ ===== */
.header-left {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* ===== MOBİL OFFCANVAS MENÜ ===== */
.mobile-menu-offcanvas {
    width: 300px;
}

.mobile-menu-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--brand-border);
    padding: 1.1rem 1.25rem;
}

.mobile-menu-offcanvas .offcanvas-body {
    padding: 1.25rem;
}

.offcanvas-main-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.offcanvas-main-nav a {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .9375rem;
    letter-spacing: .02em;
    padding: .6rem 0;
}

.offcanvas-main-nav a:hover,
.offcanvas-main-nav a.active {
    color: var(--brand-red);
}

.offcanvas-secondary-links {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.offcanvas-divider {
    margin: 1rem 0;
    border: none;
    border-top: 1px solid var(--brand-border);
    opacity: 1;
}

.offcanvas-tabs {
    display: flex;
    border-bottom: 1px solid var(--brand-border);
    margin: -.25rem -.25rem 1.25rem;
}

.offcanvas-tab {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--brand-gray);
    font-weight: 700;
    font-size: .9375rem;
    padding: .75rem .5rem;
}

.offcanvas-tab.active {
    color: var(--brand-dark);
    border-bottom-color: var(--brand-red);
}

.offcanvas-search-box {
    position: relative;
    display: block;
    margin-bottom: 1.25rem;
}

.offcanvas-search-box input {
    width: 100%;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    padding: .7rem 2.5rem .7rem .9rem;
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
}

.offcanvas-search-box input::placeholder {
    color: #9ca3af;
}

.offcanvas-search-box .material-symbols-outlined {
    position: absolute;
    top: 50%;
    right: .8rem;
    transform: translateY(-50%);
    color: var(--brand-gray);
    font-size: 1.15rem;
}

.offcanvas-accordion {
    border-bottom: 1px solid var(--brand-border);
}

.offcanvas-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .9375rem;
    padding: .85rem 0;
}

.offcanvas-accordion-header .material-symbols-outlined {
    color: var(--brand-gray);
    font-size: 1.3rem;
}

.offcanvas-accordion-header[aria-expanded="true"] {
    color: var(--brand-red);
}

.offcanvas-accordion-body {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding-bottom: .75rem;
}

.offcanvas-accordion-body a {
    color: var(--brand-gray);
    font-size: .875rem;
    font-weight: 500;
    padding: .45rem 0 .45rem .5rem;
}

.offcanvas-accordion-body a:hover {
    color: var(--brand-red);
}

/* ===== KATEGORİ SAYFASI ===== */
.category-page-header {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .8125rem;
    color: var(--brand-gray);
    margin-bottom: .6rem;
}

.breadcrumb-nav a {
    color: var(--brand-gray);
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--brand-red);
}

.breadcrumb-nav .material-symbols-outlined {
    font-size: 1rem;
}

.breadcrumb-nav span:last-child {
    color: var(--brand-dark);
    font-weight: 700;
}

.category-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0;
    padding-left: .8rem;
    border-left: 4px solid var(--brand-red);
}

.category-page-desc {
    color: var(--brand-gray);
    font-size: .9375rem;
    line-height: 1.5;
    margin: .6rem 0 0;
    padding-left: .8rem;
    max-width: 700px;
}

.category-page-content {
    padding-bottom: 3rem;
}

.category-content-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
}

.category-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.category-news-item {
    display: flex;
    gap: 1.25rem;
    color: inherit;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--brand-border);
}

.category-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-news-thumb {
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

.category-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.category-news-item:hover .category-news-thumb img {
    transform: scale(1.05);
}

.category-news-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.category-news-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.35;
    margin: .6rem 0 .5rem;
}

.category-news-item:hover .category-news-title {
    color: var(--brand-red);
}

.category-news-excerpt {
    font-size: .875rem;
    color: var(--brand-gray);
    line-height: 1.55;
    margin: 0 0 .6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-news-meta {
    font-size: .75rem;
    color: #9ca3af;
    font-weight: 600;
}

.category-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
}

.category-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .5rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--brand-border);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .875rem;
}

.category-page-link:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.category-page-link.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.category-page-dots {
    color: var(--brand-gray);
    font-weight: 700;
    padding: 0 .25rem;
}

/* VİDEO GALERİ */
.video-gallery {
    padding: 1.5rem 0 2.5rem;
}

.video-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.video-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--brand-border);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .8125rem;
}

.video-filter-pill:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.video-filter-pill.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.video-filter-count {
    background: rgba(0, 0, 0, .08);
    border-radius: 999px;
    padding: .05rem .45rem;
    font-size: .7rem;
}

.video-filter-pill.active .video-filter-count {
    background: rgba(255, 255, 255, .25);
}

.video-featured-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .video-featured-row,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .video-featured-row,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    display: block;
    color: inherit;
}

.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a2e;
    margin-bottom: .6rem;
}

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

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-featured .video-play-icon {
    width: 58px;
    height: 58px;
}

.video-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-featured .video-card-title {
    font-size: 1.1rem;
}

.video-card-meta {
    font-size: .75rem;
    color: var(--brand-gray);
}

.video-card:hover .video-card-title {
    color: var(--brand-red);
}

.video-detay {
    padding: 1.5rem 0 2.5rem;
}

.video-player-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1rem;
}

.video-player-frame iframe,
.video-player-frame img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-detay-desc {
    color: var(--brand-gray);
    font-size: .9375rem;
    line-height: 1.6;
}

/* FOTO GALERİ */
.galeri-count-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.galeri-lightbox-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    margin-bottom: .75rem;
}

.galeri-lightbox-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}

.galeri-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.galeri-nav-prev {
    left: 10px;
}

.galeri-nav-next {
    right: 10px;
}

.galeri-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px;
}

.galeri-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.galeri-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
}

.galeri-thumbs img.active,
.galeri-thumbs img:hover {
    opacity: 1;
    border-color: var(--brand-red);
}

.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.25rem;
}

/* Reklam widget'ı genel kenar çubuğu kart görünümünü (.sidebar-widget'ın beyaz zemin/çerçevesi)
   hiç kullanmaz — kendi içeriği (gerçek reklam görseli/HTML'i veya boş yer tutucu) zeminsiz oturur. */
.ic-kutu,
.ic-kutu-govde,
.ic-bos-yer-tutucu {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ic-kutu {
    width: 100%;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Reklam kutusundan hemen sonra gelen bölümün kendi üst boşluğu, kutunun margin-bottom'una eklenip
   alt boşluğu üsttekinden büyük gösteriyordu — bu durumda o boşluğu sıfırlayıp iki tarafı eşitler. */
.ic-kutu + .hero-wrap,
.ic-kutu + .split-widget {
    padding-top: 0;
}

.sidebar-widget-title {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .02em;
    border-left: 3px solid var(--brand-red);
    padding-left: .6rem;
    margin: 0 0 1rem;
}

.sidebar-ranked-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.sidebar-ranked-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: inherit;
}

.sidebar-rank-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-red);
    font-weight: 800;
    font-size: .8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-rank-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.4;
}

.sidebar-ranked-item:hover .sidebar-rank-title {
    color: var(--brand-red);
}

.sidebar-widget .weather-card {
    margin-bottom: 0;
}

.ic-kutu-govde {
    position: relative;
    width: 100%;
}

.ic-kutu-kapat {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0;
}

/* Görsel buton 22px kalsın ama mobilde dokunma alanı en az 44x44 olsun (WCAG 2.5.5 / Lighthouse tap-target) */
.ic-kutu-kapat::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.ic-kutu-kapat .material-symbols-outlined {
    font-size: 14px;
}

.ic-kutu-kapat:hover {
    background: rgba(0, 0, 0, .7);
}

.ic-panel {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.ic-panel-gorsel {
    padding: 0;
    overflow: hidden;
}

.ic-panel-gorsel img {
    width: 100%;
    display: block;
}

.ic-bos-yer-tutucu {
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    color: #94a3b8;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .04em;
}

.ic-icerik-yerlesim {
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.ic-panel-etiket {
    display: inline-block;
    background: rgba(255,255,255,.15);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .2rem .55rem;
    border-radius: 4px;
    margin-bottom: .85rem;
}

.ic-panel-baslik {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.sidebar-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.sidebar-social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-dark);
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}

.sidebar-social-circle:hover {
    color: #fff;
}

.sidebar-social-circle:nth-child(1):hover { background: #25d366; }
.sidebar-social-circle:nth-child(2):hover { background: #229ed9; }
.sidebar-social-circle:nth-child(3):hover { background: #1877f2; }
.sidebar-social-circle:nth-child(4):hover { background: #000; }
.sidebar-social-circle:nth-child(5):hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.sidebar-social-circle:nth-child(6):hover { background: #ff0000; }

@media (max-width: 575.98px) {
    .category-news-item {
        flex-direction: column;
    }

    .category-news-thumb {
        width: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .utility-bar .container {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .utility-bar .utility-links {
        gap: 1.25rem;
    }

    .utility-bar .utility-links a span:not(.material-symbols-outlined) {
        display: none;
    }

    .utility-bar .utility-links a .material-symbols-outlined {
        font-size: 20px;
    }

    .main-nav {
        display: none;
    }

    .hero-card .hero-body {
        padding-left: 3.5rem;
        max-width: 60%;
    }

    .hero-card .hero-title {
        font-size: 1.5rem;
    }

    .hero-card .hero-image {
        left: 15%;
    }

    .apps-mega-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        overflow-y: auto;
    }

    .mega-menu-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mega-sidebar {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--brand-border);
        padding-right: 0;
        padding-bottom: 1.25rem;
    }

    .mega-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mega-menu-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }
}

@media (max-width: 575.98px) {
    .utility-bar .utility-links {
        gap: .875rem;
    }

    .hero-pagination {
        left: .75rem;
    }

    .hero-card .hero-body {
        padding: 1.5rem 1.25rem 1.5rem 3rem;
        max-width: 100%;
    }

    .hero-card .hero-image {
        opacity: .25;
        left: 0;
    }
}

/* ===== STATİK SAYFA (KÜNYE / GİZLİLİK / KVKK vb.) ===== */
.page-toc {
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.page-toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 .75rem;
}

.page-toc ol {
    margin: 0;
    padding-left: 1.1rem;
}

.page-toc li + li {
    margin-top: .4rem;
}

.page-toc a {
    color: var(--brand-gray);
    font-size: .9375rem;
    font-weight: 500;
}

.page-toc a:hover {
    color: var(--brand-red);
}

.page-content-body {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
}

.page-content-body h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 2rem 0 .9rem;
}

.page-content-body h2:first-of-type {
    margin-top: 0;
}

.page-content-body p {
    color: #333;
    font-size: .9375rem;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.page-content-body ul,
.page-content-body ol {
    color: #333;
    font-size: .9375rem;
    line-height: 1.75;
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.page-content-body li + li {
    margin-top: .35rem;
}

.page-content-body a {
    color: var(--brand-red);
    font-weight: 600;
}

.page-content-body a:hover {
    text-decoration: underline;
}

.page-content-body blockquote {
    border-left: 4px solid var(--brand-red);
    background: #fdf3f2;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: .9375rem;
    line-height: 1.7;
    padding: 1rem 1.25rem;
    margin: 0 0 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* ===== HABER DETAY ===== */
.news-category-badge.cat-politika { background: var(--brand-red); }

.article-header-bar {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
    padding: 1rem 0;
}

.article-title-section {
    background: #fff;
    padding: 1.25rem 0 1.5rem;
    margin-bottom: 1.5rem;
}

.article-header-bar .breadcrumb-nav {
    flex-wrap: wrap;
    margin-right: 1rem;
}

.article-header-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.article-page {
    padding-bottom: 3rem;
}

.article-content-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--brand-dark);
    margin: 0 0 .6rem;
}

.article-excerpt {
    font-size: 1.0625rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 .85rem;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: .9rem;
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .8125rem;
    color: var(--brand-gray);
    font-weight: 500;
}

.article-meta-item .material-symbols-outlined {
    font-size: 1.05rem;
}

.article-meta-location {
    text-decoration: none;
}

.article-meta-location:hover {
    color: var(--brand-red);
}

.article-meta-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: auto;
}

.btn-subscribe {
    background: var(--brand-red);
    color: #fff;
    border: none;
    font-size: .8125rem;
    font-weight: 700;
    padding: .45rem 1rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-subscribe:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

.btn-google-news {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    border: 1px solid var(--brand-border);
    padding: .45rem 1rem;
    border-radius: 6px;
}

.btn-google-news:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.article-media {
    margin: 0 0 1.25rem;
}

.article-media-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.article-media-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-media-expand {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-media-expand:hover {
    background: var(--brand-red);
}

.image-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,8,10,.95);
    z-index: 1070;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
}

.image-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.image-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1071;
}

.image-lightbox-close:hover {
    background: rgba(255,255,255,.22);
}

.article-media-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,0));
    color: #fff;
    font-size: .8125rem;
    padding: 1.5rem .9rem .6rem;
}

.article-media-caption .material-symbols-outlined {
    font-size: 1rem;
}

.article-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    border-bottom: 1px solid var(--brand-border);
}

.article-toolbar-left,
.article-toolbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
}

.article-toolbar-left .article-meta-row {
    margin-bottom: 0;
}

.article-toolbar-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
}

.article-toolbar-left .article-toolbar-group:first-child {
    padding-right: .9rem;
    border-right: 1px solid var(--brand-border);
}

@media (max-width: 767.98px) {
    .article-toolbar-left .article-toolbar-group:first-child {
        padding-right: 0;
        border-right: none;
        padding-bottom: .6rem;
        margin-bottom: .6rem;
        border-bottom: 1px solid var(--brand-border);
    }

    .article-toolbar-left .article-toolbar-group:last-child {
        padding-bottom: .6rem;
        margin-bottom: .6rem;
        border-bottom: 1px solid var(--brand-border);
    }
}

.article-fontsize-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .35rem .55rem;
}

.article-fontsize-label {
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--brand-gray);
    white-space: nowrap;
}

.article-fontsize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    color: var(--brand-gray);
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1;
}

.article-fontsize-btn:hover {
    color: var(--brand-dark);
}

.article-fontsize-btn-accent {
    color: #5b5fe8;
}

.article-fontsize-btn-accent:hover {
    color: #4548c9;
}

.article-fontsize-value {
    font-size: .75rem;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}

.article-tts-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .35rem .6rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}

.article-tts-btn .material-symbols-outlined {
    font-size: 1rem;
    color: #5b5fe8;
}

.article-tts-btn:hover {
    border-color: #5b5fe8;
    color: #5b5fe8;
}

.article-tts-btn:hover .material-symbols-outlined {
    color: #5b5fe8;
}

.article-source {
    font-size: .75rem;
    color: var(--brand-gray);
    white-space: nowrap;
}

.article-source strong {
    color: var(--brand-dark);
}

.article-read-time {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .35rem .6rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-gray);
    white-space: nowrap;
}

.article-read-time .material-symbols-outlined {
    font-size: 1rem;
    color: var(--brand-gray);
}

.article-read-time:hover {
    border-color: #5b5fe8;
    color: #5b5fe8;
}

.article-read-time:hover .material-symbols-outlined {
    color: #5b5fe8;
}

.article-share {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.article-share span {
    font-size: .75rem;
    color: var(--brand-gray);
    font-weight: 500;
    white-space: nowrap;
}

.article-share-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--brand-border);
    background: #fff;
    color: var(--brand-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-share-icon:hover {
    background: #fff;
    border-color: #5b5fe8;
    color: #5b5fe8;
}

.article-share-more .material-symbols-outlined {
    font-size: 1.1rem;
}

.article-body {
    --article-font-size: 1rem;
}

.article-body p {
    color: #262626;
    font-size: var(--article-font-size);
    line-height: 1.85;
    margin: 0 0 1.15rem;
}

.article-body a {
    color: var(--brand-red);
    font-weight: 600;
}

.article-body a:hover {
    text-decoration: underline;
}

.article-body h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.35;
    margin: 1.75rem 0 1rem;
    padding-left: .7rem;
    border-left: 4px solid var(--brand-red);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-related-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--brand-red);
    border-radius: 8px;
    padding: .75rem .9rem;
    margin: 0 0 1.25rem;
}

.article-related-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
}

.article-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.article-related-label {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
}

.article-related-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.article-related-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #fff;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.article-related-box:hover .article-related-arrow {
    transform: translateX(3px);
}

.article-quote {
    position: relative;
    background: #fdf3f2;
    border-left: 4px solid var(--brand-red);
    border-radius: 0 8px 8px 0;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.6;
    padding: 1.5rem 1.75rem 1.5rem 3rem;
    margin: 0 0 1.5rem;
}

.article-quote::before {
    content: "\201C";
    position: absolute;
    top: -.3rem;
    left: .75rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-red);
    opacity: .35;
    font-family: Georgia, serif;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-tag {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-gray);
    background: #f4f5f7;
    padding: .4rem .8rem;
    border-radius: 20px;
}

.article-tag:hover {
    background: var(--brand-red);
    color: #fff;
}

.article-tag-text {
    display: inline;
    font: inherit;
    color: inherit;
    margin: 0;
}

/* ===== YORUM ALANI ===== */
.comments-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
    margin-top: 1.5rem;
}

.comments-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.btn-comment-login {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: none;
    border: none;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-red);
}

/* ---------- İkon boyutu/renk yardımcı sınıfları (yorum bölümü) ---------- */
.pm-icon-14 { font-size: 14px; }
.pm-icon-16 { font-size: 16px; }
.pm-icon-18 { font-size: 18px; }
.pm-icon-20 { font-size: 20px; }
.pm-icon-amber { color: #f0ad4e; }
.pm-icon-red { color: #e05353; }
.pm-avatar-cover { object-fit: cover; }

/* ---------- Yorum bölümü: Disqus benzeri yorum kutusu ---------- */
#yorum-yap, [id^="yorum-"] { scroll-margin-top: 100px; }

.pm-comment-box {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #fff;
}
.pm-comment-box .dropdown-toggle::after { margin-left: 4px; }
.pm-comment-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e9ecef;
    color: #adb5bd;
}
.pm-comment-editor {
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    overflow: hidden;
}
.pm-comment-editor textarea {
    resize: none;
    box-shadow: none !important;
}
.pm-comment-editor textarea::placeholder {
    font-style: italic;
    color: #adb5bd;
}
.pm-comment-toolbar {
    background: #f8f9fa;
    color: #868e96;
    font-size: 14px;
}
.pm-comment-toolbar b, .pm-comment-toolbar i, .pm-comment-toolbar u, .pm-comment-toolbar s, .pm-comment-toolbar span {
    cursor: pointer;
    font-style: normal;
}
.pm-comment-toolbar i { font-style: italic; }
.pm-yorum-baslik {
    display: inline-block;
    letter-spacing: .04em;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--brand-red);
}

/* ---------- Yorum bölümü: yorum listesi (Disqus benzeri thread görünümü) ---------- */
.pm-comment-item {
    position: relative;
    padding: 16px 0 16px 60px;
}
.pm-comment-item .pm-comment-avatar {
    position: absolute;
    left: 0;
    top: 16px;
}
.pm-comment-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 64px;
    bottom: 16px;
    width: 1px;
    background: var(--brand-border);
}
.pm-comment-item:last-child::before { display: none; }
.pm-comment-author { color: var(--brand-red); }
.pm-comment-dotted { border-bottom: 1px dashed #d7d9e0; }
.pm-comment-footer { border-top: 1px solid #eef0f3; }
.pm-comment-vote, .pm-comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #d7d9e0;
    border-radius: 999px;
    background: #fff;
    color: #868e96;
    font-size: 13px;
    padding: 4px 12px;
    cursor: pointer;
}
.pm-comment-vote:hover { border-color: #adb5bd; color: #495057; }
.pm-comment-vote.is-active.is-up { border-color: #2f9e44; background: #ebfbee; color: #2f9e44; }
.pm-comment-vote.is-active.is-down { border-color: #e03131; background: #fff5f5; color: #e03131; }
.pm-comment-vote-score { font-size: 13px; font-weight: 600; color: #868e96; min-width: 16px; text-align: center; }
.pm-comment-vote-score.is-up { color: #2f9e44; }
.pm-comment-vote-score.is-down { color: #e03131; }
.pm-comment-reply-btn { margin-left: auto; }
.pm-comment-replies { margin-left: 60px; padding-left: 16px; border-left: 1px solid var(--brand-border); }
.pm-comment-replies .pm-comment-item::before { display: none; }
.pm-comment-reply-form textarea { resize: none; }
[x-cloak] { display: none !important; }

.comment-form {
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.75rem;
}

.comment-form-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.comment-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #fff;
    padding: .7rem .9rem;
    font-size: .875rem;
    color: var(--brand-dark);
    resize: vertical;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--brand-red);
}

.comment-form-toolbar {
    display: flex;
    gap: .4rem;
    margin: .75rem 0 0 3.15rem;
}

.comment-form-toolbar button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--brand-border);
    background: #fff;
    color: var(--brand-gray);
    border-radius: 5px;
    font-size: .8125rem;
}

.btn-comment-submit {
    display: block;
    margin: .9rem 0 0 3.15rem;
    background: var(--brand-red);
    color: #fff;
    border: none;
    font-size: .875rem;
    font-weight: 700;
    padding: .55rem 1.4rem;
    border-radius: 8px;
}

.btn-comment-submit:hover {
    background: var(--brand-red-dark);
}

.btn-comment-submit--login {
    display: inline-block;
    margin: .9rem auto 0;
    text-decoration: none;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: .75rem 1rem;
    margin-bottom: 1.25rem;
}

.comments-count {
    margin: 0;
}

.comments-toggle-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    cursor: pointer;
}

.comments-toggle-chevron-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--brand-gray);
    cursor: pointer;
}

.comments-toggle-chevron-btn:hover {
    color: var(--brand-red);
}

.comments-header-actions {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: var(--brand-gray);
}

.btn-comment-sort {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 6px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    padding: .35rem .75rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.comment-item {
    display: flex;
    gap: .75rem;
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1rem;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--brand-red);
}

.comment-verified {
    font-size: .9rem;
    color: var(--brand-gray);
}

.comment-time {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .75rem;
    color: var(--brand-gray);
    margin: .2rem 0 .5rem;
}

.comment-time .material-symbols-outlined {
    font-size: .9rem;
}

.comment-text {
    font-size: .9375rem;
    color: var(--brand-dark);
    margin: 0 0 .6rem;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.comment-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--brand-gray);
    padding: .3rem .7rem;
}

.comment-vote-btn .material-symbols-outlined {
    font-size: .95rem;
}

.comment-vote-up:hover {
    border-color: #16a34a;
    color: #16a34a;
}

.comment-vote-down:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.btn-comment-reply {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-dark);
    padding: .3rem .8rem;
}

.btn-comment-reply:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.comment-reply-form {
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px dashed var(--brand-border);
}

.comment-reply-form .comment-avatar {
    width: 30px;
    height: 30px;
}

.comment-reply-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
    margin: .6rem 0 0 2.55rem;
}

.btn-comment-reply-cancel {
    background: none;
    border: none;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-gray);
    padding: .5rem .5rem;
}

.btn-comment-reply-cancel:hover {
    color: var(--brand-dark);
}

.btn-comment-submit-sm {
    margin: 0;
    font-size: .8125rem;
    padding: .5rem 1.1rem;
}

/* ===== SIDEBAR: EN ÇOK OKUNAN / SON DAKİKA PANELİ ===== */
.aside-panel {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    overflow: hidden;
}

.aside-panel-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--brand-red);
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: .8rem 1rem;
}

.aside-panel-header-dark {
    background: var(--brand-dark);
}

.aside-panel-slide {
    position: relative;
    aspect-ratio: 16 / 10;
}

.aside-slide-thumb {
    display: block;
    width: 100%;
    height: 100%;
}

.aside-slide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside-slide-nav:hover {
    background: var(--brand-red);
    color: #fff;
}

.aside-slide-prev { left: .6rem; }
.aside-slide-next { right: .6rem; }

.aside-slide-title {
    display: block;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--brand-border);
}

.aside-slide-title h3 {
    font-size: .9375rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.35;
    margin: 0;
}

.aside-slide-title:hover {
    color: var(--brand-red);
}

.aside-list {
    list-style: none;
    margin: 0;
    padding: .5rem 1rem 1rem;
}

.aside-list-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .5rem;
    margin: 0 -.5rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--brand-border);
    transition: background-color .15s ease;
}

.aside-list-item:hover {
    background-color: #f8f9fb;
}

.aside-list li:last-child .aside-list-item {
    border-bottom: none;
    padding-bottom: 0;
}

.aside-list-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
}

.aside-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-list-title {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
}

.aside-list-item:hover .aside-list-title {
    color: var(--brand-red);
}

.aside-list-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .55rem;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.aside-list-more .material-symbols-outlined {
    font-size: 1.1rem;
}

.aside-list-more:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.aside-flash-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.aside-flash-list {
    list-style: none;
    margin: 0;
    padding: 1.1rem 1.25rem 1.1rem 2.35rem;
}

.aside-flash-timeline {
    position: relative;
}

.aside-flash-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--brand-border);
}

.aside-flash-list li {
    position: relative;
    padding: .75rem 0;
}

.aside-flash-list li:first-child {
    padding-top: 0;
}

.aside-flash-list li:last-child {
    padding-bottom: 0;
}

.aside-flash-timeline li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: .9rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--brand-border);
}

.aside-flash-time {
    display: block;
    font-size: .6875rem;
    color: var(--brand-gray);
    margin-bottom: .2rem;
}

.aside-flash-title {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.4;
}

.aside-flash-title:hover {
    color: var(--brand-red);
}

/* ===== GÜNÜN ANKETİ ===== */
.poll-widget {
    display: block;
}

.poll-widget:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.poll-widget-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

.poll-widget-question {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.4;
    margin: 0 0 1rem;
}

.poll-widget-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: .9rem;
    border-top: 1px solid var(--brand-border);
}

.poll-widget-cta {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--brand-red);
}

.poll-widget-cta .material-symbols-outlined {
    font-size: 1rem;
}

.poll-vote-count {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.poll-vote-count .material-symbols-outlined {
    font-size: 1rem;
}

.poll-detail-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.25rem 0;
}

.poll-detail-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    align-self: flex-start;
    background: var(--brand-red);
    border: none;
    border-radius: 6px;
    padding: .6rem 1.25rem;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
}

.poll-detail-submit:hover {
    background: var(--brand-dark);
}

.poll-detail-submit .material-symbols-outlined {
    font-size: 1.1rem;
}

.poll-detail-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.poll-detail-option:hover {
    border-color: var(--brand-red);
}

.poll-detail-option-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.poll-detail-option-icon {
    font-size: 1.3rem;
    color: var(--brand-red);
    flex-shrink: 0;
}

.poll-detail-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
}

.poll-detail-results-bars {
    width: 100%;
}

.poll-detail-pie-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brand-border);
}

.poll-detail-pie {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    flex-shrink: 0;
}

.poll-detail-pie-legend {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.poll-detail-pie-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--brand-dark);
    white-space: nowrap;
}

.poll-detail-pie-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.poll-detail-pie-legend-pct {
    font-weight: 700;
    color: var(--brand-gray);
}

@media (max-width: 767px) {
    .poll-detail-pie-wrap {
        width: 100%;
        justify-content: center;
    }
}

.poll-detail-result-row {
    display: grid;
    grid-template-columns: minmax(110px, 220px) 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--brand-border);
}

.poll-detail-result-row:last-of-type {
    border-bottom: none;
}

.poll-detail-result-name {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--brand-dark);
}

.poll-detail-result-img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.poll-detail-result-icon {
    font-size: 1.15rem;
    color: var(--brand-red);
    flex-shrink: 0;
}

.poll-detail-result-track {
    background: #eef0f2;
    border-radius: 6px;
    height: 22px;
    overflow: hidden;
}

.poll-detail-result-fill {
    height: 100%;
    border-radius: 6px;
    transition: width .4s ease;
}

.poll-detail-result-pct {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--brand-dark);
    text-align: right;
    white-space: nowrap;
    min-width: 90px;
}

.poll-detail-total {
    font-size: .85rem;
    color: var(--brand-gray);
    margin-top: .5rem;
}

.sidebar-ad-banner-plain {
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1rem;
}

.sidebar-ad-banner-label {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    color: var(--brand-gray);
    letter-spacing: .04em;
    margin-bottom: .6rem;
}

.sidebar-ad-banner-box {
    display: block;
    border: 2px dashed var(--brand-border);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-gray);
    line-height: 1.6;
}

.sidebar-ad-banner-box strong {
    color: var(--brand-red);
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .article-header-bar .container {
        flex-wrap: wrap;
        gap: .75rem;
    }

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

    .article-meta-actions {
        margin-left: 0;
        width: 100%;
    }

    .article-toolbar-left,
    .article-toolbar-right {
        width: 100%;
    }

    .article-toolbar-group {
        width: 100%;
    }

    .article-share {
        margin-left: 0;
    }

    .article-content-card {
        padding: 1.25rem 1rem;
    }
}

/* ===== YAZAR / EDİTÖR KUTUSU ===== */
.article-author-row {
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
}

.article-author-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
}

.article-author-avatar {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-author-avatar .material-symbols-outlined {
    font-size: 1.6rem;
}

.article-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author-title {
    display: block;
    font-size: .8125rem;
    color: var(--brand-gray);
    margin-top: .15rem;
}

.article-author-info {
    flex: 1;
    min-width: 0;
}

.article-author-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.article-author-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: .02em;
}

.article-author-socials {
    display: flex;
    gap: .4rem;
}

.article-author-social {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f4f5f7;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-author-social:hover {
    background: var(--brand-red);
    color: #fff;
}

.article-author-link {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-red);
    margin: .5rem 0 .25rem;
}

.article-author-link:hover {
    text-decoration: underline;
}

.article-author-mail {
    display: block;
    font-size: .8125rem;
    color: var(--brand-gray);
}

/* ===== RESMİ İLANLAR ===== */
.ilan-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.ilan-filter-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.ilan-filter-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--brand-gray);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.ilan-filter-input-box {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: .55rem .8rem;
    background: #f8f9fb;
}

.ilan-filter-input-box .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--brand-gray);
}

.ilan-filter-input-box input {
    border: none;
    background: none;
    font-size: .875rem;
    color: var(--brand-dark);
    outline: none;
    min-width: 130px;
}

.ilan-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--brand-red);
    color: #fff;
    border: none;
    font-size: .875rem;
    font-weight: 700;
    padding: .7rem 1.4rem;
    border-radius: 8px;
    margin-left: auto;
}

.ilan-filter-btn:hover {
    background: var(--brand-red-dark);
}

.ilan-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ilan-card {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.25rem;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ilan-card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.ilan-card-thumb {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.ilan-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.ilan-card:hover .ilan-card-thumb img {
    transform: scale(1.05);
}

.ilan-card-body {
    flex: 1;
    min-width: 0;
}

.ilan-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .6rem;
}

.ilan-card-basin {
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.ilan-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.4;
    margin: 0 0 .5rem;
}

.ilan-card:hover .ilan-card-title {
    color: var(--brand-red);
}

.ilan-card-desc {
    font-size: .875rem;
    color: var(--brand-gray);
    line-height: 1.6;
    margin: 0 0 .85rem;
}

.ilan-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: .75rem;
    border-top: 1px solid var(--brand-border);
}

.ilan-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8125rem;
    color: var(--brand-gray);
    font-weight: 500;
}

.ilan-card-meta-item .material-symbols-outlined {
    font-size: 1.05rem;
}

.ilan-cta-banner {
    display: block;
    background: var(--brand-dark);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
}

.ilan-cta-banner .material-symbols-outlined {
    font-size: 2rem;
    color: var(--brand-red);
    margin-bottom: .5rem;
}

.ilan-cta-title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .4rem;
}

.ilan-cta-desc {
    display: block;
    font-size: .8125rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ilan-cta-btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    padding: .55rem 1.4rem;
    border-radius: 8px;
}

.ilan-cta-banner:hover .ilan-cta-btn {
    background: var(--brand-red-dark);
}

@media (max-width: 767.98px) {
    .ilan-filter-bar {
        align-items: stretch;
    }

    .ilan-filter-btn {
        margin-left: 0;
        justify-content: center;
        padding: .55rem .8rem;
        width: 100%;
    }

    .ilan-card-header {
        flex-wrap: wrap;
    }

    .ilan-card {
        flex-direction: column;
    }

    .ilan-card-thumb {
        width: 100%;
    }
}

/* ===== İLAN DETAY SAYFASI ===== */
.ilan-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.ilan-detail-grid-full {
    grid-template-columns: 1fr;
}
.ilan-govtr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .75rem 0 0;
    font-size: .875rem;
}
.ilan-govtr-link {
    color: var(--brand-red);
    font-weight: 700;
}
.ilan-govtr-link:hover {
    text-decoration: underline;
}
.ilan-govtr-basinno {
    color: var(--brand-gray);
    font-weight: 600;
}

@media print {
    body * {
        visibility: hidden;
    }
    .ilan-detail-main,
    .ilan-detail-main * {
        visibility: visible;
    }
    .ilan-detail-main {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
        border: none;
    }
    .no-print {
        display: none !important;
    }
}
.ilan-detail-title {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--brand-dark);
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.ilan-detail-main {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.75rem;
}

.ilan-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem 2rem;
    padding: 0.75rem 0 1rem;
    border-bottom: 1px solid var(--brand-border);
    margin-bottom: 1.25rem;
}

.ilan-card-meta-item-sag {
    margin-left: auto;
}

/* TABLO */
.ilan-detail-table-wrap {
    margin: 1.25rem 0 1.5rem;
    overflow-x: auto;
}
.ilan-table-notice {
    font-size: 0.8125rem;
    color: var(--brand-gray);
    margin-bottom: 0.5rem;
}
.ilan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.ilan-table thead th {
    background: var(--brand-red);
    color: #fff;
    padding: 0.5rem 0.6rem;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid var(--brand-red);
}
.ilan-table tbody td {
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--brand-border);
    vertical-align: middle;
}
.ilan-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}
.ilan-table tbody tr:hover {
    background: #f1f3f5;
}

/* İLAN METNİ */
.ilan-detail-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #262626;
    margin-bottom: 1rem;
}
.ilan-detail-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
}
.ilan-detail-list li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #262626;
    padding: 0.2rem 0;
    padding-left: 0.5rem;
}
.ilan-detail-list li strong {
    color: var(--brand-dark);
}
.ilan-detail-signature {
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 1rem;
}

/* İLETİŞİM */
.ilan-detail-contact {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--brand-border);
}
.ilan-detail-contact h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--brand-dark);
}
.ilan-detail-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
}
.ilan-detail-contact .material-symbols-outlined {
    color: var(--brand-gray);
    font-size: 1.1rem;
}

/* PAYLAŞ BÖLÜMÜ */
.ilan-detail-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--brand-border);
}
.ilan-share-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ilan-share-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ilan-share-right span {
    font-weight: 600;
    color: var(--brand-gray);
    font-size: 0.875rem;
}
.ilan-share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--brand-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gray);
    transition: all 0.15s ease;
}
.ilan-share-icon:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.ilan-share-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f8f9fb;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
}
.ilan-share-copy:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.ilan-detail-back {
    margin-top: 1.5rem;
}
.btn-ilan-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-gray);
    font-weight: 600;
    font-size: 0.875rem;
}
.btn-ilan-back:hover {
    color: var(--brand-red);
}

/* SAĞ BİLGİ KARTI */
.ilan-detail-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ilan-info-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.25rem;
}
.ilan-info-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    border-left: 3px solid var(--brand-red);
    padding-left: 0.6rem;
    margin-bottom: 1rem;
}
.ilan-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ilan-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--brand-border);
}
.ilan-info-list li:last-child {
    border-bottom: none;
}
.ilan-info-list li span {
    color: var(--brand-gray);
}
.ilan-info-list li strong {
    color: var(--brand-dark);
}
.ilan-info-list li a {
    color: var(--brand-red);
    font-weight: 600;
}
.ilan-info-list li a:hover {
    text-decoration: underline;
}
.ilan-cta-card {
    text-align: center;
    background: var(--brand-dark);
    color: #fff;
}
.ilan-cta-card .material-symbols-outlined {
    font-size: 2rem;
    color: var(--brand-red);
    display: block;
    margin-bottom: 0.5rem;
}
.ilan-cta-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.ilan-cta-card p {
    font-size: 0.8125rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.ilan-cta-btn-sm {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
}
.ilan-cta-btn-sm:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

/* BENZER İLANLAR */
.ilan-similar {
    margin-top: 2.5rem;
}
.ilan-similar .section-heading-title {
    font-size: 1.1rem;
    font-weight: 800;
    border-left: 3px solid var(--brand-red);
    padding-left: 0.6rem;
    margin-bottom: 1.25rem;
}
.ilan-card-mini {
    display: block;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1rem 1.15rem;
    height: 100%;
    color: inherit;
    transition: border-color 0.15s ease;
}
.ilan-card-mini:hover {
    border-color: var(--brand-red);
}
.ilan-card-mini .news-category-badge {
    display: inline-block;
    margin-bottom: 0.4rem;
}
.ilan-card-mini h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
    margin: 0 0 0.4rem;
}
.ilan-card-mini:hover h4 {
    color: var(--brand-red);
}
.ilan-card-mini p {
    font-size: 0.8125rem;
    color: var(--brand-gray);
    line-height: 1.5;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ilan-card-mini .ilan-card-basin {
    font-size: 0.6875rem;
    color: var(--brand-gray);
    font-weight: 600;
}

/* MOBİL UYUM */
@media (max-width: 991.98px) {
    .ilan-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ilan-table thead th,
    .ilan-table tbody td {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
        white-space: nowrap;
    }
}
@media (max-width: 575.98px) {
    .ilan-detail-main {
        padding: 1rem;
    }
    .ilan-detail-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
    .ilan-detail-share {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .ilan-share-left {
        justify-content: center;
    }
    .ilan-share-right {
        justify-content: center;
    }
    .ilan-table thead th,
    .ilan-table tbody td {
        font-size: 0.65rem;
        padding: 0.2rem 0.3rem;
    }
	
}

.ilan-detail-signature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 1rem;
}
.signature-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ilan-tag {
    color: var(--brand-red);
}
.ilan-basin-no {
    color: var(--brand-gray);
    font-weight: 500;
}

/* ===== KÜNYE SAYFASI ===== */

.kunye-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kunye-section {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.kunye-section-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--brand-red);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.kunye-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* label ile value arasındaki boşluk */
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--brand-border);
}

.kunye-row:last-child {
    border-bottom: none;
}

.kunye-ek-bilgi-ayrac {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid var(--brand-border);
}

.kunye-label {
    flex: 0 0 240px; /* sabit genişlik — en uzun etiket (Sorumlu Yazı İşleri Müdürü) tek satırda kalsın */
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-gray);
    /* text-align: left;  → zaten varsayılan */
}

.kunye-value {
    flex: 1; /* kalan alanı kapla */
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: left; /* sola hizalı */
    word-break: break-word; /* uzun kelimelerde taşmayı engelle */
}

/* ===== SIDEBAR - SADECE MENÜ LİSTESİ ===== */
.kunye-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kunye-sidebar-menu {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 0.75rem;
}

.kunye-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kunye-sidebar-menu li {
    margin: 0;
}

.kunye-sidebar-menu a {
    display: block;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-gray);
    background: transparent;
    transition: all 0.15s ease;
    text-decoration: none;
}

.kunye-sidebar-menu a:hover {
    color: var(--brand-red);
    background: #f3f4f6;
}

.kunye-sidebar-menu a.active {
    color: #fff;
    background: var(--brand-red);
}


/* Mobil Uyum */
@media (max-width: 991.98px) {
    .kunye-wrapper {
        padding: 1.25rem;
    }

    .kunye-row {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.6rem 0;
    }

    .kunye-label {
        flex: 0 0 auto;
        min-width: auto;
        font-size: 0.75rem;
    }

    .kunye-section {
        padding: 1rem;
    }
}

/* ===== HAVA DURUMU SAYFASI (/hava-durumu) ===== */
.hd-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 24px -16px rgba(15, 23, 42, .16);
}

.hd-il-sec {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hd-il-sec > .material-symbols-outlined {
    position: absolute;
    right: .75rem;
    color: var(--brand-dark);
    pointer-events: none;
    font-size: 1.1rem;
}

.hd-il-sec select {
    appearance: none;
    background: var(--body-bg);
    color: var(--brand-dark);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    font-weight: 700;
    font-size: .9375rem;
    padding: .6rem 2.5rem .6rem 1rem;
    min-width: 180px;
    cursor: pointer;
    transition: box-shadow .15s ease;
}

.hd-il-sec select:hover,
.hd-il-sec select:focus {
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .08);
    outline: none;
}

.hd-kart-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.hd-kart {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 16px;
    padding: 1.35rem 1.1rem 1.1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 24px -14px rgba(15, 23, 42, .18);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hd-kart:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 35, 26, .18);
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06), 0 20px 32px -16px rgba(15, 23, 42, .22);
}

.hd-kart-head {
    margin-bottom: .35rem;
}

.hd-kart-il {
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: .01em;
    color: var(--brand-dark);
    margin: 0;
}

.hd-kart-gun {
    font-size: .75rem;
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-kart-sicaklik {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .1rem;
}

.hd-kart-sicaklik strong {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--brand-dark);
}

.hd-kart-sicaklik span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.hd-kart-ikon {
    width: 44px;
    height: 44px;
    margin: .35rem 0 .5rem;
    padding: .6rem;
    box-sizing: content-box;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #eff6ff, #dbeafe 70%);
}

.hd-kart-aciklama {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: .75rem;
}

.hd-kart-detay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
    width: 100%;
    background: var(--body-bg);
    border-radius: 10px;
    padding: .7rem .5rem;
    margin-bottom: .6rem;
}

.hd-kart-detay span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.hd-kart-detay .material-symbols-outlined {
    font-size: 1rem;
    color: var(--brand-red);
}

.hd-kart-gelecek-satir {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    padding: .5rem 0;
    border-top: 1px solid rgba(15, 23, 42, .06);
    font-size: .8125rem;
}

.hd-kart-gelecek-gun {
    font-weight: 600;
    color: var(--brand-gray);
    flex: 1;
    text-align: left;
}

.hd-kart-gelecek-satir img {
    width: 24px;
    height: 24px;
}

.hd-kart-gelecek-sicaklik {
    font-weight: 700;
    color: var(--brand-dark);
}

.hd-kart-gelecek-sicaklik span {
    font-weight: 600;
    color: var(--brand-gray);
    margin-left: .25rem;
}

.hd-kart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    width: 100%;
    margin-top: .85rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(15, 23, 42, .06);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-dark);
    transition: color .15s ease, gap .15s ease;
}

.hd-kart-link:hover {
    color: var(--brand-red);
    gap: .5rem;
}

@media (max-width: 991.98px) {
    .hd-kart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hd-kart-grid {
        grid-template-columns: 1fr;
    }

    .hd-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
    }
}

/* ===== HAVA DURUMU İL DETAY SAYFASI (/hava-durumu/{il}) ===== */
.hd-detay-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 24px -16px rgba(15, 23, 42, .16);
}

.hd-detay-baslik {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--brand-dark);
    margin: 0 0 .25rem;
}

.hd-detay-tarih {
    font-size: .9375rem;
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-detay-kart {
    background: linear-gradient(135deg, #fff, #f4f8ff 65%, #eef4ff);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 18px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 18px 36px -18px rgba(29, 78, 216, .22);
}

.hd-detay-simdi {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(15, 23, 42, .08);
}

.hd-detay-il {
    font-size: .875rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--brand-gray);
    margin: 0 0 .6rem;
}

.hd-detay-simdi img {
    width: 64px;
    height: 64px;
    padding: .85rem;
    box-sizing: content-box;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #eff6ff, #dbeafe 70%);
}

.hd-detay-sicaklik {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin: .5rem 0 .15rem;
}

.hd-detay-sicaklik strong {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--brand-red);
}

.hd-detay-sicaklik span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-gray);
}

.hd-detay-aciklama {
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.hd-detay-metrikler {
    height: 100%;
}

.hd-detay-ozet {
    height: 100%;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(15, 23, 42, .08);
}

.hd-detay-ozet h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 .4rem;
}

.hd-detay-ozet p {
    font-size: .8125rem;
    color: var(--brand-gray);
    line-height: 1.6;
    margin: 0;
}

.hd-detay-ozet p strong {
    color: var(--brand-dark);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .hd-detay-ozet {
        border-left: none;
        padding-left: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(15, 23, 42, .08);
    }
}

.hd-detay-metrik-sutun {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.hd-detay-metrik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9375rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    padding: .65rem .9rem;
}

.hd-detay-metrik span {
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-detay-metrik strong {
    color: var(--brand-dark);
    font-weight: 800;
}

.hd-tab-baslik {
    margin-bottom: 2rem;
}

.hd-tab-nav {
    display: inline-flex;
    gap: .25rem;
    background: var(--body-bg);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 999px;
    padding: .3rem;
    margin-bottom: 1.5rem;
}

.hd-tab-nav button {
    background: none;
    border: none;
    border-radius: 999px;
    padding: .55rem 1.1rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-gray);
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.hd-tab-nav button.active {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 6px 14px -6px rgba(15, 23, 42, .18);
}

.hd-saatlik-scroll {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.hd-saat-kart {
    flex: 0 0 auto;
    width: 112px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 1.1rem .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 20px -14px rgba(15, 23, 42, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hd-saat-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06), 0 16px 28px -14px rgba(15, 23, 42, .2);
}

.hd-saat-zaman {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-gray);
}

.hd-saat-kart img {
    width: 36px;
    height: 36px;
}

.hd-saat-sicaklik {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.hd-saat-aciklama {
    font-size: .6875rem;
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-ongunluk-liste {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 24px -16px rgba(15, 23, 42, .16);
}

.hd-ongunluk-satir {
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.hd-ongunluk-satir:last-child {
    border-bottom: none;
}

.hd-ongunluk-satir-baslik {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: .85rem 1.25rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease;
}

.hd-ongunluk-satir-baslik:hover {
    background: var(--body-bg);
}

.hd-ongunluk-gun {
    flex: 0 0 130px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.hd-ongunluk-gun small {
    display: block;
    font-weight: 500;
    color: var(--brand-gray);
    font-size: .75rem;
}

.hd-ongunluk-aciklama {
    flex: 1;
    font-size: .8125rem;
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-ongunluk-sicaklik {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    min-width: 44px;
}

.hd-ongunluk-ekstra {
    display: flex;
    align-items: center;
    gap: .3rem;
    flex: 0 0 auto;
    font-size: .8125rem;
    color: var(--brand-gray);
    white-space: nowrap;
}

.hd-ongunluk-ekstra .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--brand-gray);
}

.hd-ongunluk-chevron {
    flex: none;
    margin-left: auto;
    color: var(--brand-gray);
    transition: transform .15s ease;
}

.hd-ongunluk-chevron.acik {
    transform: rotate(180deg);
}

.hd-ongunluk-satir-detay {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 0 1.25rem .9rem 1.25rem;
    font-size: .8125rem;
    color: var(--brand-gray);
    font-weight: 600;
}

.hd-ongunluk-satir-detay span {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.hd-ongunluk-satir-detay .material-symbols-outlined {
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .hd-ongunluk-satir-baslik {
        flex-wrap: wrap;
        gap: .5rem .75rem;
    }

    .hd-ongunluk-ekstra {
        flex: 1 1 100%;
    }
}

@media (max-width: 767.98px) {
    .hd-detay-kart {
        flex-direction: column;
        align-items: stretch;
    }

    .hd-detay-simdi {
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(15, 23, 42, .08);
    }

    .hd-detay-metrikler {
        padding-left: 0;
        padding-top: .25rem;
    }

    .hd-detay-topbar {
        flex-direction: column;
    }
}

/* ===== NAMAZ VAKİTLERİ SAYFASI (/namaz-vakitleri) ===== */
.nv-topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: linear-gradient(120deg, #0f8318, #25eb93 55% 55%, #a6f63b);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 10px 24px -8px rgba(29, 78, 216, .45);
}

.nv-il-sec {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nv-il-sec > .material-symbols-outlined {
    position: absolute;
    right: .75rem;
    color: var(--brand-dark);
    pointer-events: none;
    font-size: 1.1rem;
}

.nv-il-sec select {
    appearance: none;
    background: #fff;
    color: var(--brand-dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9375rem;
    padding: .6rem 2.5rem .6rem 1rem;
    min-width: 180px;
    cursor: pointer;
    transition: box-shadow .15s ease;
}

.nv-il-sec select:hover,
.nv-il-sec select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
    outline: none;
}

.nv-vakit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .85rem;
    margin-bottom: 1.5rem;
}

.nv-vakit-kart {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 1.25rem .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 22px -14px rgba(15, 23, 42, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.nv-vakit-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06), 0 18px 30px -14px rgba(15, 23, 42, .22);
}

.nv-vakit-kart .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-gray);
    width: 1.5rem;
    height: 1.5rem;
    padding: .55rem;
    border-radius: 50%;
    background: var(--body-bg);
}

.nv-vakit-etiket {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--brand-gray);
}

.nv-vakit-saat {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--brand-dark);
    font-variant-numeric: tabular-nums;
}

.nv-vakit-aktif {
    border-color: transparent;
    background: linear-gradient(120deg, #0f8318, #2fb177 55% 55%, #138f3a);
    box-shadow: 0 4px 10px rgba(226, 35, 26, .18), 0 18px 30px -14px rgba(226, 35, 26, .45);
}

.nv-vakit-aktif:hover {
    box-shadow: 0 6px 14px rgba(226, 35, 26, .22), 0 22px 34px -14px rgba(226, 35, 26, .5);
}

.nv-vakit-aktif .material-symbols-outlined {
    background: rgba(255, 255, 255, .18);
}

.nv-vakit-aktif .material-symbols-outlined,
.nv-vakit-aktif .nv-vakit-etiket,
.nv-vakit-aktif .nv-vakit-saat {
    color: #fff;
}

.nv-geri-sayim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: linear-gradient(135deg, #fff, #fff5f4);
    border: 1px solid rgba(226, 35, 26, .12);
    border-radius: 14px;
    padding: 1.1rem;
    margin-bottom: 1.75rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--brand-gray);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 22px -16px rgba(226, 35, 26, .3);
}

.nv-geri-sayim strong {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--brand-red);
    font-variant-numeric: tabular-nums;
}

.nv-aylik-baslik {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: .03em;
    margin-bottom: .85rem;
}

.nv-aylik-tablo-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 10px 24px -18px rgba(15, 23, 42, .18);
}

.nv-aylik-tablo {
    width: 100%;
    border-collapse: collapse;
    font-size: .8125rem;
    white-space: nowrap;
}

.nv-aylik-tablo th {
    background: var(--body-bg);
    color: var(--brand-gray);
    font-weight: 700;
    text-align: left;
    padding: .7rem .9rem;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.nv-aylik-tablo td {
    padding: .6rem .9rem;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    color: var(--brand-dark);
    font-weight: 600;
}

.nv-aylik-tablo tr:last-child td {
    border-bottom: none;
}

.nv-aylik-tablo tbody tr:hover td {
    background: var(--body-bg);
}

.nv-aylik-bugun td {
    background: #fff5f4;
    color: var(--brand-red);
}

.nv-aylik-bugun:hover td {
    background: #ffece9;
}

.nv-aylik-bugun td:first-child {
    box-shadow: inset 3px 0 0 var(--brand-red);
}

@media (max-width: 767.98px) {
    .nv-vakit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nv-topbar {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .nv-vakit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== NÖBETÇİ ECZANELER ===== */
.ne-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.ne-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 1.1rem;
}

.ne-card-top {
    margin-bottom: .6rem;
}

.ne-dist-badge {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 4px;
    margin-bottom: .4rem;
}

.ne-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.ne-address {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    color: var(--brand-gray);
    font-size: .8125rem;
    line-height: 1.4;
    margin-bottom: .9rem;
}

.ne-address .material-symbols-outlined {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

.ne-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ne-action-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid var(--brand-border);
    color: var(--brand-dark);
    font-size: .8125rem;
    font-weight: 700;
    padding: .45rem .8rem;
    border-radius: 8px;
}

.ne-action-btn .material-symbols-outlined {
    font-size: 1.05rem;
}

.ne-action-btn-primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

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

/* ---- Nöbetçi Eczaneler Widget'ı (kenar çubuğu) ---- */
.ne-widget-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1rem;
}

.ne-widget-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ne-widget-item .ne-dist-badge {
    margin-bottom: 0;
    flex-shrink: 0;
}

.ne-widget-name {
    flex: 1;
    min-width: 0;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ne-widget-phone {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--brand-red);
}

.ne-widget-phone .material-symbols-outlined {
    font-size: 1.05rem;
}

.ne-widget-all {
    display: block;
    text-align: center;
    background: var(--brand-red);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    padding: .55rem;
    border-radius: 8px;
}

.ne-widget-all:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

/* ===== KATEGORİ: ZAMAN TÜNELİ (SON DAKİKA) LİSTELEME GÖRÜNÜMÜ ===== */
.category-timeline {
    display: flex;
    flex-direction: column;
}

.category-timeline-ay {
    display: flex;
    position: relative;
    margin: 1.5rem 0 1rem;
}

.category-timeline-ay::after {
    content: "";
    position: absolute;
    left: 35px;
    transform: translateX(-50%);
    top: 70px;
    bottom: -1rem;
    width: 2px;
    background: var(--brand-border);
}

.category-timeline-ay-badge {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e9ecef;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: .8rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.category-timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.category-timeline-rail {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: .4rem;
}

.category-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-border);
    border: 2px solid #adb5bd;
    flex-shrink: 0;
    z-index: 1;
}

.category-timeline-rail::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 14px;
    bottom: -1.25rem;
    width: 2px;
    background: var(--brand-border);
}

.category-timeline-item:last-child .category-timeline-rail::after {
    display: none;
}

.category-timeline-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.category-timeline-tarih {
    font-size: .75rem;
    color: var(--brand-gray);
    white-space: nowrap;
}

.category-timeline-card {
    display: flex;
    gap: 1rem;
    min-width: 0;
    color: var(--brand-dark);
    align-items: flex-start;
}

.category-timeline-thumb {
    width: 180px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.category-timeline-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-timeline-content {
    padding-top: .1rem;
    min-width: 0;
}

.category-timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 .4rem;
}

.category-timeline-card:hover .category-timeline-title {
    color: var(--brand-red);
}

.category-timeline-excerpt {
    font-size: .85rem;
    color: var(--brand-gray);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .category-timeline-card {
        flex-direction: column;
    }

    .category-timeline-thumb {
        width: 100%;
        height: 160px;
    }
}

/* ===== FLAŞ HABER WIDGET ===== */
.flas-haber-bar {
    display: block;
    border-radius: 8px;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.flas-haber-inner {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 1rem;
}

.flas-haber-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: flas-haber-pulse 1.2s ease-in-out infinite;
}

.flas-haber-icon .material-symbols-outlined {
    font-size: 1.1rem;
}

@keyframes flas-haber-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: .75; }
}

.flas-haber-pop {
    animation: flas-haber-pop-in .45s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes flas-haber-pop-in {
    0% { transform: scale(.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.flas-haber-label {
    font-weight: 800;
    font-size: .8125rem;
    letter-spacing: .02em;
    flex-shrink: 0;
}

.flas-haber-sep {
    opacity: .5;
    flex-shrink: 0;
}

.flas-haber-title {
    color: inherit;
    font-weight: 600;
    font-size: .875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.flas-haber-title:hover {
    text-decoration: underline;
}

.flas-haber-close {
    background: none;
    border: none;
    color: inherit;
    opacity: .7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: .2rem;
}

.flas-haber-close:hover {
    opacity: 1;
}

/* ===== 404 SAYFA BULUNAMADI ===== */
.notfound-page {
    padding: 3.5rem 0 4rem;
}

.notfound-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.notfound-title-vurgu {
    color: var(--brand-red);
}

.notfound-desc {
    color: var(--brand-gray);
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.notfound-home-btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    letter-spacing: .03em;
    padding: .75rem 1.75rem;
    border-radius: 999px;
    margin-bottom: 2rem;
}

.notfound-home-btn:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

.notfound-search {
    display: flex;
    gap: .5rem;
    max-width: 480px;
}

.notfound-search-input {
    flex: 1;
    border: 1px solid var(--brand-border);
    border-radius: 999px;
    padding: .7rem 1.1rem;
    font-size: .875rem;
}

.notfound-search-input:focus {
    outline: none;
    border-color: var(--brand-red);
}

.notfound-search-btn {
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    letter-spacing: .03em;
    border: none;
    border-radius: 999px;
    padding: 0 1.75rem;
}

.notfound-search-btn:hover {
    background: var(--brand-red-dark);
}

.notfound-illustration {
    font-size: 12rem;
    color: var(--brand-border);
}

.notfound-illustration-img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.notfound-section {
    margin-top: 3rem;
}

.notfound-section-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}

.notfound-kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1.5rem 1rem;
}

.notfound-kategori-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--brand-dark);
    font-size: .8125rem;
    font-weight: 600;
    text-align: center;
}

.notfound-kategori-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    transition: background .15s ease;
}

.notfound-kategori-item:hover .notfound-kategori-icon {
    background: var(--brand-red);
    color: #fff;
}

.notfound-kategori-item:hover {
    color: var(--brand-red);
}

.notfound-bolum-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem 2rem;
}

.notfound-bolum-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid var(--brand-border);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: .9375rem;
}

.notfound-bolum-item .material-symbols-outlined {
    color: var(--brand-gray);
    font-size: 1.25rem;
}

.notfound-bolum-item:hover {
    color: var(--brand-red);
}

@media (max-width: 991.98px) {
    .notfound-illustration {
        font-size: 8rem;
    }

    .notfound-illustration-img {
        max-width: 260px;
    }
}