:root {
    --color-bg: #f1f5f9;
    --color-surface: #ffffff;
    --color-card: #ffffff;
    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-accent: #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-accent-light: rgba(37, 99, 235, 0.08);
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.1), 0 2px 6px -2px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* Daha kompakt görünüm için (haber siteleri için uygun) */
html { font-size: 87.5%; }

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--color-text);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow-x: hidden;
}
/* Reklam alanları - AdSense scroll sırasında kaybolmasını önlemek için */
.ad-slot {
  margin: 1rem 0;
  text-align: center;
  min-height: 90px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.ad-slot-header_below { margin: 0 0 1rem; }
.ad-slot-content_top,
.ad-slot-content_bottom { margin: 1.5rem 0; }
.ad-slot-sidebar {
  margin-bottom: 1.5rem;
  min-height: 100px;
}
/* Sidebar: scroll container içinde AdSense'in parent'a style enjekte etmesini sınırlamak */
.ad-slot--isolate {
  overflow: visible;
}
.ad-slot-in_post { margin: 1.5rem 0; }
.ad-slot-footer_above { margin: 1.5rem 0 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; }
#main-content { padding: 2rem 0 3rem; }

.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}
.header-nav { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
.header-logo { font-weight: 800; font-size: 1.3rem; text-decoration: none; color: var(--color-text); letter-spacing: -0.03em; }
.header-logo img { height: 42px; }
.header-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 2rem; }
.header-menu a { text-decoration: none; color: var(--color-text-muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.header-menu a:hover { color: var(--color-accent); }
.header-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4); }
.header-sticky { position: sticky; top: 0; z-index: 100; }

/* Portal Header (Habertürk tarzı) */
.header-portal { background: #fff; border-bottom: 1px solid var(--color-border); }
.portal-topbar {
    background: #f8fafc; border-bottom: 1px solid var(--color-border);
    font-size: 0.8rem; padding: 0.4rem 0;
}
.portal-topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.portal-topbar-items { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.portal-topbar-item { color: var(--color-text-muted); }
.portal-topbar-item strong { color: var(--color-text); font-weight: 600; }
.portal-topbar-item-up .portal-topbar-change { color: #16a34a; }
.portal-topbar-item-down .portal-topbar-change { color: #dc2626; }
.portal-topbar-link { color: var(--color-text-muted); text-decoration: none; font-weight: 600; }
.portal-topbar-link:hover { color: var(--color-accent); }
.portal-mainbar { padding: 0.75rem 0; }
.portal-mainbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.portal-mainbar-left { display: flex; align-items: center; gap: 1rem; }
.portal-search-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; padding: 0;
    background: none; border: none; border-radius: 50%;
    cursor: pointer; color: var(--color-text-muted);
}
.portal-search-btn:hover { color: var(--color-accent); background: rgba(0,0,0,0.05); }
.portal-search-icon { flex-shrink: 0; }
.portal-search-overlay {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: flex-start; justify-content: center; padding-top: 15vh;
    background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.portal-search-overlay.portal-search-open {
    opacity: 1; visibility: visible;
}
.portal-search-backdrop { position: absolute; inset: 0; cursor: pointer; }
.portal-search-box {
    position: relative; width: 100%; max-width: 560px; margin: 0 1rem;
    background: #fff; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 1rem 3rem 1rem 1.25rem;
}
.portal-search-form { display: flex; gap: 0.5rem; align-items: center; }
.portal-search-input {
    flex: 1; padding: 0.75rem 1rem; font-size: 1rem; border: 1px solid var(--color-border);
    border-radius: 8px; outline: none;
}
.portal-search-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 2px rgba(37,99,235,0.2); }
.portal-search-submit {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0;
    background: var(--color-accent); color: #fff; border: none; border-radius: 8px;
    cursor: pointer;
}
.portal-search-submit:hover { filter: brightness(1.1); }
.portal-search-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    width: 36px; height: 36px; padding: 0;
    background: none; border: none; color: var(--color-text-muted);
    cursor: pointer; border-radius: 6px;
}
.portal-search-close:hover { color: var(--color-text); background: rgba(0,0,0,0.06); }
.portal-tv-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    text-decoration: none; color: #dc2626; font-weight: 700; font-size: 0.9rem;
}
.portal-tv-badge {
    background: #dc2626; color: #fff; padding: 0.2rem 0.4rem;
    font-size: 0.7rem; font-weight: 800;
}
.portal-logo { display: block; }
.portal-logo img { height: 48px; display: block; }
.portal-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--color-text); text-decoration: none; }
.portal-mainbar-right { display: flex; align-items: center; gap: 1rem; }
.portal-weather {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: var(--color-text-muted);
}
.portal-weather-temp { font-weight: 700; color: var(--color-text); }
.portal-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 0; background: none; border: none;
    cursor: pointer; color: var(--color-text);
}
.portal-toggle span { display: block; width: 22px; height: 2px; background: currentColor; }
.portal-nav { border-top: 1px solid var(--color-border); }
.portal-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.portal-nav-menu {
    display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0.5rem 0;
    gap: 0.5rem 2rem;
}
.portal-nav-menu a {
    text-decoration: none; color: var(--color-text); font-weight: 600; font-size: 0.95rem;
}
.portal-nav-menu a:hover { color: var(--color-accent); }
@media (max-width: 768px) {
    .portal-toggle { display: flex; }
    .portal-nav { overflow: hidden; }
    .portal-nav.portal-nav-open .portal-nav-menu { display: flex; }
    .portal-nav .portal-nav-menu { display: none; flex-direction: column; padding: 1rem 0; }
    .portal-topbar-items { font-size: 0.75rem; gap: 0.5rem; }
}

/* Layout: Logo Sol, Menü Sağ (varsayılan) */
.header-topbar_left .header-nav { justify-content: space-between; }

/* Layout: Ortalanmış */
.header-topbar_centered .header-nav {
    flex-direction: column; justify-content: center; text-align: center;
}
.header-topbar_centered .header-logo { margin-bottom: 0.25rem; }
.header-topbar_centered .header-menu { justify-content: center; }
.header-topbar_centered .header-cta { margin-left: 0; }

/* Layout: Minimal */
.header-minimal { padding: 0.5rem 0; }
.header-minimal .header-nav { padding: 0 1rem; }
.header-minimal .header-logo img { height: 32px; }
.header-minimal .header-logo { font-size: 1.1rem; }
.header-minimal .header-menu { gap: 1.25rem; }
.header-minimal .header-cta { padding: 0.4rem 0.8rem; font-size: 0.9rem; }

/* Hamburger menü - mobil */
.header-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; background: transparent; border: none; cursor: pointer; border-radius: var(--radius-sm); color: var(--color-text); }
.header-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; transition: transform 0.25s, opacity 0.25s; }
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(2) { opacity: 0; }
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-menu-wrap { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 768px) {
    .header-nav { position: relative; flex-wrap: nowrap; }
    .header-toggle { display: flex; margin-left: auto; }
    .header-menu-wrap { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem; background: var(--color-card); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s, opacity 0.25s; }
    .header-menu-wrap.is-open { max-height: 80vh; opacity: 1; overflow-y: auto; }
    .header-menu { flex-direction: column; gap: 0; width: 100%; padding: 0; }
    .header-menu li { border-bottom: 1px solid var(--color-border); }
    .header-menu li:last-child { border-bottom: none; }
    .header-menu a { display: block; padding: 0.875rem 0; font-size: 1rem; }
    .header-cta { margin-top: 0.5rem; text-align: center; }
    .header-topbar_centered .header-nav { flex-wrap: nowrap; flex-direction: row; justify-content: space-between; }
    .header-topbar_centered .header-logo { margin-bottom: 0; }
    .header-topbar_centered .header-menu-wrap { left: 0; right: 0; }
}

.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    margin-top: 4rem;
    border-top: none;
    color: #e2e8f0;
    padding-top: 0.5rem;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.footer-main { padding: 2.5rem 0; }
.footer-main .footer-container {
    display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start;
}
@media (max-width: 640px) {
    .footer-main .footer-container { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand { min-width: 0; }
.footer-logo {
    display: inline-block; font-size: 1.25rem; font-weight: 700; color: #fff;
    text-decoration: none; letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.footer-logo:hover { color: #94a3b8; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); vertical-align: middle; }
.footer-logo img:hover { opacity: 0.9; }
.footer-tagline { margin: 0; font-size: 0.9rem; color: #94a3b8; line-height: 1.5; max-width: 320px; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 {
    margin: 0 0 0.25rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: #94a3b8;
}
.footer-col a {
    color: #cbd5e1; text-decoration: none; font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-widgets { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-widgets .widget { margin-bottom: 1rem; color: #e2e8f0; }
.footer-widgets .widget:last-child { margin-bottom: 0; }
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .footer-container { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
.footer-copyright { margin: 0; font-size: 0.85rem; color: #94a3b8; }
.footer-credit { margin: 0; font-size: 0.8rem; color: #64748b; }
.footer-credit a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-credit a:hover { color: #fff; }
.content-bottom-area { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }

.section { padding: 1.5rem 0; }
.homepage-section-wrapper { padding: 1.5rem 0; }
/* Portal slider ile four-cards arası boşluğu azalt */
.homepage-section-wrapper:has(.section-portal-slider) { padding-bottom: 0; }
.homepage-section-wrapper:has(.section-portal-slider) + .homepage-section-wrapper:has(.section-four-cards) { padding-top: 0; }
/* Resmî İlanlar ve Kripto Para üst boşluğu azalt */
.homepage-section-wrapper:has(.section-official-announcements),
.homepage-section-wrapper:has(.section-crypto-currencies) { padding-top: 0.5rem; }
.homepage-section-full-width .container { max-width: 100%; padding-left: 1.25rem; padding-right: 1.25rem; }
.homepage-section-full-width .top-articles-container,
.homepage-section-full-width .main-slider-container { max-width: 100%; }
.homepage-section-outer-title { margin-bottom: 0.5rem; }
.homepage-section-title { margin: 0; font-size: 1.5rem; font-weight: 700; }
.section-hero-static {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
.section-hero-static::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-title { font-size: 2.75rem; margin: 0 0 0.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.92; line-height: 1.5; max-width: 560px; margin: 0 auto; }
.hero-cta {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.875rem 1.75rem;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.section-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1rem;
}
.section-header .section-title { margin-bottom: 0; }
.section-viewall {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.section-viewall:hover { color: var(--color-accent); }
.section-title { font-size: 1.85rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text); }
.section-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.section-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.2s;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}
.blog-card a { text-decoration: none; color: inherit; display: block; padding: 1rem; }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card h3 { margin: 0.5rem 0; font-size: 1.1rem; font-weight: 600; line-height: 1.35; }
.blog-card .excerpt { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.blog-card .author { font-size: 0.85rem; color: var(--color-text-muted); }

/* Son Haberler section */
.section-latest-news .latest-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.section-latest-news .news-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.2s;
}
.section-latest-news .news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.15);
}
.section-latest-news .news-card a { text-decoration: none; color: inherit; display: block; }
.section-latest-news .news-card-image { aspect-ratio: 16/9; overflow: hidden; }
.section-latest-news .news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.section-latest-news .news-card:hover .news-card-image img { transform: scale(1.04); }
.section-latest-news .news-card-body { padding: 1rem; }
.section-latest-news .news-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; }
.section-latest-news .news-card .excerpt { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.section-latest-news .news-card .author { font-size: 0.85rem; color: var(--color-text-muted); }

.section-cta-banner { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; text-align: center; padding: 2rem; border-radius: var(--radius-lg); }
.cta-title { margin: 0 0 0.5rem; font-weight: 700; }
.cta-button { display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem; background: #fff; color: #0f172a; text-decoration: none; border-radius: var(--radius-md); font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
.cta-button:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.blog-list { display: grid; gap: 2rem; }
.blog-item { border-bottom: 1px solid #eee; padding-bottom: 2rem; }
.blog-item a { text-decoration: none; color: inherit; }
.blog-item h2 { margin: 0 0 0.5rem; }
.blog-item .meta { font-size: 0.9rem; color: #666; }

/* Kategori / Blog listesi – modern tasarım */
.blog-page-modern { padding: 0 1rem 2rem; }
.blog-page-header {
    margin-bottom: 2rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.blog-page-title { margin: 0 0 0.25rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text); }
.blog-page-subtitle { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }
.blog-page-empty { color: var(--color-text-muted); padding: 2rem; text-align: center; }
.blog-list-modern { display: flex; flex-direction: column; gap: 0; }
.blog-card-modern {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.2s;
}
.blog-card-modern:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
}
.blog-card-modern-link {
    display: flex; gap: 1.25rem; padding: 1rem;
    text-decoration: none; color: inherit;
}
.blog-card-modern-image {
    flex-shrink: 0; width: 200px; aspect-ratio: 16/9;
    overflow: hidden; border-radius: var(--radius-md);
    background: var(--color-surface);
}
.blog-card-modern-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s;
}
.blog-card-modern:hover .blog-card-modern-image img { transform: scale(1.05); }
.blog-card-modern-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.blog-card-modern-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.blog-card-modern-category {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.blog-card-modern-title {
    margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 700; line-height: 1.35;
    color: var(--color-text); transition: color 0.2s;
}
.blog-card-modern:hover .blog-card-modern-title { color: var(--color-accent); }
.blog-card-modern-excerpt {
    margin: 0 0 0.5rem; font-size: 0.9rem; line-height: 1.5;
    color: var(--color-text-muted);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-modern-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
    font-size: 0.8rem; color: var(--color-text-muted);
}
.blog-card-modern-meta time { font-weight: 500; }
.blog-card-modern-readtime { opacity: 0.85; }
@media (max-width: 640px) {
    .blog-card-modern-link { flex-direction: column; }
    .blog-card-modern-image { width: 100%; }
}

/* Kategori sayfası – üst slider (tekli, 10 haber) */
.blog-page-slider {
    margin-bottom: 2rem;
    background: var(--color-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.blog-slider-wrapper { position: relative; }
.blog-slider-track { position: relative; }
.blog-slider-slide { display: none; position: relative; }
.blog-slider-slide.active { display: block; }
.blog-slider-link { display: block; text-decoration: none; color: inherit; }
.blog-slider-image {
    position: relative; aspect-ratio: 16/9;
    overflow: hidden; background: #1e293b;
}
.blog-slider-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.blog-slider-link:hover .blog-slider-image img { transform: scale(1.03); }
.blog-slider-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.blog-slider-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    padding: 2rem 1.5rem;
}
.blog-slider-category {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}
.blog-slider-title {
    margin: 0 0 0.5rem; font-size: 1.5rem; font-weight: 700;
    color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1.3;
}
.blog-slider-meta {
    font-size: 0.9rem; color: rgba(255,255,255,0.85);
    display: flex; gap: 1rem;
}
.blog-slider-prev, .blog-slider-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border: none;
    background: rgba(15,23,42,0.65); color: #fff;
    font-size: 1.25rem; cursor: pointer; z-index: 10;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}
.blog-slider-prev:hover, .blog-slider-next:hover { background: rgba(15,23,42,0.85); }
.blog-slider-prev { left: 0.75rem; }
.blog-slider-next { right: 0.75rem; }
.blog-slider-dots {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.35) 55%, transparent);
    z-index: 5;
}
.blog-slider-dots button {
    width: 34px; height: 34px; border: none; cursor: pointer;
    font-size: 0.9rem; font-weight: 700; border-radius: 50%;
    color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.blog-slider-dots button:hover { color: #fff; background: rgba(255,255,255,0.4); transform: scale(1.08); }
.blog-slider-dots button.active {
    background: var(--color-accent); color: #fff;
}
@media (max-width: 768px) {
    .blog-slider-image { aspect-ratio: 16/9; }
    .blog-slider-title { font-size: 1.2rem; }
}

/* Breadcrumb – başlık üstü */
.blog-post .breadcrumb { margin-bottom: 0.75rem; }
.breadcrumb-list {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
    list-style: none; margin: 0; padding: 0;
    font-size: 0.8125rem; font-weight: 400; color: var(--color-text-muted);
}
.breadcrumb-item { display: flex; align-items: center; gap: 0.35rem; }
.breadcrumb-item a {
    color: inherit; text-decoration: none;
    transition: color 0.15s;
}
.breadcrumb-item a:hover { color: var(--color-text); }
.breadcrumb-icon { flex-shrink: 0; opacity: 0.75; }
.breadcrumb-sep {
    color: rgba(0,0,0,0.25); font-weight: 500; user-select: none;
}
.breadcrumb-current {
    color: var(--color-text); max-width: 100%;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (min-width: 600px) {
    .breadcrumb-current { white-space: normal; }
}

.blog-post .post-header { margin-bottom: 2rem; }
.blog-post .post-header h1 { margin: 0 0 0.5rem; }
.blog-post .post-excerpt {
    font-size: 1.05rem; font-weight: 500; line-height: 1.6; color: var(--color-text);
    margin: 0 0 1.5rem; padding: 0;
}
.blog-post .post-image {
    width: 100%; max-height: 380px; display: block; margin-bottom: 2rem;
    object-fit: cover; border-radius: var(--radius-md); overflow: hidden;
}
.post-meta-bar {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem;
    font-size: 0.8125rem; color: var(--color-text-muted);
    font-weight: 400; line-height: 1.5;
}
.post-meta-item a { color: inherit; text-decoration: none; }
.post-meta-item a:hover { color: var(--color-text); }
.post-meta-sep {
    color: rgba(0,0,0,0.2); font-weight: 400; user-select: none;
}
.blog-post .post-content { max-width: 100%; }
.page-content { max-width: 720px; margin: 0 auto; padding: 2rem 1rem; }

/* İçerik tipografi ve tablo/liste stilleri – sıkı satır aralığı */
#main-content .post-content,
#main-content .page-content,
#main-content .page-body,
#main-content .widget-html-content {
    overflow-x: auto;
    font-size: 1.0625rem;
    line-height: 1.5 !important;
    letter-spacing: 0.01em;
}
#main-content .post-content > * + *, #main-content .page-content > * + *,
#main-content .page-body > * + *, #main-content .widget-html-content > * + * {
    margin-top: 0.6em !important;
}
#main-content .post-content p, #main-content .page-content p,
#main-content .page-body p, #main-content .widget-html-content p {
    margin: 0 0 0.5em !important;
    line-height: 1.5 !important;
}
#main-content .post-content h2, #main-content .page-content h2,
#main-content .page-body h2, #main-content .widget-html-content h2 {
    font-size: 1.5rem; font-weight: 700; margin: 1em 0 0.4em !important; line-height: 1.3; letter-spacing: -0.02em;
}
#main-content .post-content h3, #main-content .page-content h3,
#main-content .page-body h3, #main-content .widget-html-content h3 {
    font-size: 1.25rem; font-weight: 600; margin: 0.9em 0 0.35em !important; line-height: 1.35;
}
#main-content .post-content ul, #main-content .post-content ol,
#main-content .page-content ul, #main-content .page-content ol,
#main-content .page-body ul, #main-content .page-body ol,
#main-content .widget-html-content ul, #main-content .widget-html-content ol {
    margin: 0.5em 0 !important; padding-left: 1.5em;
}
#main-content .post-content li, #main-content .page-content li,
#main-content .page-body li, #main-content .widget-html-content li {
    margin-bottom: 0.25em !important;
    line-height: 1.45 !important;
}
#main-content .post-content ol, #main-content .page-content ol,
#main-content .page-body ol, #main-content .widget-html-content ol {
    list-style-type: decimal; padding-left: 1.75em;
}
#main-content .post-content ul, #main-content .page-content ul,
#main-content .page-body ul, #main-content .widget-html-content ul {
    list-style-type: disc;
}
/* Boş liste maddelerini gizle (TinyMCE Enter ile oluşan) */
#main-content .post-content li:empty, #main-content .page-content li:empty,
#main-content .page-body li:empty, #main-content .widget-html-content li:empty {
    display: none;
}

/* Tablolar – net görünüm, kenarlıklar (post, sayfa, widget) */
#main-content .post-content table,
#main-content .page-content table,
#main-content .page-body table,
#main-content .widget-html-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin: 1.5em 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-card);
}
#main-content .post-content th, #main-content .post-content td,
#main-content .page-content th, #main-content .page-content td,
#main-content .page-body th, #main-content .page-body td,
#main-content .widget-html-content th, #main-content .widget-html-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}
#main-content .post-content th, #main-content .page-content th, #main-content .page-body th, #main-content .widget-html-content th {
    background: var(--color-surface);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}
#main-content .post-content tbody tr:nth-child(even),
#main-content .page-content tbody tr:nth-child(even),
#main-content .page-body tbody tr:nth-child(even),
#main-content .widget-html-content tbody tr:nth-child(even) {
    background: rgba(248, 250, 252, 0.8);
}
#main-content .post-content tbody tr:hover,
#main-content .page-content tbody tr:hover,
#main-content .page-body tbody tr:hover,
#main-content .widget-html-content tbody tr:hover {
    background: rgba(15, 23, 42, 0.03);
}
#main-content .post-content thead th, #main-content .page-content thead th,
#main-content .page-body thead th, #main-content .widget-html-content thead th {
    border-bottom: 2px solid var(--color-border);
}
/* thead yoksa ilk satır başlık gibi (TinyMCE bazen sadece tr/td kullanır) */
#main-content .post-content table tr:first-child td,
#main-content .page-content table tr:first-child td,
#main-content .page-body table tr:first-child td,
#main-content .widget-html-content table tr:first-child td {
    font-weight: 600;
    background: var(--color-surface);
    color: var(--color-text-muted);
}
#main-content .post-content .table-wrap, #main-content .page-content .table-wrap,
#main-content .page-body .table-wrap, #main-content .widget-html-content .table-wrap {
    overflow-x: auto;
    margin: 1.5em 0;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
    #main-content .post-content table, #main-content .page-content table,
    #main-content .page-body table, #main-content .widget-html-content table {
        font-size: 0.9rem;
    }
    #main-content .post-content th, #main-content .post-content td,
    #main-content .page-content th, #main-content .page-content td,
    #main-content .page-body th, #main-content .page-body td,
    #main-content .widget-html-content th, #main-content .widget-html-content td {
        padding: 0.6rem 0.75rem;
    }
}
/* İletişim sayfası - modern tasarım */
.page-contact { max-width: 960px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.contact-hero { text-align: center; margin-bottom: 2.5rem; }
.contact-hero-title { margin: 0 0 0.75rem; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--color-text); line-height: 1.2; }
.contact-hero-subtitle { margin: 0; font-size: 1.15rem; color: var(--color-text-muted); line-height: 1.65; max-width: 540px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.contact-info-icon { font-size: 2.25rem; margin-bottom: 0.75rem; opacity: 0.95; }
.contact-info-card h3 { margin: 0 0 0.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.contact-info-card a { color: #fff; text-decoration: none; font-size: 1.15rem; font-weight: 600; transition: color 0.2s; }
.contact-info-card a:hover { color: #93c5fd; }
.contact-form-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.contact-alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact-alert--success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.contact-alert--error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* Kripto Para sayfası - tablo */
.page-kripto { max-width: 1100px; margin: 0 auto; padding: 2rem 1.25rem; }
.kripto-page-header { margin-bottom: 2rem; }
.kripto-page-title { margin: 0 0 0.5rem; font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text); }
.kripto-page-subtitle { margin: 0; font-size: 1rem; color: var(--color-text-muted); }
.kripto-table-wrapper { overflow-x: auto; margin-bottom: 1.5rem; }
.kripto-table {
    width: 100%; border-collapse: collapse;
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md);
}
.kripto-table th, .kripto-table td {
    padding: 0.875rem 1rem; text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.kripto-table th {
    background: #f8fafc; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted);
}
.kripto-table tbody tr:hover { background: #f8fafc; }
.kripto-table tbody tr:last-child td { border-bottom: none; }
.kripto-th-num, .kripto-td-num { text-align: right !important; }
.kripto-coin-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    text-decoration: none; color: inherit; font-weight: 600;
}
.kripto-coin-link:hover { color: var(--color-accent); }
.kripto-coin-img { border-radius: 50%; flex-shrink: 0; }
.kripto-coin-symbol { color: var(--color-text-muted); font-size: 0.9rem; min-width: 2.5rem; }
.kripto-coin-name { color: var(--color-text); }
.kripto-td-num.positive { color: #16a34a; font-weight: 600; }
.kripto-td-num.negative { color: #dc2626; font-weight: 600; }
.kripto-price { font-weight: 700; color: var(--color-text); }
.kripto-updated { margin: 0; font-size: 0.85rem; color: var(--color-text-muted); }
@media (max-width: 768px) {
    .kripto-table th, .kripto-table td { padding: 0.6rem 0.75rem; font-size: 0.9rem; }
    .kripto-coin-name { display: none; }
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; color: var(--color-text); }
.contact-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; background: var(--color-surface); color: var(--color-text); transition: border-color 0.2s, box-shadow 0.2s; }
.contact-input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
.contact-input::placeholder { color: var(--color-text-muted); opacity: 0.7; }
.contact-textarea { min-height: 140px; resize: vertical; }
.contact-submit {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4); }
.success { color: #166534; }
.error { color: #b91c1c; }

/* Editöryal Politika sayfası */
.page-editorial-policy { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem; }
.page-editorial-inner { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.page-editorial-title { margin: 0 0 0.5rem; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); }
.page-editorial-intro { margin: 0 0 1.5rem; color: var(--color-text-muted); line-height: 1.6; font-size: 0.95rem; }
.page-editorial-body { line-height: 1.7; }
.page-editorial-body h2 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; padding-bottom: 0.35rem; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.page-editorial-body h2:first-child { margin-top: 0; }
.page-editorial-body p { margin: 0 0 0.75rem; color: var(--color-text); }
.page-editorial-body a { color: var(--color-accent); text-decoration: none; }
.page-editorial-body a:hover { text-decoration: underline; }

/* Sadece ana site içeriğinde (admin paneli hariç) */
#main-content .admin-page { max-width: 600px; margin: 2rem auto; padding: 0 1rem; }
#main-content .admin-page h1 { margin-bottom: 1rem; }
.sections-list { list-style: none; padding: 0; }
.section-item { padding: 0.75rem; border: 1px solid #ddd; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 1rem; }
.drag-handle { cursor: move; }
.section-item.dragging { opacity: 0.5; }

.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item dt { margin: 0 0 0.5rem; }
.faq-item dd { margin: 0; color: #555; }
.post-faq { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.post-faq-title { font-size: 1.25rem; margin: 0 0 1.25rem; color: var(--color-text); }

/* İlgili Yazılar */
/* Sonraki yazı - haber sonunda otomatik geçiş */
.post-next-article {
    margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border);
}
.post-next-link {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.25rem; background: var(--color-surface); border-radius: var(--radius-lg);
    border: 1px solid var(--color-border); text-decoration: none; color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.post-next-link:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.post-next-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.post-next-image {
    flex-shrink: 0; width: 140px; height: 90px; border-radius: 8px; overflow: hidden; background: var(--color-surface);
}
.post-next-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-next-placeholder { background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.post-next-body { flex: 1; min-width: 0; }
.post-next-category { display: block; font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 0.25rem; }
.post-next-title { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 700; line-height: 1.35; color: var(--color-text); }
.post-next-link:hover .post-next-title { color: var(--color-accent); }
.post-next-arrow { font-size: 0.9rem; font-weight: 600; color: var(--color-accent); }

.post-related { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.post-related-title { font-size: 1.25rem; margin: 0 0 1.25rem; color: var(--color-text); }
.post-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; max-width: 100%; }
.post-related-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s; max-width: 100%; }
.post-related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-related-card a { text-decoration: none; color: inherit; display: block; }
.post-related-image { display: block; width: 100%; height: 100px !important; max-height: 100px !important; overflow: hidden; background: var(--color-surface); }
.post-related-image img { width: 100% !important; max-width: 100% !important; height: 100px !important; max-height: 100px !important; object-fit: cover !important; display: block; transition: transform 0.3s; }
.post-related-card:hover .post-related-image img { transform: scale(1.05); }
.post-related-placeholder { height: 100px; min-height: 100px; background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-border) 100%); }
.post-related-body { padding: 1rem 1.25rem; }
.post-related-category { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.post-related-card-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; line-height: 1.35; color: var(--color-text); }
.post-related-card:hover .post-related-card-title { color: #2563eb; }
.post-related-excerpt { font-size: 0.875rem; color: var(--color-text-muted); margin: 0 0 0.5rem; line-height: 1.45; }
.post-related-date { font-size: 0.8rem; color: var(--color-text-muted); }
@media (max-width: 900px) { .post-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-related-grid { grid-template-columns: 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.2s;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.15);
}
.service-card img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.service-card h3 { margin: 0 0 0.5rem; font-weight: 600; }
.service-card p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { margin: 0; padding: 1.5rem; background: var(--color-card); border-radius: var(--radius-lg); border-left: 4px solid var(--color-accent); box-shadow: var(--shadow-sm); }
.testimonial-card p { margin: 0 0 1rem; font-style: italic; }
.testimonial-card footer { font-size: 0.9rem; color: var(--color-text-muted); }

/* Haber/Portal - Üst haber carousel (tam sayfa genişliği, 5 kart) */
.section-top-articles { padding: 0 0 1.5rem; overflow: hidden; }
.top-articles-container { width: 100%; padding: 0; overflow: hidden; }
.top-articles-carousel { width: 100%; position: relative; }
.top-articles-mobile { display: none; padding: 0 0.75rem; }
.top-article-slide { display: none; position: relative; }
.top-article-slide.active { display: block; }
.top-article-slide .top-article-card { display: block; width: 100%; box-sizing: border-box; }
.top-articles-desktop { display: block; }
.top-articles-viewport { width: 100%; overflow: hidden; }
.top-articles-dots {
    display: none;
    flex-wrap: wrap; justify-content: center; gap: 0.35rem;
    padding: 0.75rem 1rem; background: #fff;
    border-bottom: 3px solid var(--color-accent);
}
.top-articles-dots button {
    width: 32px; height: 32px; border: none; border-radius: 50%;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    color: #94a3b8; background: transparent;
    transition: all 0.2s;
}
.top-articles-dots button:hover { color: var(--color-accent); transform: scale(1.05); }
.top-articles-dots button.active { background: var(--color-accent); color: #fff; }
.top-articles-prev, .top-articles-next {
    display: none;
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border: none;
    background: rgba(15,23,42,0.65); color: #fff; font-size: 1.1rem;
    cursor: pointer; z-index: 10; border-radius: var(--radius-md);
    transition: background 0.2s;
}
.top-articles-prev:hover, .top-articles-next:hover { background: rgba(15,23,42,0.85); }
.top-articles-prev { left: 0.5rem; }
.top-articles-next { right: 0.5rem; }
.top-articles-track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.4s ease;
    padding: 0 1.25rem;
}
.top-article-card {
    flex: 0 0 calc((100vw - 4.5rem) / 5);
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border-radius: var(--radius-md);
    transition: transform 0.25s;
    min-width: 0;
}
.top-article-card:hover { transform: translateY(-2px); }
.top-article-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.top-article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.top-article-card:hover .top-article-image img { transform: scale(1.05); }
.top-article-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #334155 0%, #1e293b 100%); }
.top-article-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%); }
.top-article-category { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; font-weight: 600; border-radius: 4px; opacity: 0; transform: translateY(-4px); transition: opacity 0.25s, transform 0.25s; }
.top-article-card:hover .top-article-category { opacity: 1; transform: translateY(0); }
.top-article-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; margin: 0; font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
@media (max-width: 1024px) { .top-article-card { flex: 0 0 calc((100vw - 3.5rem) / 3); } }
@media (max-width: 640px) { .top-articles-track { padding: 0 1rem; } .top-article-card { flex: 0 0 calc(100vw - 2rem); } }
@media (max-width: 600px) { .top-article-card { flex: 0 0 calc(100vw - 2rem) !important; } }

/* 4'lü Kart Carousel - Slider ile aynı hizada, oklar yok */
.section-four-cards { padding: 1.75rem 1.25rem 1.5rem; overflow: hidden; }
.four-cards-container { max-width: 1200px; margin: 0 auto; }
.four-cards-carousel { position: relative; width: 100%; }
.four-cards-viewport { overflow: hidden; min-width: 0; }
.four-cards-track {
    display: grid; gap: 0.5rem; transition: transform 0.4s ease;
    width: 100%;
}
.four-card {
    min-width: 0; display: block; position: relative; overflow: hidden;
    text-decoration: none; color: #fff; border-radius: var(--radius-lg);
    transition: transform 0.25s; box-shadow: var(--shadow-md);
}
.four-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.four-card-image { position: relative; aspect-ratio: 2/1; overflow: hidden; }
.four-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.four-card:hover .four-card-image img { transform: scale(1.05); }
.four-card-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #334155 0%, #1e293b 100%); }
.four-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
}
.four-card-title {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem 0.75rem 0.75rem;
    margin: 0; font-size: 0.875rem; font-weight: 700; line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Resmî İlanlar - 4 kart, başlık + TÜMÜ butonu */
/* Gastro Grid - 2x2 düzen, kategori başlığı + TÜMÜ */
.section-gastro-grid { padding: 1.5rem 1.25rem; }
.gastro-grid-container { max-width: 1200px; margin: 0 auto; }
.gastro-grid-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1rem;
}
.gastro-grid-title { margin: 0; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--color-text); }
.gastro-grid-tumunu { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.gastro-grid-tumunu:hover { color: var(--color-accent); }
.gastro-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gastro-grid-card {
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.gastro-grid-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gastro-grid-card:nth-child(odd) .gastro-grid-card-image { order: 1; }
.gastro-grid-card:nth-child(odd) .gastro-grid-card-title { order: 2; }
.gastro-grid-card:nth-child(even) .gastro-grid-card-image { order: 2; }
.gastro-grid-card:nth-child(even) .gastro-grid-card-title { order: 1; }
.gastro-grid-card-image {
    aspect-ratio: 4/7; overflow: hidden; background: #e2e8f0;
}
.gastro-grid-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gastro-grid-card:hover .gastro-grid-card-image img { transform: scale(1.05); }
.gastro-grid-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.gastro-grid-card-title {
    margin: 0; padding: 0.75rem 1rem; font-size: 0.95rem; font-weight: 600;
    line-height: 1.35; color: var(--color-text);
}
.gastro-grid-card:hover .gastro-grid-card-title { color: var(--color-accent); }
@media (max-width: 1024px) {
    .gastro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gastro-grid { grid-template-columns: 1fr; }
}

.section-official-announcements { padding: 0.75rem 1.25rem 1.5rem; background: #fff; }
.official-announcements-container { max-width: 1200px; margin: 0 auto; }
.official-announcements-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.official-announcements-title {
    margin: 0; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--color-text);
}
.official-announcements-tumunu {
    color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.official-announcements-tumunu:hover { color: var(--color-accent); }
.official-announcements-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.official-announcement-card {
    display: block; text-decoration: none; color: inherit;
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.official-announcement-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-2px);
}
.official-announcement-image {
    position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e2e8f0;
}
.official-announcement-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s;
}
.official-announcement-card:hover .official-announcement-image img { transform: scale(1.05); }
.official-announcement-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.official-announcement-overlay {
    position: absolute; top: 0; right: 0; left: auto; bottom: auto;
    display: flex; align-items: flex-start; justify-content: flex-end;
    padding: 0.5rem 0.5rem 0 0; background: transparent;
}
.official-announcement-overlay-text {
    padding: 0.25rem 0.5rem; background: rgba(15, 23, 42, 0.85);
    color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
    border-radius: 4px;
}
.official-announcement-title {
    margin: 0; padding: 0.75rem 1rem 1rem; font-size: 0.875rem; font-weight: 700;
    line-height: 1.4; color: var(--color-text);
}
.official-announcement-card:hover .official-announcement-title { color: var(--color-accent); }
@media (max-width: 1024px) {
    .official-announcements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .official-announcements-grid { grid-template-columns: 1fr; }
}

/* Kripto Para - Yatay liste, yeşil/kırmızı değişim */
.section-crypto-currencies { padding: 0.75rem 1.25rem 1.5rem; background: #fff; }
.crypto-currencies-container { max-width: 1200px; margin: 0 auto; }
.crypto-currencies-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.crypto-currencies-title {
    margin: 0; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--color-text);
}
.crypto-currencies-tumunu {
    color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.crypto-currencies-tumunu:hover { color: var(--color-accent); }
.crypto-currencies-separator {
    height: 1px; background: var(--color-border); margin-bottom: 1.25rem;
}
.crypto-currencies-list {
    display: flex; flex-wrap: nowrap; gap: 1.5rem 2rem;
    overflow-x: auto; overflow-y: hidden; padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.crypto-currencies-list::-webkit-scrollbar { height: 6px; }
.crypto-currencies-list::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.crypto-currencies-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.crypto-item {
    flex: 0 0 auto; min-width: 0; flex-shrink: 0;
}
.crypto-item-main {
    display: flex; align-items: center; gap: 0.75rem;
}
.crypto-item-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; overflow: hidden; background: #e2e8f0;
}
.crypto-item-icon img { width: 100%; height: 100%; object-fit: cover; }
.crypto-item-icon-placeholder {
    width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}
.crypto-item-content { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.crypto-item-name {
    font-size: 0.95rem; font-weight: 600; color: var(--color-text);
}
.crypto-item-value-row {
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.crypto-item-value {
    font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em;
}
.crypto-item-value.positive { color: #16a34a; }
.crypto-item-value.negative { color: #dc2626; }
.crypto-item-change { font-size: 0.85rem; font-weight: 600; }
.crypto-item-change.positive { color: #16a34a; }
.crypto-item-change.negative { color: #dc2626; }
.crypto-item-arrow { font-size: 1.1rem; font-weight: 700; }
.crypto-item-arrow.positive { color: #16a34a; }
.crypto-item-arrow.negative { color: #dc2626; }
@media (max-width: 768px) {
    .crypto-currencies-list { gap: 1rem 1.25rem; }
    .crypto-item-value { font-size: 1.1rem; }
    .crypto-item { min-width: 140px; }
}

/* Ana Slider (Haber/Portal) - Tek blok: büyük alan + sağ sidebar */
.section-main-slider { padding: 0 1.25rem 1rem; }
.main-slider-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 340px; gap: 0;
    align-items: stretch;
    background: var(--color-card); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.main-slider-left { position: relative; min-height: 400px; }
.main-slider-wrapper { position: relative; }
.main-slider-track { position: relative; }
.main-slide { display: none; position: relative; }
.main-slide.active { display: block; }
.main-slide-link { display: block; text-decoration: none; color: inherit; position: absolute; inset: 0; z-index: 1; }
.main-slide-image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #1e293b; }
.main-slide-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.main-slide:hover .main-slide-image img { transform: scale(1.03); }
.main-slide-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #475569 0%, #334155 100%); }
.main-slide-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); padding: 1.5rem 1.25rem; }
.main-slide-overlay h2 { margin: 0; font-size: 1.5rem; font-weight: 700; line-height: 1.35; letter-spacing: -0.02em; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.main-slider-prev, .main-slider-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: none; background: rgba(15,23,42,0.65); color: #fff; font-size: 1.25rem; cursor: pointer; z-index: 10; border-radius: var(--radius-md); transition: background 0.2s; }
.main-slider-prev:hover, .main-slider-next:hover { background: rgba(15,23,42,0.85); }
.main-slider-prev { left: 0.75rem; }
.main-slider-next { right: 0.75rem; }
.main-slider-dots {
    display: flex; flex-wrap: nowrap; justify-content: space-between;
    padding: 0.5rem 1rem; background: #fff;
    border-bottom: 3px solid var(--color-accent);
    width: 100%;
}
.main-slider-dots button {
    flex: 0 0 auto; width: 36px; height: 36px; border: none;
    cursor: pointer; font-size: 0.95rem; font-weight: 600; border-radius: 50%;
    color: #94a3b8; background: transparent;
    transition: all 0.2s;
}
.main-slider-dots button:hover { color: var(--color-accent); transform: scale(1.05); }
.main-slider-dots button.active {
    background: var(--color-accent); color: #fff;
}
.main-slider-sidebar {
    display: flex; flex-direction: column; gap: 0;
    padding: 1rem; border-left: 1px solid var(--color-border);
    min-height: 0;
}
.sidebar-article {
    flex: 1; display: flex; gap: 1rem; min-height: 0; align-items: center;
    padding: 0.75rem 0; border-bottom: 1px solid var(--color-border);
    text-decoration: none; color: inherit; transition: background 0.2s;
}
.sidebar-article-content { min-width: 0; flex: 1; }
.sidebar-article:hover { background: var(--color-surface); }
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article-image {
    flex-shrink: 0; width: 100px; aspect-ratio: 4/3;
    overflow: hidden; border-radius: var(--radius-sm);
}
.sidebar-article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.sidebar-article:hover .sidebar-article-image img { transform: scale(1.05); }
.sidebar-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.sidebar-article-content h4 { margin: 0 0 0.25rem; font-size: 0.95rem; font-weight: 600; line-height: 1.35; color: var(--color-text); }
.sidebar-article:hover .sidebar-article-content h4 { color: var(--color-accent); }
.sidebar-meta { font-size: 0.8rem; color: var(--color-text-muted); }
@media (max-width: 900px) { .main-slider-container { grid-template-columns: 1fr; } .main-slider-sidebar { border-left: none; border-top: 1px solid var(--color-border); } }

/* Portal Slider (Sol-Orta-Sağ) - Görseldeki gibi 3 sütun */
.section-portal-slider { padding: 0 1.25rem 0; }
.portal-slider-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 280px 1fr 280px; gap: 0;
    align-items: stretch; min-height: 520px;
    background: var(--color-card); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.portal-slider-left {
    display: flex; flex-direction: column; min-height: 0;
    border-right: 1px solid var(--color-border);
}
.portal-left-wrapper { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; }
.portal-left-track { position: relative; flex: 1; min-height: 0; }
.portal-left-slide { display: none; position: absolute; inset: 0; }
.portal-left-slide.active { display: block; }
.portal-left-link { display: block; text-decoration: none; color: inherit; position: absolute; inset: 0; }
.portal-left-image {
    position: absolute; inset: 0; overflow: hidden; background: #1e293b;
}
.portal-left-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portal-left-slide:hover .portal-left-image img { transform: scale(1.03); }
.portal-left-dots {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent);
    z-index: 15;
}
.portal-left-dots button {
    flex: 0 0 auto; width: 34px; height: 34px; border: none;
    cursor: pointer; font-size: 0.9rem; font-weight: 700; border-radius: 50%;
    color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.portal-left-dots button:hover { color: #fff; background: rgba(255,255,255,0.4); transform: scale(1.08); }
.portal-left-dots button.active { background: var(--color-accent); color: #fff; }
.portal-left-prev, .portal-left-next {
    position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px;
    border: none; background: rgba(15,23,42,0.65); color: #fff; font-size: 1rem;
    cursor: pointer; z-index: 10; border-radius: var(--radius-md); transition: background 0.2s;
}
.portal-left-prev:hover, .portal-left-next:hover { background: rgba(15,23,42,0.85); }
.portal-left-prev { left: 0.35rem; }
.portal-left-next { right: 0.35rem; }
.portal-slider-center {
    display: flex; flex-direction: column; min-height: 0;
}
.portal-center-wrapper { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; }
.portal-center-track { position: relative; flex: 1; min-height: 0; }
.portal-center-slide { display: none; position: absolute; inset: 0; }
.portal-center-slide.active { display: block; }
.portal-center-link { display: block; text-decoration: none; color: inherit; position: absolute; inset: 0; }
.portal-center-image {
    position: absolute; inset: 0; overflow: hidden; background: #1e293b;
}
.portal-center-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portal-center-slide:hover .portal-center-image img { transform: scale(1.03); }
.portal-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
    padding: 1rem 1rem;
}
.portal-left-image .portal-overlay { padding: 1.25rem 1.25rem 3.5rem; }
.portal-center-image .portal-overlay { padding: 1.25rem 1.25rem 3.5rem; }
.portal-overlay h3, .portal-overlay h4 { margin: 0; color: #fff; font-weight: 600; line-height: 1.35; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.portal-overlay h3 { font-size: 1.1rem; }
.portal-overlay h4 { font-size: 0.95rem; }
.portal-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #475569 0%, #334155 100%); }
.portal-slider-prev, .portal-slider-next {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
    border: none; background: rgba(15,23,42,0.65); color: #fff; font-size: 1.1rem;
    cursor: pointer; z-index: 10; border-radius: var(--radius-md); transition: background 0.2s;
}
.portal-slider-prev:hover, .portal-slider-next:hover { background: rgba(15,23,42,0.85); }
.portal-slider-prev { left: 0.5rem; }
.portal-slider-next { right: 0.5rem; }
.portal-slider-dots {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent);
    z-index: 5;
}
.portal-slider-dots button {
    flex: 0 0 auto; width: 34px; height: 34px; border: none;
    cursor: pointer; font-size: 0.9rem; font-weight: 700; border-radius: 50%;
    color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.portal-slider-dots button:hover { color: #fff; background: rgba(255,255,255,0.4); transform: scale(1.08); }
.portal-slider-dots button.active { background: var(--color-accent); color: #fff; }
.portal-slider-right {
    display: flex; flex-direction: column; gap: 0;
    border-left: 1px solid var(--color-border);
}
.portal-right-card {
    flex: 1; display: block; text-decoration: none; color: inherit;
    min-height: 120px; border-bottom: 1px solid var(--color-border);
}
.portal-right-card:last-child { border-bottom: none; }
.portal-right-image {
    position: relative; display: block; width: 100%; height: 100%; min-height: 120px;
    overflow: hidden; background: #1e293b;
}
.portal-right-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.portal-right-card:hover .portal-right-image img { transform: scale(1.05); }
.homepage-section-full-width .portal-slider-container,
.homepage-section-full-width .four-cards-container,
.homepage-section-full-width .gastro-grid-container,
.homepage-section-full-width .official-announcements-container,
.homepage-section-full-width .crypto-currencies-container,
.homepage-section-full-width .bilgi-ilanlar-container,
.homepage-section-full-width .guncel-haberler-container,
.homepage-section-full-width .haber-manset-container,
.homepage-section-full-width .single-featured-container { max-width: 100%; }
@media (max-width: 1024px) {
    .portal-slider-container { grid-template-columns: 1fr; min-height: auto; }
    .portal-slider-left { border-right: none; border-bottom: 1px solid var(--color-border); }
    .portal-left-wrapper { min-height: 280px; }
    .portal-slider-right { border-left: none; border-top: 1px solid var(--color-border); }
    .portal-right-image { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
    .portal-slider-container { grid-template-columns: 1fr !important; min-height: auto !important; }
    .portal-left-wrapper { min-height: 180px; }
    .portal-slider-center .portal-center-wrapper { min-height: 200px; }
    .portal-slider-right .portal-right-card { min-height: 0; }
    .portal-right-image { aspect-ratio: 16/9; min-height: 100px; }
}

/* Sayfa layout: içerik + sidebar (blog vb.) - sidebar içerikle birlikte scroll eder */
.main-with-sidebar {
    max-width: 1400px; margin: 0 auto; padding: 1.5rem 1rem;
    display: grid; grid-template-columns: 1fr 240px; gap: 2rem; align-items: start;
}
.main-content-area { min-width: 0; }
.page-sidebar {
    width: 240px; padding-left: 1rem; margin-left: 0;
    border: none; border-left: none; border-right: none;
    position: static !important; /* Scroll ile birlikte insın, yukarıda sabit kalmasın */
}
@media (max-width: 900px) {
    .main-with-sidebar { grid-template-columns: 1fr; gap: 2rem; }
    .page-sidebar { width: auto; padding-left: 0; margin-left: 0; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
}

/* Kategori Haberleri section (turuncu tab + 2 sütun liste) */
.section-category-news { padding: 1.5rem 0; }
.category-news-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.category-news-tab {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: #f97316; color: #fff;
    font-weight: 600; font-size: 1rem; border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.category-news-viewall {
    color: var(--color-text-muted); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.category-news-viewall:hover { color: var(--color-accent); }
.category-news-underline {
    height: 3px; background: #f97316; margin-top: -1px; border-radius: 0 0 2px 2px;
}
.category-news-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    margin-top: 1rem;
}
.category-news-item {
    display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid var(--color-border); text-decoration: none; color: inherit;
    transition: background 0.2s;
}
.category-news-item:hover { background: var(--color-surface); }
.category-news-item:nth-child(odd) { padding-right: 1.5rem; }
.category-news-item:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--color-border); }
.category-news-thumb {
    flex-shrink: 0; width: 90px; height: 70px; overflow: hidden; border-radius: var(--radius-sm);
}
.category-news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.category-news-item:hover .category-news-thumb img { transform: scale(1.05); }
.category-news-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.category-news-body { flex: 1; min-width: 0; }
.category-news-title {
    margin: 0 0 0.35rem; font-size: 1rem; font-weight: 600; line-height: 1.35; color: var(--color-text);
}
.category-news-item:hover .category-news-title { color: var(--color-accent); }
.category-news-meta {
    display: flex; gap: 1rem; font-size: 0.8rem; color: var(--color-text-muted);
}
.category-news-comments { margin-left: auto; }
@media (max-width: 768px) {
    .category-news-grid { grid-template-columns: 1fr; }
    .category-news-item:nth-child(odd),
    .category-news-item:nth-child(even) { padding: 1rem 0; padding-right: 0; padding-left: 0; border-left: none; }
}

/* Güncel Haberler (1 büyük + 4 küçük kart) */
.section-guncel-haberler { padding: 1.5rem 1.25rem 1.5rem; }
.guncel-haberler-container { max-width: 1200px; margin: 0 auto; }
.guncel-haberler-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.guncel-haberler-title {
    margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--color-text);
}
.guncel-haberler-line {
    flex: 0 0 60px; height: 3px; border-radius: 2px;
}
.guncel-haberler-grid {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 0.75rem; height: 280px;
}
.guncel-haberler-card {
    display: block; text-decoration: none; color: inherit; overflow: hidden; border-radius: var(--radius-md);
    transition: transform 0.2s, box-shadow 0.2s;
}
.guncel-haberler-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.guncel-haberler-card-large {
    grid-row: 1 / -1; grid-column: 1;
}
.guncel-haberler-image {
    position: relative; width: 100%; height: 100%; min-height: 100px;
    overflow: hidden; background: #1e293b;
}
.guncel-haberler-card-large .guncel-haberler-image { min-height: 100%; }
.guncel-haberler-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s;
}
.guncel-haberler-card:hover .guncel-haberler-image img { transform: scale(1.05); }
.guncel-haberler-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.guncel-haberler-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent);
}
.guncel-haberler-tag {
    position: absolute; padding: 0.35rem 0.65rem;
    font-size: 0.7rem; font-weight: 700; color: #fff; letter-spacing: 0.05em;
    border-radius: 4px; z-index: 2;
}
.guncel-haberler-card-large .guncel-haberler-tag { bottom: 1rem; left: 1rem; }
.guncel-haberler-card-small .guncel-haberler-tag { top: 0.65rem; left: 0.65rem; }
.guncel-haberler-card-title {
    position: absolute; bottom: 0; left: 0; right: 0; margin: 0;
    padding: 1rem 1rem 1rem; color: #fff; font-size: 1rem; font-weight: 600;
    line-height: 1.35; text-shadow: 0 1px 2px rgba(0,0,0,0.5); z-index: 2;
}
.guncel-haberler-card-large .guncel-haberler-card-title {
    font-size: 1.15rem; padding: 1.25rem 1.25rem 3rem;
}
.guncel-haberler-card:hover .guncel-haberler-card-title { color: #fff; }
.guncel-haberler-side {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 0.75rem; grid-column: 2; grid-row: 1 / -1;
}
.guncel-haberler-viewall {
    display: inline-block; margin-top: 1rem; font-size: 0.9rem; font-weight: 500;
    color: var(--color-text-muted); text-decoration: none;
}
.guncel-haberler-viewall:hover { color: var(--color-accent); }
@media (max-width: 768px) {
    .guncel-haberler-grid {
        grid-template-columns: 1fr; grid-template-rows: auto; height: auto;
    }
    .guncel-haberler-card-large {
        grid-row: auto; grid-column: 1; aspect-ratio: 16/9;
    }
    .guncel-haberler-side {
        grid-column: 1; grid-row: auto; grid-template-columns: 1fr 1fr;
    }
}

/* Kategori Liste (Özetli) - Dikey liste, özet + meta */
.section-category-list { padding: 1.5rem 0; }
.category-list-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.category-list-tab {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; color: #fff; font-weight: 600; font-size: 1rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.category-list-icon { font-size: 1.1rem; }
.category-list-viewall {
    color: var(--color-text-muted); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.category-list-viewall:hover { color: var(--color-accent); }
.category-list-underline {
    height: 3px; margin-top: -1px; border-radius: 0 0 2px 2px;
}
.category-list-items { list-style: none; margin: 1rem 0 0; padding: 0; }
.category-list-item { margin: 0; border-bottom: 1px solid var(--color-border); }
.category-list-item:last-child { border-bottom: none; }
.category-list-link {
    display: flex; gap: 1.25rem; padding: 1.25rem 0;
    text-decoration: none; color: inherit; transition: background 0.2s;
}
.category-list-link:hover { background: var(--color-surface); }
.category-list-thumb {
    flex-shrink: 0; width: 160px; height: 110px; overflow: hidden; border-radius: var(--radius-md);
}
.category-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.category-list-link:hover .category-list-thumb img { transform: scale(1.03); }
.category-list-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.category-list-body { flex: 1; min-width: 0; }
.category-list-title {
    margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; line-height: 1.35; color: var(--color-text);
}
.category-list-link:hover .category-list-title { color: var(--color-accent); }
.category-list-excerpt {
    margin: 0 0 0.5rem; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.5;
}
.category-list-meta {
    display: flex; gap: 1.25rem; font-size: 0.8rem; color: var(--color-text-muted); flex-wrap: wrap;
}
@media (max-width: 640px) {
    .category-list-link { flex-direction: column; }
    .category-list-thumb { width: 100%; height: 180px; }
}

/* Video Galeri */
.section-video-gallery { padding: 1.5rem 0; }
.video-gallery-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1rem;
}
.video-gallery-tab {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; color: #fff; font-weight: 600; font-size: 1rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.video-gallery-icon { font-size: 0.9rem; opacity: 0.9; }
.video-gallery-viewall {
    color: var(--color-text-muted); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.video-gallery-viewall:hover { color: var(--color-accent); }
.video-gallery-wrapper {
    position: relative; overflow: hidden;
}
.video-gallery-viewport { overflow: hidden; }
.video-gallery-track {
    display: flex; gap: 1rem; transition: transform 0.4s ease;
}
.video-gallery-item {
    flex: 0 0 calc((100% - 3rem) / 4); min-width: 0;
    text-decoration: none; color: inherit; display: block;
}
.video-gallery-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md);
    background: #1e293b;
}
.video-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.video-gallery-item:hover .video-gallery-thumb img { transform: scale(1.05); }
.video-gallery-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.video-gallery-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.4); color: #fff; font-size: 1.5rem;
    width: 56px; height: 56px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.9);
    line-height: 1; padding-left: 4px; transition: background 0.2s, transform 0.2s;
}
.video-gallery-item:hover .video-gallery-play {
    background: rgba(0,0,0,0.6); transform: translate(-50%, -50%) scale(1.08);
}
.video-gallery-title {
    margin: 0.5rem 0 0; font-size: 0.95rem; font-weight: 600; line-height: 1.35; color: var(--color-text);
}
.video-gallery-item:hover .video-gallery-title { color: var(--color-accent); }
@media (max-width: 1024px) {
    .video-gallery-item { flex: 0 0 calc((100% - 1rem) / 2); }
}
@media (max-width: 640px) {
    .video-gallery-item { flex: 0 0 100%; }
}

/* Yazarlara Ait Son Yazılar - carousel, profil resmi sağda taşan */
.section-author-posts { padding: 1.5rem 0; }
.author-posts-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.author-posts-title {
    margin: 0; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--color-text);
}
.author-posts-tumunu {
    color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.author-posts-tumunu:hover { color: var(--color-accent); }
.author-posts-separator {
    height: 1px; background: var(--color-border); margin-bottom: 1.5rem;
}
.author-posts-carousel { position: relative; width: 100%; }
.author-posts-viewport { overflow: hidden; min-width: 0; }
.author-posts-track {
    display: grid; gap: 1.25rem; transition: transform 0.4s ease;
    width: 100%;
}
.author-post-card {
    position: relative; display: block; min-width: 0;
    text-decoration: none; color: #fff; border-radius: var(--radius-lg);
    overflow: visible; box-shadow: var(--shadow-md);
    transition: transform 0.25s, box-shadow 0.25s;
}
.author-post-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.author-post-card-bg {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    border-radius: var(--radius-lg); background: #1e293b;
}
.author-post-card-bg img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s;
}
.author-post-card:hover .author-post-card-bg img { transform: scale(1.05); }
.author-post-card-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}
.author-post-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent);
}
.author-post-card-content {
    position: absolute; bottom: 0; left: 0; right: 2.5rem;
    padding: 1rem 1.25rem 1.25rem;
}
.author-post-card-category {
    display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; opacity: 0.9; margin-bottom: 0.25rem;
}
.author-post-card-author {
    display: block; font-size: 0.9rem; opacity: 0.95; margin-bottom: 0.35rem;
}
.author-post-card-title {
    margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.35;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.author-post-card-avatar {
    position: absolute; right: -0.75rem; bottom: 1rem;
    width: 64px; height: 64px; border-radius: 50%;
    overflow: hidden; border: 3px solid #fff; box-shadow: var(--shadow-md);
    z-index: 5;
}
.author-post-card-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.author-post-card-avatar-placeholder {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    font-size: 1.5rem; font-weight: 700; color: #fff;
}
@media (max-width: 1024px) {
    .author-posts-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .author-posts-track { grid-template-columns: 1fr; }
    .author-post-card-avatar { right: 1rem; width: 56px; height: 56px; }
}

/* Bilgi + İlanlar - 2 sütun: sol carousel, sağ ilan.gov.tr iframe */
.section-bilgi-ilanlar { padding: 1.5rem 1.25rem; }
.bilgi-ilanlar-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 1.5rem; align-items: flex-start; min-width: 0;
}
.bilgi-ilanlar-left { flex: 1; min-width: 0; }
.bilgi-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.bilgi-title { margin: 0; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: var(--color-text); }
.bilgi-tumunu { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.bilgi-tumunu:hover { color: var(--color-accent); }
.bilgi-separator { height: 1px; background: var(--color-border); margin-bottom: 1rem; }
.bilgi-carousel { position: relative; width: 100%; }
.bilgi-viewport { overflow: hidden; min-width: 0; }
.bilgi-track {
    display: grid; gap: 1rem; transition: transform 0.4s ease;
    width: 100%;
}
.bilgi-card {
    display: block; text-decoration: none; color: inherit; min-width: 0;
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.bilgi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bilgi-card-image {
    position: relative; aspect-ratio: 16/9; overflow: hidden; background: #e2e8f0;
}
.bilgi-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.bilgi-card:hover .bilgi-card-image img { transform: scale(1.05); }
.bilgi-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.bilgi-card-title {
    margin: 0; padding: 0.75rem 1rem; font-size: 0.95rem; font-weight: 600;
    line-height: 1.35; color: var(--color-text);
}
.bilgi-card:hover .bilgi-card-title { color: var(--color-accent); }

.bilgi-ilanlar-right {
    flex: 0 0 340px; min-width: 0;
    display: flex; flex-direction: column;
    background: var(--color-card); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.ilanlar-header { padding: 0.75rem 1rem; background: #f8fafc; border-bottom: 1px solid var(--color-border); }
.ilanlar-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ilanlar-tab {
    padding: 0.4rem 0.75rem; font-size: 0.8rem; font-weight: 600;
    text-decoration: none; color: var(--color-text-muted);
    background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); transition: all 0.2s;
}
.ilanlar-tab:hover { color: var(--color-accent); border-color: var(--color-accent); }
.ilanlar-iframe-wrap {
    flex: 0 0 auto; height: 170px; position: relative;
}
.ilanlar-iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}
.ilanlar-footer {
    padding: 0.5rem 1rem; background: #f1f5f9;
    border-top: 1px solid var(--color-border);
}
.ilanlar-brand {
    font-size: 0.8rem; color: var(--color-text-muted);
    text-decoration: none; font-weight: 600;
}
.ilanlar-brand:hover { color: var(--color-accent); }
@media (max-width: 1024px) {
    .bilgi-ilanlar-container { flex-direction: column; }
    .bilgi-ilanlar-right { flex: 0 0 auto; }
    .ilanlar-iframe-wrap { height: 240px; }
}
@media (max-width: 768px) {
    .bilgi-ilanlar-container { flex-direction: column !important; gap: 0.75rem; }
    .bilgi-ilanlar-right { flex: 0 0 auto; width: 100%; }
    .ilanlar-iframe-wrap { height: 180px; min-height: 150px; }
}

/* Haber + Gazete Manşetleri - 2 sütun: sol haber kartları, sağ gazete manşetleri */
.section-haber-manset { padding: 1.5rem 1.25rem; }
.haber-manset-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 1.5rem; align-items: stretch; min-width: 0;
}
.haber-manset-left { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.haber-manset-left-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.haber-manset-left-title { margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--color-text); }
.haber-manset-tumunu { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.haber-manset-tumunu:hover { color: var(--color-accent); }
.haber-manset-separator { height: 1px; background: var(--color-border); margin-bottom: 1rem; }
.haber-manset-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
    flex: 1; min-height: 0; height: 320px;
}
.haber-manset-card {
    display: block; text-decoration: none; color: inherit;
    border-radius: var(--radius-md); overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s; min-height: 0;
}
.haber-manset-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.haber-manset-card-image {
    position: relative; width: 100%; height: 100%; min-height: 120px;
    overflow: hidden; background: #1e293b;
}
.haber-manset-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.haber-manset-card:hover .haber-manset-card-image img { transform: scale(1.05); }
.haber-manset-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #475569 0%, #334155 100%); }
.haber-manset-card-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, transparent);
}
.haber-manset-card-cat {
    position: absolute; top: 0.5rem; left: 0.5rem; z-index: 3;
    padding: 0.3rem 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
    border-radius: 4px; background: #dc2626; color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.haber-manset-card-title {
    position: absolute; bottom: 0; left: 0; right: 0; margin: 0; z-index: 3;
    padding: 0.75rem 0.75rem; font-size: 0.85rem; font-weight: 600;
    line-height: 1.3; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.haber-manset-card:hover .haber-manset-card-title { color: #fff; }

.haber-manset-right {
    flex: 0 0 340px; min-width: 0;
    display: flex; flex-direction: column;
    background: var(--color-card); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
    }
.haber-manset-right-header { padding: 0.6rem 1rem; background: #f8fafc; border-bottom: 1px solid var(--color-border); }
.haber-manset-right-title { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--color-text); }
.haber-manset-gazette-list {
    padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
    max-height: 320px; overflow-y: auto;
}
.haber-manset-gazette-item {
    display: flex; flex-direction: column; gap: 0.5rem;
}
.haber-manset-gazette-link,
.haber-manset-gazette-image {
    display: block; overflow: hidden; border-radius: var(--radius-sm);
}
.haber-manset-gazette-link img,
.haber-manset-gazette-image img {
    width: 100%; height: auto; display: block; object-fit: contain;
}
.haber-manset-gazette-meta {
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.haber-manset-gazette-name { font-weight: 600; color: var(--color-text); }
.haber-manset-gazette-date { color: var(--color-text-muted); }
@media (max-width: 1024px) {
    .haber-manset-container { flex-direction: column; }
    .haber-manset-right { flex: 0 0 auto; }
}

/* Tek Öne Çıkan + Grid (Stil) - Solda 1 büyük, sağda grid */
.section-single-featured { padding: 1.5rem 1.25rem; }
.single-featured-container { max-width: 1200px; margin: 0 auto; }
.single-featured-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1rem;
}
.single-featured-title { margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--color-text); }
.single-featured-tumunu { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.single-featured-tumunu:hover { color: var(--color-accent); }
.single-featured-tumunu-top {
    display: block; text-align: right; margin-bottom: 0.75rem;
    color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; text-decoration: none;
}
.single-featured-tumunu-top:hover { color: var(--color-accent); }
.single-featured-layout {
    display: flex; gap: 1.5rem; align-items: stretch; min-width: 0; height: 617px;
}
.single-featured-left { flex: 0 0 625px; width: 625px; min-width: 0; }
.single-featured-main {
    display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%;
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.single-featured-main:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.single-featured-main-cat {
    flex-shrink: 0; padding: 0.4rem 0.75rem;
    font-size: 0.8rem; font-weight: 700; color: var(--color-text);
}
.single-featured-main-image {
    flex: 1; min-height: 0; overflow: hidden; background: #e2e8f0;
}
.single-featured-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.single-featured-main:hover .single-featured-main-image img { transform: scale(1.03); }
.single-featured-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.single-featured-main-title {
    flex-shrink: 0; margin: 0; padding: 0.5rem 0.75rem; font-size: 1.05rem; font-weight: 600;
    line-height: 1.35; color: var(--color-text);
}
.single-featured-main:hover .single-featured-main-title { color: var(--color-accent); }

.single-featured-right { flex: 0 0 380px; min-width: 0; display: flex; flex-direction: column; }
.single-featured-tumunu-top { flex-shrink: 0; }
.single-featured-grid {
    flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr); gap: 0.75rem;
}
.single-featured-card {
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
    background: var(--color-card); border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, transform 0.25s;
}
.single-featured-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.single-featured-card-image {
    flex: 1; min-height: 0; overflow: hidden; background: #e2e8f0;
}
.single-featured-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.single-featured-card:hover .single-featured-card-image img { transform: scale(1.05); }
.single-featured-card-title {
    flex-shrink: 0; margin: 0; padding: 0.4rem 0.6rem; font-size: 0.85rem; font-weight: 600;
    line-height: 1.3; color: var(--color-text);
}
.single-featured-card:hover .single-featured-card-title { color: var(--color-accent); }
@media (max-width: 1024px) {
    .single-featured-layout { flex-direction: column; height: auto; }
    .single-featured-left { flex: 0 0 auto; width: 100%; }
    .single-featured-right { flex: 0 0 auto; }
    .single-featured-main-image { aspect-ratio: 4/3; flex: none; }
    .single-featured-grid { grid-template-rows: none; }
    .single-featured-card-image { aspect-ratio: 16/9; flex: none; }
}

/* Kategori Öne Çıkan - Diğer section'larla aynı genişlik (container: 1200px) */
.section-category-featured { padding: 1.5rem 0; }
.category-featured-tabs {
    display: flex; gap: 0; margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.category-tab {
    padding: 0.6rem 1.25rem; border: none; background: none; color: #94a3b8;
    font-size: 0.95rem; font-weight: 600; cursor: pointer; position: relative;
}
.category-tab:hover { color: var(--color-text); }
.category-tab.active { color: #2563eb; }
.category-tab.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 3px; background: #2563eb;
}
.category-featured-layout {
    display: flex; gap: 1.5rem; align-items: stretch; min-width: 0;
}
.category-featured-main { flex: 1; min-width: 0; }
.category-featured-content { height: 100%; }
.category-panel { height: 100%; }
.category-featured-three-col {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem; align-items: stretch; min-width: 0; height: 100%;
}
.category-featured-left { min-width: 0; }
.category-featured-sidebar {
    width: 320px; flex-shrink: 0;
    position: sticky; top: 1rem;
    background: var(--color-card); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden;
}
.category-featured-card {
    background: var(--color-card); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--color-border);
}
.category-featured-card a { text-decoration: none; color: inherit; display: block; }
.category-featured-image { aspect-ratio: 16/9; overflow: hidden; }
.category-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.category-featured-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.category-featured-body { padding: 1.25rem; }
.category-featured-title {
    margin: 0 0 0.5rem; font-size: 1.2rem; font-weight: 700;
    line-height: 1.4; color: var(--color-text);
}
.category-featured-excerpt {
    margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--color-text-muted);
    line-height: 1.55;
}
.category-featured-meta { font-size: 0.85rem; color: var(--color-text-muted); }
.category-featured-middle { display: flex; flex-direction: column; gap: 0.75rem; }
.category-featured-list-item {
    display: flex; gap: 0.75rem; padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border); text-decoration: none; color: inherit;
}
.category-featured-list-item:last-child { border-bottom: none; }
.category-featured-list-item:hover .category-featured-list-body h3 { color: #2563eb; }
.category-featured-list-thumb {
    flex-shrink: 0; width: 110px; height: 78px;
    overflow: hidden; border-radius: var(--radius-sm);
}
.category-featured-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-featured-list-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.category-featured-list-body { flex: 1; min-width: 0; }
.category-featured-list-body h3 {
    margin: 0 0 0.2rem; font-size: 0.95rem; font-weight: 600;
    line-height: 1.35; color: var(--color-text);
}
.category-featured-list-meta { font-size: 0.8rem; color: var(--color-text-muted); }
.category-sidebar-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1rem; background: #2563eb; color: #fff;
    font-weight: 600; font-size: 1rem;
}
.category-trending-list {
    margin: 0; padding: 0.75rem 1rem; list-style: none; counter-reset: trend;
}
.category-trending-list li {
    counter-increment: trend;
    padding: 0.5rem 0; border-bottom: 1px solid var(--color-border);
}
.category-trending-list li:last-child { border-bottom: none; }
.category-trending-list a {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; color: var(--color-text);
    font-family: inherit; font-size: 0.95rem; font-weight: 500; line-height: 1.3;
}
.category-trending-title {
    flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.category-trending-list a:hover { color: #2563eb; }
.category-trending-list a::before {
    content: counter(trend); flex-shrink: 0; min-width: 24px; width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    background: #2563eb; color: #fff; font-size: 0.8rem; font-weight: 700;
    border-radius: 50%; font-variant-numeric: tabular-nums;
}
@media (max-width: 1200px) {
    .category-featured-layout { flex-direction: column; }
    .category-featured-sidebar { width: 100%; position: static; }
    .category-featured-three-col { grid-template-columns: 1fr; }
}

/* Widget bileşenleri (sidebar) - zarif, minimal */
.page-sidebar .widget {
    margin-bottom: 2rem; background: transparent;
    border: none !important; border-radius: 0; box-shadow: none;
}
.page-sidebar .widget-header { border-left: none; border-right: none; }
.page-sidebar .widget:last-child { margin-bottom: 0; }
.page-sidebar .widget-categories .widget-header {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 0.65rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff; font-weight: 400; font-size: 0.875rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 6px; margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
}
.page-sidebar .widget-categories .widget-header .widget-title {
    margin: 0; font-weight: inherit; font-size: inherit;
}
.page-sidebar .widget-menu-list {
    padding: 0.5rem 0 0; margin: 0;
    list-style: none; border: none;
}
.page-sidebar .widget-menu-list li { border: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
.page-sidebar .widget-menu-list li:last-child { border-bottom: none; }
.page-sidebar .widget-menu-list a {
    display: block; padding: 0.6rem 0;
    text-decoration: none; color: var(--color-text);
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.15s;
}
.page-sidebar .widget-menu-list a:hover { color: #2563eb; background: transparent; }

.page-sidebar .widget-header {
    padding: 0 0 0.6rem; margin-bottom: 0.5rem;
    background: transparent; color: var(--color-text);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 600; font-size: 0.9rem;
}
.page-sidebar .widget-header .widget-title { color: inherit; }
.page-sidebar .widget-sort-icons { display: none; }
.page-sidebar .widget-columnists-list,
.page-sidebar .widget-posts-list { padding: 0; }
.page-sidebar .widget-columnist-item,
.page-sidebar .widget-posts-list li {
    border: none; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-sidebar .widget-columnist-item:last-child,
.page-sidebar .widget-posts-list li:last-child { border-bottom: none; }
.page-sidebar .columnist-link { padding: 0.5rem 0; }
.page-sidebar .columnist-avatar { width: 36px; height: 36px; }
.page-sidebar .columnist-name { font-size: 0.875rem; }
.page-sidebar .columnist-article { font-size: 0.8rem; }
.page-sidebar .widget-posts-list a { padding: 0.45rem 0; font-size: 0.875rem; }
.page-sidebar .widget-posts-list a:hover { color: #2563eb; }
.page-sidebar .widget-empty, .page-sidebar .widget-html-content { padding: 0.5rem 0; }
.page-sidebar .widget-authors-list { padding: 0; }
.page-sidebar .widget-author-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.page-sidebar .author-widget-link { padding: 0.5rem 0; }
.page-sidebar .author-widget-link:hover { background: transparent; }
.page-sidebar .author-widget-link:hover .author-widget-name { color: #2563eb; }

/* Footer vb. widget'lar için varsayılan (kutu stil) */
.widget {
    margin-bottom: 1.5rem; background: var(--color-card);
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}
.widget:last-child { margin-bottom: 0; }
.widget-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1rem; background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #fff; font-weight: 500; font-size: 0.875rem; letter-spacing: 0.02em;
}
.widget-header-columnists { justify-content: space-between; }
.widget-menu-icon, .widget-sort-icons { opacity: 0.85; font-size: 0.9rem; }
.widget-title { margin: 0; flex: 1; }
.widget-menu-list, .widget-columnists-list, .widget-posts-list { list-style: none; margin: 0; padding: 0.75rem 1rem; }
.widget-menu-list li { margin: 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.widget-menu-list li:last-child { border-bottom: none; }
.widget-menu-list a {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0;
    text-decoration: none; color: var(--color-text); font-weight: 500; font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
}
.widget-menu-list a:hover { color: #475569; background: rgba(0,0,0,0.02); }
.widget-menu-icon-item { font-size: 0.95rem; }
.widget-columnists-list { padding: 0.5rem 1rem 1rem; }
.widget-columnist-item { margin: 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.widget-columnist-item:last-child { border-bottom: none; }
.columnist-link { display: flex; gap: 0.75rem; padding: 0.65rem 0; text-decoration: none; color: inherit; transition: background 0.2s; }
.columnist-link:hover { background: rgba(0,0,0,0.02); }
.columnist-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.columnist-avatar.placeholder { background: #f1f5f9; color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; }
.columnist-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.12rem; }
.columnist-name { font-weight: 500; font-size: 0.9rem; color: var(--color-text); }
.columnist-date { font-size: 0.75rem; color: var(--color-text-muted); }
.columnist-article { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.35; }
.widget-posts-list li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.widget-posts-list li:last-child { border-bottom: none; }
.widget-posts-list a { text-decoration: none; color: var(--color-text); font-weight: 500; font-size: 0.9rem; }
.widget-posts-list a:hover { color: #475569; }
.widget-posts-list time { display: block; font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.15rem; }

/* Son Yazılar – thumbnail ile */
.widget-posts-with-thumb .widget-post-link {
    display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.5rem 0;
    text-decoration: none; color: inherit; transition: background 0.2s;
}
.widget-posts-with-thumb .widget-post-link:hover { background: rgba(0,0,0,0.02); }
.widget-posts-with-thumb .widget-post-link:hover .widget-post-title { color: #2563eb; }
.widget-posts-with-thumb .widget-post-thumb {
    flex-shrink: 0; width: 72px; height: 72px; border-radius: 8px;
    overflow: hidden; background: #f1f5f9;
}
.widget-posts-with-thumb .widget-post-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.widget-posts-with-thumb .widget-post-placeholder {
    display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.widget-posts-with-thumb .widget-post-body { flex: 1; min-width: 0; }
.widget-posts-with-thumb .widget-post-title {
    display: block; font-weight: 500; font-size: 0.875rem; color: var(--color-text);
    line-height: 1.35; transition: color 0.2s;
}
.widget-posts-with-thumb .widget-post-date {
    display: block; font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.2rem;
}
.page-sidebar .widget-posts-with-thumb .widget-post-thumb { width: 64px; height: 64px; }
.page-sidebar .widget-posts-with-thumb .widget-post-title { font-size: 0.82rem; }

.widget-empty, .widget-html-content { padding: 1rem; font-size: 0.875rem; color: var(--color-text-muted); }
.widget-html-content { color: var(--color-text); }

/* Özel HTML – içerik alanında (content_top, content_bottom) alan görünümü olmasın */
#main-content > .widget-html,
.content-bottom-area .widget-html {
    background: transparent; border: none; box-shadow: none;
    margin: 0; padding: 0;
}
#main-content > .widget-html .widget-header,
.content-bottom-area .widget-html .widget-header { display: none; }
#main-content > .widget-html .widget-html-content,
.content-bottom-area .widget-html .widget-html-content {
    padding: 0; background: transparent; font-size: inherit; color: inherit;
}

/* Yazarlar widget (sidebar) */
.widget-authors-list { list-style: none; margin: 0; padding: 0.75rem 1rem; }
.widget-author-item { margin: 0; border-bottom: 1px solid var(--color-border); }
.widget-author-item:last-child { border-bottom: none; }
.author-widget-link {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0;
    text-decoration: none; color: inherit; transition: background 0.2s;
}
.author-widget-link:hover { background: var(--color-surface); }
.author-widget-avatar {
    width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.author-widget-avatar.placeholder {
    background: #e2e8f0; color: var(--color-text-muted); display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1rem;
}
.author-widget-name { font-weight: 500; color: var(--color-text); }
.author-widget-link:hover .author-widget-name { color: #2563eb; }

/* İlginizi Çekebilir widget */
.widget-interested-posts .widget-header-interested { padding-bottom: 0.6rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--color-border); }
.widget-interested-list { list-style: none; margin: 0; padding: 0; }
.widget-interested-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.widget-interested-item:last-child { border-bottom: none; }
.widget-interested-link {
    display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0;
    text-decoration: none; color: inherit; transition: background 0.15s;
}
.widget-interested-link:hover { background: rgba(0,0,0,0.02); }
.widget-interested-link:hover .widget-interested-title { color: var(--color-accent); }
.widget-interested-thumb {
    flex-shrink: 0; width: 80px; height: 60px; border-radius: 6px; overflow: hidden;
}
.widget-interested-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.widget-interested-placeholder { background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
.widget-interested-body { flex: 1; min-width: 0; }
.widget-interested-category { display: block; font-size: 0.7rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.2rem; }
.widget-interested-title { display: block; font-weight: 600; font-size: 0.9rem; color: var(--color-text); line-height: 1.35; }

/* Bakmadan Geçme widget */
.widget-dont-miss .widget-header-dont-miss {
    padding-bottom: 0.6rem; margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}
.widget-dont-miss .widget-title { font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.widget-dont-miss-list { list-style: none; margin: 0; padding: 0; }
.widget-dont-miss-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.widget-dont-miss-item:last-child { border-bottom: none; }
.widget-dont-miss-link {
    display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0;
    text-decoration: none; color: inherit; transition: background 0.15s;
}
.widget-dont-miss-link:hover { background: rgba(0,0,0,0.02); }
.widget-dont-miss-link:hover .widget-dont-miss-title { color: var(--color-accent); }
.widget-dont-miss-num {
    flex-shrink: 0; font-size: 1.25rem; font-weight: 800; color: var(--color-text);
    line-height: 1.2; min-width: 1.75rem;
}
.widget-dont-miss-title { font-weight: 600; font-size: 0.9rem; color: var(--color-text); line-height: 1.35; }

/* Modern section ortak */
.section-modern { padding: 2.5rem 0; }
.section-authors.section-modern { padding: 1.25rem 0; }
.section-header-modern { margin-bottom: 1.75rem; }
.section-authors .section-header-modern { margin-bottom: 1rem; }
.section-header-modern .section-title { font-size: 1.6rem; letter-spacing: -0.03em; }

/* Yazarlar section (modern) */
.section-authors .authors-grid-modern {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem;
}
.section-authors .author-card-modern {
    display: block; text-decoration: none; color: inherit;
}
.section-authors .author-card-modern .author-card-inner {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 1.25rem 1rem; background: var(--color-card);
    border-radius: 16px; border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-authors .author-card-modern:hover .author-card-inner {
    transform: translateY(-4px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12);
    border-color: rgba(37, 99, 235, 0.2);
}
.section-authors .author-card-modern .author-card-avatar {
    width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin-bottom: 0.75rem;
    border: 3px solid var(--color-surface);
}
.section-authors .author-card-modern .author-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.section-authors .author-card-modern .author-card-avatar.placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--color-text-muted); display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1.5rem;
}
.section-authors .author-card-modern .author-card-name { margin: 0 0 0.25rem; font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
.section-authors .author-card-modern .author-card-title { font-size: 0.85rem; color: var(--color-text-muted); }

/* Köşe Yazarları section (modern) */
.section-columnists .columnists-grid-modern {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem;
}
.section-columnists .columnist-card-modern {
    display: block; text-decoration: none; color: inherit;
}
.section-columnists .columnist-card-modern .columnist-card-inner {
    display: flex; gap: 1.25rem; padding: 1.5rem;
    background: var(--color-card); border-radius: 16px; border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-columnists .columnist-card-modern:hover .columnist-card-inner {
    transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12);
    border-color: rgba(37, 99, 235, 0.2);
}
.section-columnists .columnist-card-modern .columnist-card-avatar {
    flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--color-surface);
}
.section-columnists .columnist-card-modern .columnist-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.section-columnists .columnist-card-modern .columnist-card-avatar.placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--color-text-muted); display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1.5rem;
}
.section-columnists .columnist-card-modern .columnist-card-body { flex: 1; min-width: 0; }
.section-columnists .columnist-card-modern .columnist-card-name { margin: 0 0 0.25rem; font-size: 1.1rem; font-weight: 600; }
.section-columnists .columnist-card-modern .columnist-card-date { font-size: 0.8rem; color: var(--color-text-muted); }
.section-columnists .columnist-card-modern .columnist-card-article { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.45; }

/* Köşe Yazıları section (modern) */
.section-column-posts .column-posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.section-column-posts .column-post-card {
    background: var(--color-card); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--color-border); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-column-posts .column-post-card:hover {
    transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12);
    border-color: rgba(37, 99, 235, 0.2);
}
.section-column-posts .column-post-card-image {
    display: block; aspect-ratio: 16/9; overflow: hidden;
}
.section-column-posts .column-post-card-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.section-column-posts .column-post-card:hover .column-post-card-image img { transform: scale(1.05); }
.section-column-posts .column-post-card-body { padding: 1.25rem; }
.section-column-posts .column-post-card-title { margin: 0 0 0.75rem; font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
.section-column-posts .column-post-card-title a {
    text-decoration: none; color: var(--color-text); transition: color 0.2s;
}
.section-column-posts .column-post-card-title a:hover { color: #2563eb; }
.section-column-posts .column-post-card-meta {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--color-text-muted);
}
.section-column-posts .column-post-card-author {
    color: var(--color-text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.section-column-posts .column-post-card-author:hover { color: #2563eb; }
.section-column-posts .column-post-card-sep { opacity: 0.6; }

/* ========== MOBİL TASARIM - Tüm section'lar için ========== */
@media (max-width: 768px) {
    /* Ana Slider - dots taşması: küçük nokta, yatay scroll veya sadece aktif+komşu göster */
    .section-main-slider { padding: 0 0.75rem 1rem; }
    .main-slider-container { border-radius: var(--radius-lg); }
    .main-slider-left { min-height: 280px; }
    .main-slide-overlay h2 { font-size: 1.1rem; padding: 1rem 1rem; }
    .main-slider-dots {
        flex-wrap: wrap; justify-content: center; gap: 0.25rem;
        padding: 0.5rem 0.5rem; overflow-x: auto;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .main-slider-dots::-webkit-scrollbar { display: none; }
    .main-slider-dots button {
        width: 28px; height: 28px; font-size: 0.75rem; flex-shrink: 0;
    }
    .main-slider-prev, .main-slider-next { width: 36px; height: 36px; font-size: 1rem; }
    .main-slider-container { grid-template-columns: 1fr !important; }
    .main-slider-sidebar { display: none !important; }

    /* Portal Slider - mobilde gizle */
    .section-portal-slider { display: none !important; }
    .portal-slider-container { border-radius: var(--radius-lg); }
    .portal-left-wrapper { min-height: 220px; }
    .portal-left-dots, .portal-slider-dots {
        gap: 0.25rem; padding: 0.5rem 0.5rem;
        flex-wrap: wrap; justify-content: center;
    }
    .portal-left-dots button, .portal-slider-dots button {
        width: 26px; height: 26px; font-size: 0.7rem; flex-shrink: 0;
    }
    .portal-overlay h3 { font-size: 0.95rem; }
    .portal-overlay h4 { font-size: 0.85rem; }
    .portal-left-prev, .portal-left-next { width: 32px; height: 32px; font-size: 0.9rem; }
    .portal-slider-prev, .portal-slider-next { width: 34px; height: 34px; font-size: 1rem; }

    /* Top Articles - mobilde TEK SLIDE (display none/block), dots ve oklar */
    .section-top-articles { padding: 0 0 1rem; }
    .top-articles-mobile { display: block !important; }
    .top-articles-desktop { display: none !important; }
    .top-articles-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem; }
    .top-articles-prev, .top-articles-next { display: flex; align-items: center; justify-content: center; }
    .top-articles-dots button { width: 28px; height: 28px; font-size: 0.75rem; }
    .top-articles-prev, .top-articles-next { width: 36px; height: 36px; font-size: 1rem; }
    .top-articles-track { padding: 0 0.75rem; gap: 0.5rem; }
    .top-article-title { font-size: 0.85rem; padding: 0.75rem; }
    .top-article-category { font-size: 0.65rem; padding: 0.2rem 0.5rem; }

    /* 4'lü Kart Carousel */
    .section-four-cards { padding: 1rem 0.75rem; }
    .four-cards-viewport { padding: 0 0.75rem; }
    .four-card-title { font-size: 0.8rem; padding: 0.4rem 0.6rem 0.6rem; }

    /* Bilgi + İlanlar */
    .section-bilgi-ilanlar { padding: 1rem 0.75rem; }
    .bilgi-header { margin-bottom: 0.5rem; }
    .bilgi-title { font-size: 1.35rem; }
    .bilgi-tumunu { font-size: 0.8rem; }
    .bilgi-separator { margin-bottom: 0.75rem; }
    .bilgi-card-title { font-size: 0.85rem; padding: 0.6rem 0.75rem; }
    .ilanlar-tabs { gap: 0.35rem; }
    .ilanlar-tab { padding: 0.35rem 0.5rem; font-size: 0.7rem; }
    .ilanlar-iframe-wrap { height: 200px; min-height: 180px; }
    .ilanlar-header { padding: 0.5rem 0.75rem; }
    .ilanlar-footer { padding: 0.4rem 0.75rem; }

    /* Güncel Haberler */
    .guncel-haberler-header { margin-bottom: 0.75rem; }
    .guncel-haberler-title { font-size: 1.25rem; }
    .guncel-haberler-grid { gap: 0.5rem; }
    .guncel-haberler-card-large .guncel-haberler-card-title { font-size: 1rem; padding: 0.75rem 1rem; }
    .guncel-haberler-card-small .guncel-haberler-card-title { font-size: 0.8rem; padding: 0.5rem 0.75rem; }

    /* Haber + Manşet */
    .section-haber-manset { padding: 1rem 0.75rem; }
    .haber-manset-grid { grid-template-columns: 1fr; height: auto; min-height: 0; gap: 0.5rem; }
    .haber-manset-card-image { min-height: 140px; }
    .haber-manset-card-title { font-size: 0.8rem; padding: 0.5rem 0.6rem; }
    .haber-manset-gazette-list { max-height: 240px; padding: 0.75rem; }

    /* Single Featured */
    .section-single-featured { padding: 1rem 0.75rem; }
    .single-featured-left { flex: 1 1 100%; width: 100%; max-width: 100%; }
    .single-featured-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .single-featured-grid .single-featured-card-title { font-size: 0.85rem; }

    /* Category Featured */
    .category-featured-tabs { flex-wrap: wrap; gap: 0.35rem; }
    .category-tab { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
    .category-featured-three-col { flex-direction: column; gap: 1rem; }
    .category-featured-list-item { padding: 0.5rem 0; }
    .category-featured-list-thumb { width: 60px; height: 45px; }
    .category-featured-list-title { font-size: 0.85rem; }
    .category-featured-sidebar { padding: 0.75rem; }
    .category-sidebar-header { font-size: 0.9rem; padding: 0.5rem 0.75rem; }

    /* Crypto */
    .crypto-currencies-list { gap: 0.75rem 1rem; flex-wrap: wrap; justify-content: center; }
    .crypto-currency-item { min-width: 140px; }

    /* Video Gallery */
    .video-gallery-track { gap: 0.5rem; padding: 0 0.75rem; }
    .video-gallery-item { flex: 0 0 calc(100% - 1rem); }

    /* Blog sayfası slider dots */
    .blog-slider-dots { gap: 0.25rem; padding: 0.5rem 0.5rem; flex-wrap: wrap; justify-content: center; }
    .blog-slider-dots button { width: 28px; height: 28px; font-size: 0.75rem; flex-shrink: 0; }

    /* Genel section padding */
    .homepage-section-wrapper { padding: 1rem 0; }
    .homepage-section-full-width .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .section-modern { padding: 1.5rem 0; }
    .container { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar */
    .main-slider-dots button { width: 24px; height: 24px; font-size: 0.65rem; }
    .portal-left-dots button, .portal-slider-dots button { width: 22px; height: 22px; font-size: 0.6rem; }
    .main-slide-overlay h2 { font-size: 1rem; }
    .bilgi-title { font-size: 1.2rem; }
    .ilanlar-iframe-wrap { height: 160px; }
    .guncel-haberler-card-large .guncel-haberler-card-title { font-size: 0.95rem; }
    .top-article-card { flex: 0 0 calc(100vw - 2rem); }
    .top-article-title { font-size: 0.8rem; }
    .top-articles-dots button { width: 24px; height: 24px; font-size: 0.65rem; }
}
