/* ===== LONDRA SON DAKİKA - Ana CSS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --red: #cf0c14;
    --dark: #222222;
    --text: #333333;
    --gray: #777777;
    --border: #e5e5e5;
    --bg: #f9fafb;
    --white: #ffffff;
    --footer-bg: #2b2b2b;
    --footer-dark: #1a1a1a;
    --font: 'Montserrat', sans-serif;
    --container: 1280px;
    --radius: 0px;
    --transition: 150ms ease-in-out;
}
html { font-size: 14px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; border-radius: 0 !important; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* ===== TOPBAR ===== */
.topbar { background: var(--white); border-bottom: 1px solid var(--border); font-size: 11.5px; font-weight: 600; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.topbar-left { display: flex; gap: 14px; align-items: center; flex-wrap: nowrap; overflow: hidden; }
.topbar-social { color: var(--text); font-size: 16px; transition: color var(--transition); display: flex; align-items: center; }
.topbar-social:hover { color: var(--red); }
.topbar-right { display: flex; gap: 2px; align-items: center; flex-shrink: 0; }
.topbar-link { display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text); transition: color var(--transition); padding: 6px 10px; font-size: 11.5px; font-weight: 700; border: none; background: none; cursor: pointer; font-family: var(--font); }
.topbar-link:hover { color: var(--red); }
.topbar-link i { font-size: 15px; }

/* Tarih */
.topbar-divider { width: 1px; height: 14px; background: var(--border); display: inline-block; flex-shrink: 0; }
.topbar-date { color: var(--gray); font-size: 11.5px; font-weight: 600; white-space: nowrap; letter-spacing: .02em; }

/* Hava Durumu Widget */
.topbar-weather { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.wx-icon { font-size: 17px; line-height: 1; }
.wx-temp { font-size: 12px; font-weight: 700; color: var(--dark); }
.wx-desc { font-size: 11px; font-weight: 500; color: var(--gray); }
/* Removed display:none for .wx-desc to keep "London" visible on mobile */
@media (max-width: 900px) { .topbar-date, .topbar-divider { display: none; } }

/* ===== FINANCE STRIP ===== */
.finance-strip { display: flex; align-items: center; flex: 1; justify-content: flex-end; margin: 0 16px; gap: 0; }
.finance-item { display: flex; align-items: center; gap: 10px; padding: 6px 16px; border-left: 1px solid rgba(255,255,255,.2); }
.finance-item:first-child { border-left: none; }
.finance-icon { font-size: 20px; color: rgba(255,255,255,.75); line-height: 1; }
.finance-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); margin-bottom: 3px; }
.finance-val { font-size: 14px; font-weight: 700; color: #fff; line-height: 1; white-space: nowrap; }
.finance-val small { font-size: 10px; font-weight: 600; margin-left: 2px; }
.fin-up { color: #4ade80; }
.fin-down { color: #f87171; }
@media (max-width: 1100px) { .finance-strip { display: none; } }
@media (max-width: 768px) { .topbar-right .topbar-link:last-child { display: none; } }

/* ===== MAIN HEADER ===== */
.main-header { background: var(--red); color: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.header-logo img { height: 52px; width: auto; max-width: 220px; }
/* Metin logo (wordmark) */
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-text-main { font-size: 38px; font-weight: 800; letter-spacing: .04em; color: var(--logo-main, #fff); font-family: 'Montserrat', sans-serif; }
.logo-text-sub { font-size: 13px; font-weight: 700; letter-spacing: .62em; text-transform: uppercase; color: var(--logo-sub, rgba(255,255,255,.85)); display: block; }
.header-logo .logo-text-main { font-size: 38px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-search, .btn-hamburger { background: none; border: none; cursor: pointer; color: var(--white); padding: 8px; display: flex; align-items: center; justify-content: center; transition: opacity var(--transition); }
.btn-search:hover, .btn-hamburger:hover { opacity: .75; }
.btn-search i { font-size: 20px; }
.btn-hamburger { flex-direction: column; gap: 5px; }
.btn-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .25s; }
.btn-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== SEARCH PANEL ===== */
.search-panel { background: var(--dark); padding: 10px 0; }
.search-panel[hidden] { display: none; }
.search-form { display: flex; align-items: center; gap: 8px; }
.search-input { flex: 1; padding: 10px 14px; border: none; background: rgba(255,255,255,.1); color: var(--white); font-family: var(--font); font-size: 14px; }
.search-input::placeholder { color: rgba(255,255,255,.5); }
.search-input:focus { outline: 2px solid var(--red); }
.search-submit, .search-close { background: var(--red); border: none; color: var(--white); padding: 10px 16px; cursor: pointer; font-size: 18px; display: flex; align-items: center; }
.search-close { background: rgba(255,255,255,.15); }

/* ===== NAVIGATION ===== */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.nav-list { display: flex; align-items: center; gap: 0; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-item { flex-shrink: 0; }
.nav-link { display: block; padding: 14px 16px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--text); transition: color var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-item--active .nav-link { color: var(--red); }

/* ===== MOBILE DRAWER ===== */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 199; }
.mobile-overlay[hidden] { display: none; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: var(--white); z-index: 200; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
.mobile-drawer:not([hidden]) { display: flex; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--red); }
.mobile-drawer-header img { max-height: 40px; width: auto; }
.mobile-drawer-close { background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; display: flex; }
.mobile-nav-list { padding: 8px 0; flex: 1; }
.mobile-nav-link { display: flex; align-items: center; gap: 10px; padding: 14px 20px; font-size: 13px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: background var(--transition), color var(--transition); }
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--bg); color: var(--red); }
.mobile-nav-link i { font-size: 16px; color: var(--red); }
.mobile-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.mobile-social { display: flex; gap: 16px; margin-bottom: 16px; }
.mobile-social a { font-size: 20px; color: var(--gray); transition: color var(--transition); }
.mobile-social a:hover { color: var(--red); }
.mobile-login-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--red); color: var(--white); padding: 12px; font-weight: 700; font-size: 13px; width: 100%; }

/* ===== HEADER LINE (section titles) ===== */
.header-line { border-bottom: 2px solid var(--border); position: relative; margin-bottom: 16px; padding-bottom: 10px; font-size: 15px; font-weight: 800; text-transform: uppercase; }
.header-line::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--red); }

/* ===== CARD COMPONENTS ===== */
.card-overlay { position: relative; overflow: hidden; background: #111; display: block; }
.card-overlay img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-overlay:hover img { transform: scale(1.05); }
.card-overlay-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 60%, transparent 100%); }
.card-overlay-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.card-overlay-title { color: var(--white); font-weight: 700; line-height: 1.35; }
.card-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; margin-bottom: 8px; }

/* ===== HORIZONTAL NEWS ITEM ===== */
.news-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.news-item:last-child { border-bottom: none; }
.news-item-thumb { flex-shrink: 0; overflow: hidden; }
.news-item-thumb img { object-fit: cover; width: 100%; height: 100%; transition: transform .4s; }
.news-item:hover .news-item-thumb img { transform: scale(1.05); }
.news-item-title { font-weight: 600; font-size: 13.5px; line-height: 1.45; transition: color var(--transition); }
.news-item:hover .news-item-title { color: var(--red); }
.news-item-meta { font-size: 11px; color: var(--gray); margin-top: 6px; }

/* ===== AUTHORS ROW ===== */
.authors-slider-wrap { position: relative; display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.authors-track { display: flex; gap: 20px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; flex: 1; scroll-behavior: smooth; }
.authors-track::-webkit-scrollbar { display: none; }
.authors-strip { display: flex; gap: 24px; overflow-x: auto; padding: 16px 0; -ms-overflow-style: none; scrollbar-width: none; }
.authors-strip::-webkit-scrollbar { display: none; }
.author-card-mini { display: flex; align-items: flex-start; gap: 12px; min-width: 250px; text-decoration: none; flex-shrink: 0; }
.author-card-mini-name { font-size: 12px; font-weight: 800; color: var(--red); text-transform: uppercase; margin-bottom: 3px; line-height: 1.3; }
.author-card-mini-title { font-size: 12px; font-weight: 500; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.author-card-mini:hover .author-card-mini-name { text-decoration: underline; }
.authors-arrow { flex-shrink: 0; width: 36px; height: 36px; background: var(--red); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background var(--transition); border-radius: 50%; }
.authors-arrow:hover { background: #a50a10; }
/* Yuvarlak fotoğraflar - global img reset override */
.author-card-mini img,
.author-card-img,
.author-box-img,
.author-profile-img { border-radius: 50% !important; object-fit: cover; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; gap: 4px; justify-content: center; margin: 32px 0; flex-wrap: wrap; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; background: var(--white); transition: all var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.page-btn.disabled { opacity: .4; pointer-events: none; }
.page-btn-text { padding: 0 14px; width: auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }

/* ===== TRİKOLON (Ekonomi | Gözden Kaçmasın | Piyasa) ===== */
.trikolon-grid { display: grid; grid-template-columns: 220px 1fr 240px; gap: 28px; }
@media(max-width:900px){ .trikolon-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:600px){ .trikolon-grid{grid-template-columns:1fr;} }

/* Piyasa tablosu */
.market-table { width:100%; border-collapse:collapse; }
.market-table tr { border-bottom:1px solid var(--border); }
.market-table tr:last-child { border-bottom:none; }
.market-table td { padding:9px 6px; font-size:13px; }
.mk-name { font-weight:700; color:var(--dark); width:50%; }
.mk-val { font-weight:700; color:var(--dark); text-align:right; }
.mk-chg { text-align:right; font-size:12px; font-weight:600; white-space:nowrap; }

/* ===== HOME SECTIONS ===== */
.home-section { margin-bottom: 36px; }
.home-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; border-bottom: 2px solid var(--border); padding-bottom: 10px; position: relative; }
.home-section-header::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--red); }
.home-section-title { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--red); letter-spacing: .03em; }
.home-section-more { font-size: 11.5px; font-weight: 700; color: var(--red); flex-shrink: 0; }
.home-section-more:hover { text-decoration: underline; }

/* Kategori 2 kolon */
.cat-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media(max-width:900px) { .cat-grid-2col { grid-template-columns: 1fr; } }

/* Büyük haber kartı */
.cat-block-main { display: block; margin-bottom: 12px; color: inherit; }
.cat-block-main:hover img { transform: scale(1.03); }
.cat-block-main-title { font-size: 15px; font-weight: 700; margin-top: 8px; line-height: 1.4; color: var(--dark); }
.cat-block-main:hover .cat-block-main-title { color: var(--red); }

/* ===== MAIN LAYOUT ===== */
.main-content { max-width: var(--container); margin: 0 auto; padding: 24px 16px 40px; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.sidebar { min-width: 0; }

/* ===== SIDEBAR WIDGETS ===== */
.widget { margin-bottom: 32px; }
.widget-title { font-size: 13px; font-weight: 800; text-transform: uppercase; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin-bottom: 14px; position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 36px; height: 2px; background: var(--red); }
.ad-box { background: var(--bg); border: 1px dashed var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; min-height: 250px; }

/* ===== FEATURED SECTION ===== */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.featured-big { display: grid; grid-template-columns: 8fr 4fr; gap: 20px; margin-bottom: 32px; }
.slider-wrap { position: relative; }
.slider-nav { display: flex; position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.8); }
.slider-btn { flex: 1; padding: 8px 4px; color: var(--white); font-size: 12px; font-weight: 700; background: none; border: none; cursor: pointer; transition: background var(--transition); }
.slider-btn.active, .slider-btn:hover { background: var(--red); }
.sidebar-cards { display: flex; flex-direction: column; gap: 16px; }

/* ===== ARTICLE ===== */
.article-header { margin-bottom: 24px; }
.article-category { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px; }
.article-title { font-size: 26px; font-weight: 800; line-height: 1.3; color: var(--dark); margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--gray); flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.article-meta a { color: var(--gray); transition: color var(--transition); }
.article-meta a:hover { color: var(--red); }
.article-hero { width: 100%; margin-bottom: 24px; }
.article-hero img { width: 100%; max-height: 480px; object-fit: cover; }
.article-body { font-size: 15px; line-height: 1.8; color: var(--text); }
.article-body p { margin-bottom: 18px; }
.article-body h2, .article-body h3 { font-weight: 700; margin: 28px 0 12px; color: var(--dark); }
.article-body h2 { font-size: 20px; }
.article-body h3 { font-size: 17px; }
.article-body blockquote { border-left: 4px solid var(--red); padding: 12px 20px; background: var(--bg); margin: 20px 0; font-style: italic; }
.article-body img { margin: 20px auto; }
.article-share { display: flex; align-items: center; gap: 10px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; font-size: 12px; font-weight: 700; color: var(--white); cursor: pointer; border: none; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }

/* ===== AUTHOR BOX ===== */
.author-box { display: flex; gap: 20px; padding: 24px; background: var(--bg); border: 1px solid var(--border); margin-top: 32px; }
.author-box-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box-name { font-weight: 800; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.author-box-bio { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== AUTHOR PAGE ===== */
.author-profile {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    margin-bottom: 36px;
    border-left: 4px solid var(--red);
}
.author-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--red);
    box-shadow: 0 4px 16px rgba(207,12,20,.15);
}
.author-profile-name { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.author-profile-bio { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.author-social { display: flex; gap: 8px; margin-top: 14px; }
.author-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--red); color: var(--white); font-size: 15px; transition: background var(--transition); }
.author-social a:hover { background: #a50a10; }

/* Yazar Biyografi - Genişletilebilir */
.author-bio-wrap {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2px;
}
/* Preview: ilk paragraf */
.author-bio-preview p,
.author-bio-rest   p { margin-bottom: 14px; }
.author-bio-preview p:last-child,
.author-bio-rest   p:last-child { margin-bottom: 0; }

/* Başlıklar (emoji + başlık içeren satırlar için) */
.author-bio-preview h2, .author-bio-preview h3, .author-bio-preview h4,
.author-bio-rest    h2, .author-bio-rest    h3, .author-bio-rest    h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--dark);
    margin: 18px 0 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}
.author-bio-preview strong, .author-bio-rest strong { color: var(--dark); font-weight: 700; }
.author-bio-preview em,     .author-bio-rest em     { color: var(--gray); }
.author-bio-preview ul,     .author-bio-rest ul,
.author-bio-preview ol,     .author-bio-rest ol     { padding-left: 20px; margin-bottom: 12px; }
.author-bio-preview li,     .author-bio-rest li     { margin-bottom: 5px; }

/* Rest bölümü aç/kapat animasyonu */
.author-bio-rest:not([hidden]) {
    display: block;
    animation: bioFadeIn .3s ease;
}
@keyframes bioFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Toggle butonu */
.author-bio-toggle {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--red);
    color: var(--red);
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 7px 18px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    box-shadow: none;
    line-height: 1;
}
.author-bio-toggle:hover {
    background: var(--red);
    color: var(--white);
}
.author-bio-toggle:hover .author-bio-caret { color: var(--white); }
.author-bio-caret { font-size: 12px; transition: transform .3s ease; }

/* ===== KÖŞEYAZISIYazar Meta (başlık altı) ===== */
.article-author-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 14px 0 0;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}
.article-author-meta:hover { opacity: .8; }
.article-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--red);
}
.article-author-info { display: flex; flex-direction: column; gap: 3px; }
.article-author-name { font-size: 14px; font-weight: 800; color: var(--dark); }
.article-author-sub { font-size: 11.5px; color: var(--gray); display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.article-author-sub i { font-size: 11px; }

/* ===== KÖŞEYAZISIYazar Kutu (yazı altı) ===== */
.author-box-kw {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    margin-top: 32px;
}
.author-box-kw-img-wrap { flex-shrink: 0; display: block; }
.author-box-kw-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    box-shadow: 0 4px 12px rgba(207,12,20,.15);
    transition: transform .3s ease;
}
.author-box-kw-img-wrap:hover .author-box-kw-img { transform: scale(1.04); }
.author-box-kw-body { flex: 1; min-width: 0; }
.author-box-kw-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 4px; }
.author-box-kw-name { display: block; font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; transition: color var(--transition); }
.author-box-kw-name:hover { color: var(--red); }
.author-box-kw-bio { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.author-box-kw-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--red);
    border-bottom: 1.5px solid var(--red);
    padding-bottom: 1px;
    transition: opacity var(--transition);
}
.author-box-kw-link:hover { opacity: .7; }
@media (max-width: 580px) {
    .author-box-kw { flex-direction: column; gap: 16px; }
    .author-box-kw-img { width: 80px; height: 80px; }
    .author-profile { flex-direction: column; gap: 16px; }
}

/* ===== AUTHORS LIST ===== */
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.author-card { background: var(--white); border: 1px solid var(--border); padding: 24px; text-align: center; transition: box-shadow var(--transition); display: block; color: var(--text); }
.author-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.author-card-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--border); }
.author-card:hover .author-card-img { border-color: var(--red); }
.author-card-name { font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--dark); }
.author-card-bio { font-size: 12px; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== CATEGORY PAGE ===== */
.category-hero { background: var(--red); color: var(--white); padding: 24px 0; margin-bottom: 28px; }
.category-hero h1 { font-size: 28px; font-weight: 800; }
.category-hero p { font-size: 13px; opacity: .85; margin-top: 4px; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.news-list-item:last-child { border-bottom: none; }
.news-list-thumb { overflow: hidden; height: 120px; }
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-list-item:hover .news-list-thumb img { transform: scale(1.05); }
.news-list-cat { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 2px 7px; margin-bottom: 8px; }
.news-list-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--dark); margin-bottom: 8px; transition: color var(--transition); }
.news-list-item:hover .news-list-title { color: var(--red); }
.news-list-excerpt { font-size: 13px; color: var(--gray); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-list-meta { font-size: 11px; color: var(--gray); margin-top: 8px; }

/* ===== STATIC PAGES ===== */
.page-hero { background: var(--red); color: var(--white); padding: 28px 0; margin-bottom: 32px; }
.page-hero h1 { font-size: 24px; font-weight: 800; }
.page-body { font-size: 15px; line-height: 1.8; color: var(--text); max-width: 820px; }
.page-body h2 { font-size: 19px; font-weight: 700; margin: 24px 0 12px; color: var(--dark); }
.page-body p { margin-bottom: 16px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item i { font-size: 22px; color: var(--red); margin-top: 2px; flex-shrink: 0; }
.contact-info-label { font-weight: 700; font-size: 12px; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); background: var(--white); font-family: var(--font); font-size: 13px; color: var(--text); margin-bottom: 14px; }
.contact-form textarea { height: 140px; resize: vertical; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 12px 24px; font-family: var(--font); font-size: 13px; font-weight: 700; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: .04em; transition: background var(--transition); }
.btn-primary:hover { background: #a50a10; }

/* ===== 404 ===== */
.page-404 { text-align: center; padding: 80px 20px; }
.page-404 h1 { font-size: 100px; font-weight: 800; color: var(--red); line-height: 1; }
.page-404 h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.page-404 p { color: var(--gray); margin-bottom: 28px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: #e0e0e0; font-size: 13px; padding-top: 40px; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 28px; margin-bottom: 28px; }
.footer-logo { height: 44px; margin-bottom: 14px; width: auto; }
.footer-desc { font-size: 12.5px; color: #999; line-height: 1.7; max-width: 360px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--white); margin-bottom: 14px; position: relative; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 28px; height: 1px; background: var(--red); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { color: #aaa; font-size: 12.5px; transition: color var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: #aaa; font-size: 12.5px; }
.footer-contact-item i { color: var(--red); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { background: var(--footer-dark); padding: 16px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: #888; font-size: 18px; transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: #888; font-size: 11.5px; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }
.footer-copy { color: #555; font-size: 11.5px; width: 100%; text-align: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.05); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .featured-big { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .btn-hamburger { display: flex; }
    .topbar-social { display: none; }
    .news-list-item { grid-template-columns: 120px 1fr; gap: 12px; }
    .news-list-thumb { height: 90px; }
    .author-profile { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .article-title { font-size: 20px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .news-list-item { grid-template-columns: 1fr; }
    .news-list-thumb { height: 200px; }
    .authors-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .author-card { padding: 12px 8px; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
    .author-card-img { width: 56px; height: 56px; margin-bottom: 8px; }
    .author-card-name { font-size: 12px; margin-bottom: 4px; line-height: 1.3; }
    .author-card-bio { font-size: 10.5px; -webkit-line-clamp: 2; line-clamp: 2; }
    .author-box { flex-direction: column; }
}

/* ===== KATEGORİ SEO AÇIKLAMA BLOĞU ===== */
.cat-seo-desc {
    background: var(--bg);
    border-top: 2px solid var(--border);
    padding: 36px 0 40px;
    margin-top: 0;
}
.cat-seo-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cat-seo-title i { color: var(--red); font-size: 16px; }
.cat-seo-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--gray);
    /* 5 satır kırpma */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    transition: max-height .4s ease;
    max-height: calc(1.85em * 5 + 2px);
}
.cat-seo-body--open {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: 9999px;
    overflow: visible;
}
.cat-seo-toggle {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border);
    color: var(--red);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 7px 16px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.cat-seo-toggle:hover { background: var(--white); border-color: var(--red); }
.cat-seo-caret { font-size: 13px; transition: transform .3s ease; }

/* ===== REKLAM ALANLARI ===== */
.site-ad {
    text-align: center;
    overflow: hidden;
    line-height: 0;
}
/* En üst tepe banner — dış alan tam genişlik, içerik container genişliğinde */
.site-ad--topbar {
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    text-align: center;
}
.site-ad--topbar .site-ad {
    display: block;
}
/* Header altı / container genişliğinde */
.site-ad--header-below {
    padding: 14px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
/* İçerik içi */
.site-ad--inline {
    margin: 24px 0;
    padding: 0;
    background: var(--bg);
}
/* Footer üstü - tam genişlik */
.site-ad--prefooter {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
/* Boş reklam placeholder'ı (reklam yokken görünmez) */
.site-ad:empty { display: none; }
