:root {
    --primary: #8b1538;
    --primary-dark: #6b0f2b;
    --primary-light: #c41e3a;
    --ottoman-teal: #0f4c3a;
    --ottoman-teal-light: #1a6b52;
    --ottoman-gold: #c9a227;
    --ottoman-gold-light: #e8d48b;
    --ottoman-cream: #f7f2e8;
    --dark: #1a2e28;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-500: #6c757d;
    --gray-300: #dee2e6;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --breaking: #8b1538;
    --shadow: 0 2px 12px rgba(15, 76, 58, .12);
    --radius: 6px;
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Amiri', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--ottoman-cream);
    line-height: 1.6;
}

/* Osmanli geometrik desen cizgisi */
.ottoman-pattern-line {
    height: 6px;
    background:
        repeating-linear-gradient(90deg, var(--ottoman-gold) 0 8px, transparent 8px 16px),
        linear-gradient(90deg, var(--ottoman-teal), var(--primary), var(--ottoman-teal));
    opacity: 0.9;
}

/* Ust bilgi bandi - tarih, namaz vakitleri */
.top-utility-bar {
    background: linear-gradient(180deg, #0a3d30 0%, var(--ottoman-teal) 100%);
    color: var(--ottoman-cream);
    font-size: 12px;
}
.top-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 15px;
    flex-wrap: nowrap;
}
.utility-datetime {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.utility-icon { color: var(--ottoman-gold); font-size: 14px; }
.utility-prayer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}
.utility-prayer-city {
    color: var(--ottoman-gold-light);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
}
.utility-prayer-times {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    flex-shrink: 1;
    min-width: 0;
}
.prayer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid rgba(201, 162, 39, .25);
    background: rgba(0,0,0,.15);
    min-width: 0;
    flex: 1 1 auto;
    max-width: 56px;
    transition: background .2s, border-color .2s;
}
.prayer-item em {
    font-style: normal;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--ottoman-gold-light);
    opacity: .85;
    white-space: nowrap;
}
.prayer-item strong {
    font-size: 11px;
    color: white;
    font-weight: 700;
    white-space: nowrap;
}
.prayer-item.prayer-active {
    background: rgba(201, 162, 39, .25);
    border-color: var(--ottoman-gold);
    box-shadow: 0 0 8px rgba(201, 162, 39, .3);
}
.utility-social { display: flex; gap: 8px; flex-shrink: 0; }
.utility-social a {
    color: var(--ottoman-gold-light);
    font-size: 11px;
    opacity: .85;
}
.utility-social a:hover { color: white; opacity: 1; }

/* Son dakika bandi */
.breaking-news-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    color: white;
    overflow: hidden;
    border-bottom: 2px solid var(--ottoman-gold);
}
.breaking-news-inner {
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E") repeat;
}
.breaking-news-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 15px;
}
.breaking-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ottoman-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-display);
}
.breaking-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}
.breaking-ticker { overflow: hidden; flex: 1; }
.ticker-content {
    display: flex;
    gap: 20px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}
.ticker-content a { color: white; font-size: 14px; font-weight: 500; }
.ticker-content a:hover { color: var(--ottoman-gold-light); }
.ticker-sep { color: var(--ottoman-gold); opacity: .7; font-size: 10px; }
.ticker-empty { color: rgba(255,255,255,.8); font-size: 13px; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}
.header-ornament {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ottoman-gold), transparent);
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-ornament {
    color: var(--ottoman-gold);
    font-size: 14px;
    opacity: .8;
}
.logo-text {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1.1;
}
.logo-accent { color: var(--ottoman-teal); }
.logo-tagline {
    display: block;
    font-size: 11px;
    color: var(--ottoman-gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-display);
}
.logo img { max-height: 50px; }
.header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 14px 0;
    gap: 16px;
}
.header-main .logo { justify-self: center; text-align: center; }
.header-main .mobile-menu-btn { justify-self: start; }
.header-main .header-search { justify-self: end; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.header-search form { display: flex; }
.header-search input {
    padding: 8px 14px;
    border: 2px solid var(--ottoman-gold);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    width: 250px;
    font-size: 14px;
    background: var(--ottoman-cream);
}
.header-search button {
    padding: 8px 16px;
    background: linear-gradient(180deg, var(--ottoman-teal-light), var(--ottoman-teal));
    color: white;
    border: 2px solid var(--ottoman-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    background: linear-gradient(180deg, var(--dark) 0%, #0f2920 100%);
    border-top: 2px solid var(--ottoman-gold);
    border-bottom: 2px solid var(--ottoman-gold);
}
.main-nav .container { padding: 0 15px; }
.main-nav ul {
    display: flex;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav a {
    display: block;
    padding: 12px 18px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: background .2s;
}
.main-nav a:hover { background: var(--primary); color: var(--ottoman-gold-light); }

/* Layout */
.page-wrapper { position: relative; max-width: 1400px; margin: 0 auto; }
.home-layout, .article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
    padding: 25px 0;
}
.site-main { min-height: 60vh; }
.home-page { background: var(--gray-100); }

/* Hero giris - tam genislik manset */
.hero-entrance {
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
    border-bottom: 1px solid var(--gray-300);
    padding-top: 0;
    padding-bottom: 0;
}

.hero-zone {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-zone-center {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.hero-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 22%);
    gap: 16px;
    margin-bottom: 0;
    align-items: stretch;
    width: 100%;
    padding: 16px clamp(12px, 2vw, 28px) 0;
}

/* Sol buyuk alan = manset slider */
.hero-featured {
    position: relative;
    min-height: var(--hero-slide-height, clamp(520px, 42vw, 660px));
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(26, 20, 16, .18),
        0 0 0 1px rgba(201, 162, 39, .22),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    background: #111;
    border-top: 3px solid var(--ottoman-gold);
}

.hero-featured-slides {
    position: relative;
    width: 100%;
    height: var(--hero-slide-height, clamp(520px, 42vw, 660px));
    overflow: hidden;
}

.hero-featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 0;
    display: block;
    color: inherit;
}

.hero-featured-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-featured-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.hero-featured:hover .hero-featured-slide.active img {
    transform: scale(1.02);
}

.hero-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 34px 58px;
    background: linear-gradient(
        to top,
        rgba(10, 6, 4, .95) 0%,
        rgba(10, 6, 4, .62) 42%,
        rgba(10, 6, 4, .12) 72%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-featured-overlay a {
    pointer-events: auto;
    color: #fff;
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .45);
    font-family: var(--font-display);
}

.hero-featured-overlay a:hover {
    color: #fff;
    text-decoration: underline;
}

.hero-featured-overlay .category-pill {
    pointer-events: none;
}

.hero-featured-summary {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: 90%;
    pointer-events: none;
}

.hero-featured .manset-arrow {
    z-index: 6;
    width: 52px;
    height: 76px;
    font-size: 28px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-featured .manset-arrow:hover {
    background: rgba(196, 30, 58, .88);
    border-color: rgba(201, 162, 39, .4);
}

.hero-featured-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(201, 162, 39, .25);
    padding: 2px 0;
}

.hero-side-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: var(--hero-slide-height, clamp(520px, 42vw, 660px));
}

.hero-side-card {
    flex: 1;
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 4px 16px rgba(26, 20, 16, .07);
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 20, 16, .12);
    color: inherit;
}

.hero-side-img {
    overflow: hidden;
    min-height: 100%;
    background: var(--gray-300);
}

.hero-side-img img {
    width: 100%;
    height: 100%;
    min-height: 124px;
    object-fit: cover;
    transition: transform .35s ease;
}

.hero-side-card:hover .hero-side-img img { transform: scale(1.06); }

.hero-side-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px 14px 4px;
    min-width: 0;
}

.hero-side-body h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.38;
    margin: 6px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-side-body time {
    font-size: 12px;
    color: var(--gray-600);
}

.category-pill {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.category-pill-sm {
    font-size: 10px;
    padding: 4px 9px;
}

/* Eski ust 4lu - geriye uyumluluk */
.top-headlines {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
}
.top-headlines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.top-headline-item {
    display: block;
    color: inherit;
    transition: opacity .2s;
}
.top-headline-item:hover { opacity: .85; color: inherit; }
.top-headline-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 8px;
    background: var(--gray-300);
}
.top-headline-img img { width: 100%; height: 100%; object-fit: cover; }
.top-headline-item h3 {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ana manset bolgesi */
.manset-wrap {
    background: transparent;
    padding: 0 0 18px;
}

.manset-zone {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px 0;
}

.manset-ad-side {
    flex: 0 0 160px;
    width: 160px;
}

.manset-ad-side .ad-space { margin: 0; }

.manset-ad-side .ad-sticky {
    position: static;
    top: auto;
    left: auto;
    right: auto;
}

.manset-center {
    flex: 1;
    min-width: 0;
    max-width: 880px;
    box-shadow: 0 14px 36px rgba(26, 20, 16, .12);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
}

/* Manset slider */
.manset-slider {
    position: relative;
    background: #000;
    overflow: hidden;
}

.manset-slides {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #111;
}

.manset-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .45s ease;
    display: block;
    z-index: 0;
}

.manset-slide.active { opacity: 1; z-index: 1; }

.manset-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manset-caption-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 28px 24px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .45) 55%, transparent 100%);
    pointer-events: none;
}

.manset-caption-overlay a {
    pointer-events: auto;
    color: #fff;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 8px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

.manset-caption-overlay a:hover {
    color: #fff;
    text-decoration: underline;
}

.manset-caption-overlay .category-pill {
    pointer-events: none;
}

.manset-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, .4);
    color: white;
    border: none;
    width: 44px;
    height: 64px;
    font-size: 24px;
    cursor: pointer;
    transition: background .2s;
    line-height: 1;
    backdrop-filter: blur(4px);
}

.manset-arrow:hover { background: rgba(196, 30, 58, .85); }

.manset-prev { left: 0; border-radius: 0 6px 6px 0; }

.manset-next { right: 0; border-radius: 6px 0 0 6px; }

/* Eski caption - geriye uyumluluk */
.manset-caption {
    background: rgba(0,0,0,.75);
    padding: 12px 15px;
}
.manset-caption a {
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}
.manset-caption a:hover { color: #fff; text-decoration: underline; }

.manset-pagination {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    background: #1a1410;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 6px;
    gap: 4px;
}

.manset-pagination::-webkit-scrollbar { display: none; }

.manset-page {
    flex: 0 0 auto;
    min-width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #bbb;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

.manset-page:hover { background: #333; color: white; }

.manset-page.active {
    background: var(--primary);
    color: white;
}

/* Finans ticker */
.finance-ticker {
    background: #fff;
    border-top: 1px solid var(--gray-300);
    overflow: hidden;
}

.finance-ticker-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    padding: 11px 14px;
    font-size: 13px;
}
.finance-item strong { color: var(--gray-700); margin-right: 4px; }
.finance-item em { font-style: normal; font-weight: 700; color: var(--primary); }

.ad-mobile-block { padding: 10px 0; }

/* Mobil menü */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    font-size: 22px;
    padding: 4px 10px;
    cursor: pointer;
    color: var(--dark);
    line-height: 1;
    flex-shrink: 0;
}

/* Hero Slider - Gold Haber tarzı */
.hero-slider {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 12px;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-main { position: relative; height: 420px; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .5s ease;
    display: block; color: white;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px 25px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
}
.hero-overlay h2 { font-size: 26px; line-height: 1.3; margin: 8px 0; }
.hero-overlay time { font-size: 13px; opacity: .8; }
.hero-thumbs { display: flex; flex-direction: column; }
.hero-thumb {
    display: flex; align-items: center; gap: 10px;
    padding: 12px; border: none; border-bottom: 1px solid var(--gray-100);
    background: white; cursor: pointer; text-align: left;
    transition: background .2s; flex: 1;
}
.hero-thumb:hover, .hero-thumb.active { background: var(--gray-100); }
.hero-thumb img { width: 70px; height: 50px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.thumb-num {
    background: var(--primary); color: white;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.thumb-title { font-size: 12px; line-height: 1.3; color: var(--gray-900); }

/* Eski headline - geriye uyumluluk */
.headline-slider {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
    height: 400px;
}
.headline-card { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.headline-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.headline-card:hover img { transform: scale(1.05); }
.headline-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    color: white;
}
.headline-overlay h2 { font-size: 22px; line-height: 1.3; }
.headline-overlay h3 { font-size: 14px; line-height: 1.3; }
.headline-side { display: flex; flex-direction: column; gap: 10px; }
.headline-small { flex: 1; }
.headline-num {
    background: var(--primary);
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Section Titles */
.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--ottoman-gold);
    font-family: var(--font-display);
}
.section-title strong { color: var(--ottoman-teal); }

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.news-card a { color: inherit; }
.news-card-image { position: relative; height: 180px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-image .category-badge { position: absolute; top: 10px; left: 10px; }
.news-card-body { padding: 15px; }
.news-card-body h3 { font-size: 15px; line-height: 1.4; margin-bottom: 8px; }
.news-card-body p { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.news-card-body time { font-size: 12px; color: var(--gray-500); }

/* Category Section */
.category-section { margin-bottom: 40px; }
.category-news-grid { display: flex; flex-direction: column; gap: 12px; }
.news-card-horizontal a {
    display: flex;
    gap: 15px;
    background: white;
    padding: 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: inherit;
    align-items: center;
}
.news-card-horizontal img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.news-card-horizontal h3 { font-size: 14px; }
.view-all { display: inline-block; margin-top: 15px; font-weight: 600; }

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ottoman-gold);
    font-family: var(--font-display);
    color: var(--ottoman-teal);
}
.trending-list { list-style: none; }
.trending-list li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.trend-num { font-weight: 800; color: var(--primary); font-size: 18px; min-width: 24px; }
.trending-list a { color: var(--gray-900); font-size: 14px; }
.editor-pick {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    color: inherit;
    align-items: center;
}
.editor-pick img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; }
.editor-pick span { font-size: 13px; }

/* Article Detail */
.article-detail { background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 15px; }
.article-header h1 { font-size: 28px; line-height: 1.3; margin: 10px 0; }
.article-meta { display: flex; gap: 15px; font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.article-image { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; }
.article-image figcaption { font-size: 12px; color: var(--gray-500); padding: 5px; text-align: center; }
.article-summary { font-size: 18px; line-height: 1.5; margin-bottom: 20px; color: var(--gray-700); }
.article-content { font-size: 17px; line-height: 1.85; color: var(--gray-900); }
.article-content p { margin-bottom: 18px; }
.article-content h2, .article-content h3 { margin: 24px 0 12px; line-height: 1.35; }
.article-content img { border-radius: var(--radius); margin: 16px 0; }
.article-content ul, .article-content ol { margin: 0 0 18px 1.25rem; }
.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 12px 16px;
    margin: 20px 0;
    background: var(--gray-100);
    font-style: italic;
}
.related-articles { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--gray-300); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
.related-card { color: inherit; }
.related-card img { border-radius: 4px; margin-bottom: 8px; height: 120px; object-fit: cover; width: 100%; }
.related-card span { font-size: 13px; font-weight: 500; }

/* Ads */
.ad-space { margin: 15px 0; text-align: center; position: relative; }
.ad-content { min-height: 50px; display: flex; align-items: center; justify-content: center; }
.ad-lazy { opacity: 0; transition: opacity .3s; }
.ad-lazy.loaded { opacity: 1; }

/* Reklam gorsel placeholder — CSS tabanli (kirilik resim yok) */
.ad-placeholder { display: flex; justify-content: center; margin: 15px 0; }

.ad-placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border-radius: var(--radius);
    border: 2px dashed rgba(201, 162, 39, .45);
    background: linear-gradient(135deg, #0f4c3a 0%, #1a3a4a 50%, #8b1538 100%);
    color: #f7f2e8;
    text-align: center;
    padding: 16px 12px;
    box-shadow: var(--shadow);
    margin: 0 auto;
    box-sizing: border-box;
}

.ad-ph-728-90 { max-width: 728px; min-height: 90px; }
.ad-ph-300-250 { width: 300px; max-width: 100%; min-height: 250px; }
.ad-ph-160-600 { width: 160px; max-width: 100%; min-height: 600px; }
.ad-ph-320-50 { max-width: 320px; width: 100%; min-height: 50px; }
.ad-ph-responsive { width: 100%; min-height: 120px; }

.ad-ph-ornament { color: var(--ottoman-gold); font-size: 18px; opacity: .8; }
.ad-ph-title { font-family: Georgia, serif; font-size: 14px; font-weight: 700; }
.ad-ph-size { font-size: 11px; color: var(--ottoman-gold-light); letter-spacing: 1px; }
.ad-ph-note { font-size: 10px; color: rgba(255, 255, 255, .55); }

/* Eski img placeholder geriye uyumluluk */
.ad-placeholder-img {
    overflow: hidden;
    border-radius: var(--radius);
    border: 2px solid rgba(201, 162, 39, .35);
    box-shadow: var(--shadow);
    margin: 0 auto;
    line-height: 0;
}

.ad-placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* AdSense birimleri */
.ad-adsense .ad-content {
    width: 100%;
    min-height: 50px;
    overflow: hidden;
}

.ad-adsense ins.adsbygoogle {
    display: block;
    margin: 0 auto;
}

/* Yapışkan yan reklamlar (manset dışında) */
.ad-sticky {
    position: fixed; top: 120px; z-index: 50;
}
.ad-left_sticky, .ad-left-sticky { left: 10px; }
.ad-right_sticky, .ad-right-sticky { right: 10px; }
.ad-desktop-only { display: block; }
.ad-mobile-only { display: none; }
.ad-mobile_anchor, .ad-mobile-anchor {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    padding: 4px 0;
}

/* Header banner */
.header-ad-wrap {
    background: var(--white);
    border-bottom: 1px solid rgba(201, 162, 39, .3);
    padding: 6px 0;
}
.ad-header_banner { margin: 0 auto; }
.ad-header_banner .ad-placeholder { margin: 0; }

.ad-header_banner .ad-placeholder-box.ad-ph-728-90 {
    min-height: 70px;
    max-height: 90px;
    padding: 10px 12px;
    gap: 4px;
}

.ad-header_banner.ad-adsense .ad-content {
    max-height: 90px;
    overflow: hidden;
}

/* Anasayfa: slider hemen ustte, ust banner yok */
.page-home .header-ad-wrap {
    display: none !important;
}

/* Mobil: ust banner dar serit */
@media (max-width: 768px) {
    .header-ad-wrap {
        padding: 0;
    }

    .header-ad-wrap .container {
        padding: 0;
    }

    .ad-header_banner {
        margin: 0;
    }

    .ad-header_banner .ad-placeholder-box.ad-ph-728-90,
    .ad-header_banner .ad-placeholder-box {
        min-height: 50px;
        max-height: 50px;
        height: 50px;
        padding: 0 10px;
        gap: 4px;
        flex-direction: row;
        flex-wrap: nowrap;
        border: none;
        border-radius: 0;
        border-bottom: 1px dashed rgba(201, 162, 39, .35);
        box-shadow: none;
    }

    .ad-header_banner .ad-ph-ornament,
    .ad-header_banner .ad-ph-note {
        display: none;
    }

    .ad-header_banner .ad-ph-title {
        font-size: 10px;
        white-space: nowrap;
    }

    .ad-header_banner .ad-ph-size {
        font-size: 9px;
        white-space: nowrap;
    }

    .ad-header_banner.ad-adsense .ad-content {
        min-height: 50px;
        max-height: 60px;
        overflow: hidden;
        line-height: 0;
    }

    .ad-header_banner.ad-adsense ins.adsbygoogle {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 50px !important;
        max-height: 60px !important;
        height: 50px !important;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0a1f18 100%);
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 4px solid var(--ottoman-gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-grid h3, .footer-grid h4 { color: white; margin-bottom: 15px; }
.footer-links a { display: block; color: #ccc; padding: 4px 0; font-size: 14px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-form input { flex: 1; padding: 8px 12px; border: none; border-radius: 4px; }
.newsletter-form button { padding: 8px 16px; background: var(--primary); color: white; border: none; border-radius: 4px; cursor: pointer; }
.footer-bottom { border-top: 1px solid #333; padding-top: 15px; text-align: center; font-size: 13px; }

/* Error */
.error-page { text-align: center; padding: 80px 0; }
.error-page h1 { font-size: 72px; color: var(--primary); }
.btn { display: inline-block; padding: 10px 24px; background: var(--primary); color: white; border-radius: var(--radius); font-weight: 600; margin-top: 20px; }

/* Responsive */
.hero-zone .finance-ticker {
    margin: 14px 0 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(201, 162, 39, .3);
    border-bottom: 1px solid rgba(201, 162, 39, .2);
    box-shadow: none;
    background: linear-gradient(90deg, var(--ottoman-teal), #0d4a3a, var(--ottoman-teal));
}

.hero-zone .finance-ticker-inner {
    color: var(--ottoman-cream);
}

.hero-zone .finance-item strong { color: rgba(255, 255, 255, .85); }
.hero-zone .finance-item em { color: var(--ottoman-gold-light); }

@media (max-width: 1100px) {
    .hero-showcase {
        grid-template-columns: 1fr;
        padding: 12px 12px 0;
    }

    .hero-featured,
    .hero-featured-slides {
        min-height: clamp(400px, 50vw, 520px);
        height: clamp(400px, 50vw, 520px);
    }

    .hero-side-stack {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-side-card {
        grid-template-columns: 1fr;
    }

    .hero-side-img img {
        min-height: 140px;
        aspect-ratio: 16/10;
    }

    .hero-side-body {
        padding: 12px 14px;
    }

    .manset-zone { padding: 0 15px; }
    .manset-ad-side { display: none; }
    .manset-center { max-width: 100%; }
}

@media (max-width: 992px) {
    .home-layout, .article-layout { grid-template-columns: 1fr; }
    .hero-slider { grid-template-columns: 1fr; }
    .hero-main { height: 280px; }
    .hero-thumbs { flex-direction: row; overflow-x: auto; }
    .hero-thumb { min-width: 200px; border-bottom: none; border-right: 1px solid var(--gray-100); }
    .ad-sticky:not(.manset-ad-side .ad-sticky), .ad-desktop-only { display: none !important; }
    .ad-mobile-only { display: block; }
    .headline-slider { grid-template-columns: 1fr; height: auto; }
    .headline-main { height: 250px; }
    .headline-side { flex-direction: row; }
    .headline-small { height: 120px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }

    .top-headlines-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .top-headline-item h3 { font-size: 12px; }

    .hero-side-stack {
        grid-template-columns: 1fr;
    }

    .hero-featured,
    .hero-featured-slides {
        min-height: clamp(300px, 55vw, 420px);
        height: clamp(300px, 55vw, 420px);
    }

    .hero-featured-overlay a { font-size: clamp(20px, 5vw, 26px); }

    .hero-featured-overlay { padding: 24px 18px 52px; }

    .hero-side-card {
        grid-template-columns: 120px 1fr;
    }

    .manset-slides { height: clamp(260px, 52vw, 400px); }

    .manset-caption-overlay a { font-size: 16px; }

    .manset-caption-overlay { padding: 20px 16px 16px; }

    .manset-arrow { width: 36px; height: 52px; font-size: 20px; }

    .article-detail { padding: 20px 16px; }
    .article-header h1 { font-size: 22px; }
    .article-summary { font-size: 16px; }
    .article-content { font-size: 17px; line-height: 1.9; }
    .article-meta { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .header-search { display: none; }
    .header-main { grid-template-columns: auto 1fr; padding: 10px 0; }
    .header-main .logo { justify-self: center; grid-column: 2; }
    .logo-text { font-size: 24px; }
    .main-nav { display: none; }
    .main-nav.nav-open {
        display: block;
        position: absolute;
        left: 0; right: 0;
        z-index: 200;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
    .main-nav.nav-open ul { flex-direction: column; }
    .main-nav.nav-open a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .site-header { position: relative; }

    .top-utility-inner { justify-content: center; flex-wrap: nowrap; }
    .utility-social { display: none; }
    .utility-datetime { font-size: 10px; }
    .utility-prayer { flex-direction: row; gap: 6px; width: 100%; justify-content: center; }
    .utility-prayer-city { font-size: 9px; display: none; }
    .utility-prayer-times { gap: 2px; flex-wrap: nowrap; width: 100%; max-width: 100%; }
    .prayer-item { min-width: 0; flex: 1; padding: 2px 2px; max-width: none; }
    .prayer-item em { font-size: 7px; }
    .prayer-item strong { font-size: 9px; }
}

@media (max-width: 576px) {
    .news-grid { grid-template-columns: 1fr; }
    .top-headlines-grid { grid-template-columns: 1fr 1fr; }
    .top-headline-img { aspect-ratio: 4/3; }

    .hero-entrance { padding-top: 0; }

    .hero-showcase { gap: 12px; padding: 10px 10px 0; }

    .hero-featured,
    .hero-featured-slides {
        min-height: clamp(300px, 70vw, 440px);
        height: clamp(300px, 70vw, 440px);
        border-radius: 8px;
    }

    .hero-featured-overlay { padding: 18px 14px 46px; }

    .hero-featured-overlay a { font-size: clamp(17px, 4.8vw, 22px); line-height: 1.3; }

    .hero-featured-summary { display: none; }

    .hero-side-card {
        grid-template-columns: 100px 1fr;
        border-radius: 8px;
    }

    .hero-side-body h3 { font-size: 13px; -webkit-line-clamp: 2; }

    .manset-slides { height: clamp(220px, 58vw, 300px); }

    .manset-caption-overlay { padding: 16px 12px 14px; }

    .manset-caption-overlay a { font-size: 14px; line-height: 1.45; }

    .manset-page { min-width: 30px; height: 30px; font-size: 11px; }

    .finance-ticker-inner {
        font-size: 11px;
        gap: 6px 12px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .article-detail { padding: 16px 14px; }
    .article-header h1 { font-size: 20px; line-height: 1.35; }
    .article-content { font-size: 18px; line-height: 1.95; }
    .article-content p { margin-bottom: 20px; }
    .related-grid { grid-template-columns: 1fr; }

    .header-top { display: none; }
    .logo-text { font-size: 20px; }
    .logo-tagline { font-size: 9px; }
}
