/*
Theme Name: Tekirdag Haber
Text Domain: tekirdag-haber
Author: Timucin Çınar
Version: 1.3.4
*/

/* =====================================================
   0) TEMA RENK DEĞİŞKENLERİ
   Not: Bunlar functions.php içinden override edilir
===================================================== */
:root{
  --tdc-menubar-bg:#0f172a;
  --tdc-menubar-text:#e2e8f0;
  --tdc-menubar-hover:#dc2626;
  --tdc-primary:#dc2626;
  --tdc-footer-bg:#0b1220;

  /* Logo genişlikleri - panelden override edilecek */
  --tdc-logo-desktop-width:220px;
  --tdc-logo-mobile-width:160px;
}

/* =====================================================
   1) GENEL AYARLAR
===================================================== */
html,
body{
  margin:0;
  padding:0;
  font-family:Arial, sans-serif;
  background:#f4f4f4;
}

body{
  overflow-x:hidden;
}

*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 15px;
}

/* =====================================================
   2) HEADER & MENÜ
===================================================== */
.site-header{
  position:relative;
  z-index:50;
}

/* ÜST LOGO BAR */
.header-brandbar{
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.brandbar-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  min-width:0;
  flex-shrink:0;
}

.logo a{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  line-height:1;
}

.logo img,
.mobile-center-logo img{
  display:block;
  max-width:100%;
  height:auto;
}

.logo-desktop{
  width:var(--tdc-logo-desktop-width, 220px);
  height:auto;
  max-width:100%;
}

.logo-text,
.mobile-center-logo__text{
  display:inline-block;
  font-weight:800;
  line-height:1.2;
  text-decoration:none;
  color:inherit;
}

/* Varsayılan durumlar */
.mobile-center-logo{
  display:none !important;
}

.search-toggle{
  display:none;
}

.header-search{
  display:none;
}

/* =====================================================
   MASAÜSTÜ LOGO YANI MENÜ
===================================================== */
.header-top-nav{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:28px;
  padding:8px 12px;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.96) 100%);
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  box-shadow:
    0 10px 30px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
  position:relative;
}

.menu.header-top-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.menu.header-top-menu li{
  margin:0;
}

.menu.header-top-menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:#0f172a;
  line-height:1;
  white-space:nowrap;
  background:transparent;
  transition:
    transform .22s ease,
    color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.menu.header-top-menu a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%);
  opacity:0;
  transition:opacity .22s ease;
  pointer-events:none;
}

.menu.header-top-menu a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  transform:scaleX(0);
  transform-origin:center;
  opacity:0;
  transition:
    transform .24s ease,
    opacity .24s ease;
}

.menu.header-top-menu a:hover{
  color:#b91c1c;
  background:linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
  transform:translateY(-1px);
  box-shadow:
    0 8px 18px rgba(220,38,38,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.menu.header-top-menu a:hover::before{
  opacity:1;
}

.menu.header-top-menu a:hover::after{
  transform:scaleX(1);
  opacity:1;
}

.menu.header-top-menu a:active{
  transform:translateY(0);
}

.menu.header-top-menu .current-menu-item > a,
.menu.header-top-menu .current_page_item > a{
  color:#fff;
  background:linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow:
    0 10px 22px rgba(220,38,38,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.menu.header-top-menu .current-menu-item > a::after,
.menu.header-top-menu .current_page_item > a::after{
  transform:scaleX(1);
  opacity:1;
  background:linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
}

.menu.header-top-menu .current-menu-item > a:hover,
.menu.header-top-menu .current_page_item > a:hover{
  color:#fff;
  background:linear-gradient(135deg, #e11d48 0%, #b91c1c 100%);
}

/* MENÜ BAR */
.header-menubar{
  background:var(--tdc-menubar-bg, #0f172a);
  position:sticky;
  top:0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.menubar-container{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  padding:10px 0;
}

/* ANA NAV */
.main-nav{
  flex:1;
  min-width:0;
}

.menu.main-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.menu.main-menu > li{
  margin:0;
  position:relative;
}

.menu.main-menu > li > a{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  color:var(--tdc-menubar-text, #e2e8f0);
  text-decoration:none;
  font-weight:600;
  transition:background .15s ease, color .15s ease;
}

.menu.main-menu > li > a:hover,
.menu.main-menu > li.current-menu-item > a,
.menu.main-menu > li.current-menu-ancestor > a{
  background:var(--tdc-menubar-hover, #dc2626);
  color:#ffffff;
}

/* DROPDOWN */
.menu.main-menu li ul{
  display:none;
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:220px;
  background:#111827;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:8px;
  list-style:none;
  z-index:999;
}

.menu.main-menu li:hover > ul{
  display:block;
}

.menu.main-menu li ul li{
  margin:0;
}

.menu.main-menu li ul li a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  color:#e2e8f0;
  text-decoration:none;
}

.menu.main-menu li ul li a:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
}

/* Menü altı alan */
.menu-after-ticker-area{
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:10px 0;
  margin:16px 0;
}

/* =====================================================
   3) ARAMA PANELİ
===================================================== */
.header-search{
  background:var(--tdc-menubar-bg, #0f172a);
  border-top:1px solid rgba(255,255,255,.10);
}

.header-search.is-open{
  display:block;
}

.header-search__inner{
  padding:10px 0;
}

.header-search input[type="search"]{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
}

.header-search input[type="search"]::placeholder{
  color:rgba(255,255,255,.65);
}

.header-search input[type="submit"]{
  margin-top:10px;
  padding:10px 14px;
  border-radius:12px;
  border:0;
  background:var(--tdc-primary, #dc2626);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

/* =====================================================
   4) LAYOUT: ROW + MAIN + SIDEBAR
===================================================== */
.row{
  display:flex;
  gap:20px;
  align-items:flex-start;
  margin-bottom:30px;
}

.col-main{
  flex:1 1 auto;
  min-width:0;
}

.col-sidebar{
  flex:0 0 340px;
  width:340px;
}

.col-main,
.col-sidebar{
  overflow-wrap:anywhere;
}

/* =====================================================
   5) SINGLE SAYFA
===================================================== */
.single-layout{
  display:grid;
  grid-template-columns:minmax(0, 2.5fr) minmax(0, 1fr);
  gap:30px;
  margin-top:30px;
}

.single-main,
.single-sidebar{
  min-width:0;
}

.single-sidebar{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.single-thumbnail img{
  width:100%;
  height:auto;
  max-height:500px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:20px;
}

.single-title{
  font-size:32px;
  line-height:1.2;
  margin:0 0 10px;
}

.post-meta{
  font-size:14px;
  color:#777;
  margin-bottom:20px;
}

.single-content{
  font-size:17px;
  line-height:1.8;
  min-width:0;
}

.single-content,
.single-content > *{
  max-width:100%;
}

.single-dates{
  margin-top:18px;
  padding:10px 12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:14px;
}

.single-share{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.single-share-label{
  font-weight:700;
  margin-right:6px;
}

.single-share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  color:#0f172a;
}

.single-share-btn:hover{
  border-color:rgba(0,0,0,.22);
}

.single-authorbox{
  margin-top:18px;
  padding:14px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.single-authorbox .author-avatar img{
  border-radius:50%;
}

.author-name a{
  font-weight:800;
  text-decoration:none;
  color:#0f172a;
}

.author-desc{
  margin-top:6px;
  font-size:14px;
  opacity:.9;
}

/* =====================================================
   6) FEATURE / MANŞET BLOĞU
===================================================== */
.tdc-feature-block{
  margin:18px 0;
}

.tdc-feature-block__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.tdc-feature-block__title{
  font-size:22px;
  font-weight:900;
  margin:0;
  color:#0f172a;
  position:relative;
  padding-left:12px;
}

.tdc-feature-block__title::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  bottom:3px;
  width:4px;
  border-radius:4px;
  background:var(--tdc-primary, #dc2626);
}

.tdc-feature-block__grid{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:14px;
}

.tdc-feature-main__link{
  display:block;
  text-decoration:none;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease;
}

.tdc-feature-main__link:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.tdc-feature-main__img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.tdc-feature-main__body{
  padding:14px 14px 16px;
}

.tdc-feature-main__h{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
  line-height:1.15;
  color:#0f172a;
}

.tdc-feature-main__p{
  margin:0;
  color:rgba(15,23,42,.80);
  line-height:1.45;
}

.tdc-feature-side{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tdc-feature-card__link{
  display:flex;
  gap:10px;
  align-items:stretch;
  text-decoration:none;
  padding:10px;
  border-radius:16px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  transition:transform .15s ease, box-shadow .15s ease;
}

.tdc-feature-card__link:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.tdc-feature-card__thumb{
  flex:0 0 110px;
}

.tdc-feature-card__img{
  width:110px;
  height:80px;
  object-fit:cover;
  border-radius:14px;
}

.tdc-feature-card__body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.tdc-feature-card__h{
  margin:0;
  font-size:15px;
  font-weight:800;
  line-height:1.25;
  color:#0f172a;
}

.tdc-feature-card__date{
  font-size:12px;
  opacity:.7;
  color:#0f172a;
}

/* =====================================================
   7) FOOTER
===================================================== */
.site-footer{
  background:var(--tdc-footer-bg,#0b1220);
  color:rgba(255,255,255,.85);
  margin-top:30px;
}

.footer-container{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  padding:34px 0;
}

.site-footer h3,
.footer-col h3{
  margin:0 0 12px;
  font-size:16px;
  line-height:1.3;
  color:#fff;
  letter-spacing:.2px;
}

.footer-logo a{
  display:inline-block;
  font-size:22px;
  font-weight:800;
  line-height:1.2;
  color:#fff;
  text-decoration:none;
  margin-bottom:10px;
}

.footer-desc{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.55;
  opacity:.95;
}

.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  background:rgba(255,255,255,.03);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  line-height:1;
  transform:translateZ(0);
  backface-visibility:hidden;
  transition:transform .15s ease, opacity .15s ease;
}

.footer-social-link:hover{
  transform:translateY(-2px);
  opacity:.95;
}

.footer-social-link:active{
  transform:translateY(0);
}

.footer-col ul,
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-list li{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li:last-child{
  margin-bottom:0;
}

.footer-col ul li a,
.footer-list a{
  flex:1;
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-size:14px;
  line-height:1.35;
}

.footer-col ul li a:hover,
.footer-list a:hover{
  color:#fff;
  text-decoration:underline;
}

.footer-date,
.footer-count{
  font-size:12px;
  opacity:.7;
  white-space:nowrap;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 0;
}

.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.footer-copy{
  margin:0;
  font-size:13px;
  opacity:.85;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.footer-links a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-size:13px;
}

.footer-links a:hover{
  color:#fff;
  text-decoration:underline;
}

/* =====================================================
   FOOTER RESPONSIVE
===================================================== */
@media (max-width:991px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding:28px 0;
  }

  .header-top-nav{
    background:none;
    border:0;
    box-shadow:none;
    padding:0;
    margin-left:0;
  }

  .menu.header-top-menu a{
    min-height:auto;
    padding:0;
    border-radius:0;
    text-transform:none;
    font-size:15px;
    box-shadow:none;
    background:none;
  }

  .menu.header-top-menu a::before,
  .menu.header-top-menu a::after{
    display:none;
  }
}

@media (max-width:767px){
  .footer-container{
    grid-template-columns:1fr;
    gap:20px;
    padding:24px 0;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-social-link{
    min-height:36px;
    font-size:12px;
  }

  .footer-logo a{
    font-size:20px;
  }

  .site-footer h3,
  .footer-col h3{
    font-size:15px;
  }

  .footer-desc,
  .footer-col ul li a,
  .footer-list a{
    font-size:13px;
  }

  .footer-copy,
  .footer-links a{
    font-size:12px;
  }
}

/* =====================================================
   8) TABLET / MOBİL
===================================================== */
@media (max-width:900px){
  .header-top-nav{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .main-nav{
    display:none;
    width:100%;
  }

  .main-nav.is-open{
    display:block;
  }

  .menu.main-menu{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    background:var(--tdc-menubar-bg, #0f172a);
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;
    padding:10px;
  }

  .menu.main-menu > li > a{
    width:100%;
    justify-content:space-between;
  }

  .menu.main-menu li ul{
    position:static;
    display:block;
    background:transparent;
    border:0;
    padding:0 0 0 10px;
    min-width:unset;
  }

  .menu.main-menu li ul li a{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
  }

  .menu-after-ticker-area{
    display:none !important;
  }

  .brandbar-container{
    justify-content:center;
    padding:18px 0;
  }

  .logo-desktop{
    width:min(var(--tdc-logo-desktop-width, 220px), 100%);
    height:auto;
  }

  .row{
    flex-direction:column;
  }

  .col-sidebar{
    flex:0 0 auto;
    width:100%;
  }

  .tdc-feature-block__grid{
    grid-template-columns:1fr;
  }

  .tdc-feature-main__img{
    height:220px;
  }

  .tdc-feature-card__thumb{
    flex-basis:96px;
  }

  .tdc-feature-card__img{
    width:96px;
    height:72px;
  }

  .footer-container{
    grid-template-columns:1fr;
    padding:26px 0;
  }
}

/* Küçük mobil header: ☰ LOGO 🔍 */
@media (max-width:520px){
  .header-brandbar{
    display:none !important;
  }

  .menubar-container{
    display:grid !important;
    grid-template-columns:44px 1fr 44px;
    align-items:center;
    gap:10px;
  }

  .menu-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
  }

  .search-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:10px;
    padding:10px 12px;
    cursor:pointer;
  }

  .mobile-center-logo{
    display:flex !important;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    min-width:0;
  }

  .mobile-center-logo img{
    width:var(--tdc-logo-mobile-width, 160px);
    height:auto;
    max-width:100%;
    filter:drop-shadow(0 2px 6px rgba(0,0,0,.25));
  }

  .mobile-center-logo__text{
    color:#fff;
    font-weight:900;
    letter-spacing:.2px;
    font-size:16px;
  }

  .main-nav{
    grid-column:1 / -1;
    display:none;
    width:100%;
  }

  .main-nav.is-open{
    display:block;
  }
}

/* =====================================================
   9) DESKTOP FIX
===================================================== */
@media (min-width:901px){
  .menubar-container{
    display:flex !important;
    align-items:center;
    justify-content:flex-start;
    gap:14px;
  }

  .search-toggle{
    display:none !important;
  }

  .main-nav{
    display:block !important;
  }

  .mobile-center-logo{
    display:none !important;
  }
}

/* =====================================================
   10) KÜÇÜK EKRAN DÜZELTMELERİ
===================================================== */
@media (max-width:768px){
  .single-layout{
    grid-template-columns:1fr;
  }

  .single-title{
    font-size:22px;
  }

  .single-content{
    font-size:15px;
  }

  .single-thumbnail img{
    max-height:300px;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* Logo bar hizalama */
.brandbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Logo alanı */
.brandbar-container .logo {
    flex: 0 0 auto;
}

/* Reklam alanı */
.header-logo-ad {
    flex: 0 1 668px;
    max-width: 468px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

/* Reklam içeriği */
.header-logo-ad img {
    display: block;
    max-width: 100%;
    height: auto;
}

.header-logo-ad iframe,
.header-logo-ad ins,
.header-logo-ad .widget,
.header-logo-ad .textwidget,
.header-logo-ad .custom-html-widget {
    max-width: 100%;
}

/* Menü alanı */
.header-top-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Mobilde reklam gizli */
@media (max-width: 991px) {
    .header-logo-ad {
        display: none !important;
    }
}

/* =====================================================
   11) HEADER / SINGLE TUTARLILIK DÜZELTMESİ
===================================================== */
html{
  overflow-y:scroll;
}

body{
  min-width:320px;
}

.site-header,
.site-footer{
  width:100%;
}

.site-header .container,
.site-footer .container{
  width:100%;
  max-width:1200px;
}

.header-brandbar{
  min-height:170px;
  display:flex;
  align-items:center;
}

.brandbar-container{
  min-height:146px;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:nowrap;
}

.logo{
  flex:0 0 auto;
}

.logo a{
  min-height:110px;
  display:inline-flex;
  align-items:center;
}

.logo-desktop{
  width:var(--tdc-logo-desktop-width, 220px);
  max-height:120px;
  object-fit:contain;
}

.header-logo-ad{
  flex:0 0 468px;
  width:468px;
  max-width:468px;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.header-logo-ad > *{
  width:100%;
}

.header-logo-ad img,
.header-logo-ad iframe{
  max-width:100%;
  width:100%;
  height:auto;
  display:block;
}

.header-logo-ad .widget,
.header-logo-ad .textwidget,
.header-logo-ad .custom-html-widget{
  margin:0;
}

.header-menubar{
  min-height:72px;
}

.menubar-container{
  min-height:72px;
  align-items:center;
}

.main-nav{
  width:100%;
}

.menu.main-menu{
  min-height:52px;
  align-items:center;
  flex-wrap:wrap;
}

.single-container{
  margin-top:30px;
}

.single-post-article,
.page-post{
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  overflow:hidden;
}

.single-post-article > *:first-child,
.page-post > *:first-child{
  margin-top:0;
}

.single-post-article .single-content > *{
  max-width:100%;
}

.single-post-article .single-content img,
.single-post-article .single-content iframe,
.single-post-article .single-content table,
.single-post-article .single-content embed,
.single-post-article .single-content object,
.single-post-article .single-content video{
  max-width:100%;
}

@media (max-width: 991px){
  .header-brandbar{
    min-height:auto;
  }

  .brandbar-container{
    min-height:auto;
  }

  .header-logo-ad{
    display:none !important;
  }
}

/* =====================================================
   12) PREMIUM ANASAYFA
===================================================== */
.homepage-main{
  padding:28px 0 8px;
}

.home-hero-section,
.home-content-section{
  margin-bottom:34px;
}


.home-hero-row,
.home-content-row{
  align-items:start;
}

.home-widget-shell,
.home-widget-stack > .widget,
.home-sidebar-stack > .widget,
.home-sidebar-fallback{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  box-shadow:0 18px 42px rgba(15,23,42,.07);
}

.home-widget-shell{
  padding:18px;
  overflow:hidden;
}

.home-widget-shell--hero{
  padding:18px;
}

.home-widget-stack,
.home-sidebar-stack{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.home-widget-stack > .widget,
.home-sidebar-stack > .widget{
  padding:18px;
}

.home-content-sidebar{
  position:relative;
}

@media (min-width: 992px){
  .home-content-sidebar{
    position:sticky;
    top:96px;
    align-self:start;
  }
}

.home .widget-title,
.home .latest-news-title{
  position:relative;
  margin:0 0 16px;
  padding:0 0 12px;
  color:#0f172a;
  font-size:22px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.02em;
}

.home .widget-title::before,
.home .latest-news-title::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:72px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#dc2626 0%,#f97316 100%);
}

.home .widget-title::after,
.home .latest-news-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:1px;
  height:1px;
  background:rgba(15,23,42,.08);
}

.home .widget ul{
  margin:0;
  padding:0;
  list-style:none;
}

.home .widget ul li + li{
  margin-top:12px;
}

.home .widget a{
  transition:color .2s ease, transform .2s ease;
}

.home .widget a:hover{
  color:#dc2626;
}

.home-fallback-hero{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(280px,1fr);
  gap:18px;
}

.home-fallback-hero__featured,
.home-fallback-hero__list,
.home-fallback-card,
.home-sidebar-fallback{
  min-width:0;
}

.home-fallback-hero__link{
  display:block;
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  border-radius:22px;
  background:#0f172a;
  min-height:100%;
}

.home-fallback-hero__media{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}

.home-fallback-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-fallback-hero__content{
  padding:22px;
  color:#fff;
  background:linear-gradient(180deg,rgba(15,23,42,.12) 0%,#0f172a 100%);
}

.home-fallback-hero__badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#dc2626;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.home-fallback-hero__content h2{
  margin:14px 0 10px;
  font-size:31px;
  line-height:1.1;
  font-weight:900;
}

.home-fallback-hero__content p{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:15px;
  line-height:1.7;
}

.home-fallback-hero__list{
  display:grid;
  gap:14px;
}

.home-fallback-mini a{
  display:grid;
  grid-template-columns:112px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 26px rgba(15,23,42,.06);
  text-decoration:none;
  color:#0f172a;
}

.home-fallback-mini img{
  width:112px;
  height:84px;
  object-fit:cover;
  border-radius:14px;
}

.home-fallback-mini h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.25;
  font-weight:800;
}

.home-fallback-mini span{
  display:block;
  font-size:12px;
  color:#64748b;
}

.home-fallback-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.home-fallback-card__link{
  display:block;
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 16px 34px rgba(15,23,42,.06);
  text-decoration:none;
  color:#0f172a;
}

.home-fallback-card__media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#e5e7eb;
}

.home-fallback-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-fallback-card__content{
  padding:18px 18px 20px;
}

.home-fallback-card__meta{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#fff1f2;
  color:#b91c1c;
  font-size:11px;
  font-weight:800;
  letter-spacing:.35px;
  text-transform:uppercase;
}

.home-fallback-card__content h3{
  margin:12px 0 10px;
  font-size:22px;
  line-height:1.15;
  font-weight:900;
}

.home-fallback-card__content p{
  margin:0;
  color:#475569;
  font-size:14px;
  line-height:1.7;
}

.home-sidebar-fallback{
  padding:18px;
}

.home-sidebar-fallback__head span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.35px;
  text-transform:uppercase;
}

.home-sidebar-fallback__head h3{
  margin:12px 0 0;
  color:#0f172a;
  font-size:24px;
  line-height:1.1;
}

.home-sidebar-fallback__list{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.home-sidebar-fallback__list li a{
  display:block;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  text-decoration:none;
  color:#0f172a;
}

.home-sidebar-fallback__list strong{
  display:block;
  margin-bottom:8px;
  font-size:15px;
  line-height:1.4;
}

.home-sidebar-fallback__list span{
  display:block;
  font-size:12px;
  color:#64748b;
}

.home .tdc-feature-main__link,
.home .tdc-feature-card__link,
.home .th-author-card,
.home .td-numbered-slider,
.home .tdc-home-video,
.home .tdc-home-horizontal-cards,
.home .tekirdag-home-3col-categories,
.home .tekirdag-editor-picks{
  border-radius:22px;
}

@media (max-width: 1100px){
  .home-section-heading__title{
    font-size:30px;
  }

  .home-fallback-hero__content h2{
    font-size:27px;
  }
}

@media (max-width: 900px){
  .homepage-main{
    padding-top:22px;
  }

  .home-fallback-hero,
  .home-fallback-grid{
    grid-template-columns:1fr;
  }

  .home-widget-shell,
  .home-widget-stack > .widget,
  .home-sidebar-stack > .widget,
  .home-sidebar-fallback{
    border-radius:20px;
  }
}

@media (max-width: 640px){

  .home-fallback-hero__content{
    padding:18px;
  }

  .home-fallback-hero__content h2{
    font-size:22px;
  }

  .home-fallback-mini a{
    grid-template-columns:92px minmax(0,1fr);
  }

  .home-fallback-mini img{
    width:92px;
    height:72px;
  }

  .home .widget-title,
  .home .latest-news-title{
    font-size:19px;
  }

  .home-fallback-card__content h3{
    font-size:19px;
  }
}


/* v15 single title polish */
.single-entry-header--pagefit{
  margin-bottom:22px;
}

.single-kicker-wrap{
  margin-bottom:16px;
}

.single-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#dc2626 0%,#ef4444 100%);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.03em;
  text-decoration:none;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(220,38,38,.22);
}

.single-title--featured{
  margin:0;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
  color:#0f172a;
}

.single-summary{
  margin-top:16px;
  max-width:880px;
  font-size:1.08rem;
  line-height:1.8;
  color:#475569;
}

.single-meta-bar{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.single-meta-left{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.single-meta-item{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  min-height:56px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  color:#0f172a;
  font-size:14px;
}

.single-meta-label{
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#64748b;
}

.single-meta-item a{
  color:#0f172a;
  text-decoration:none;
  font-weight:700;
}

.single-meta-item a:hover{
  color:#b91c1c;
}

/* =====================================================
   CATEGORY PAGE
===================================================== */
.category-page-shell{
  padding:24px 0 40px;
}

.category-hero{
  margin-bottom:26px;
}

.category-hero__inner{
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(280px, .8fr);
  gap:20px;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(135deg, #ffffff 0%, #fff7f7 48%, #fff1f2 100%);
  border:1px solid rgba(220,38,38,.10);
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}

.category-hero__eyebrow,
.category-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.category-hero__title{
  margin:14px 0 10px;
  font-size:clamp(30px, 4vw, 44px);
  line-height:1.08;
  color:#0f172a;
}

.category-hero__desc,
.category-hero__desc p{
  margin:0;
  color:#475569;
  font-size:16px;
  line-height:1.75;
}

.category-hero__meta{
  display:grid;
  gap:14px;
  align-content:start;
}

.category-stat-card{
  padding:20px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.category-stat-card__label{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.35px;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:8px;
}

.category-stat-card__value{
  display:block;
  color:#0f172a;
  font-size:28px;
  line-height:1;
}

.category-top-stories{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(320px, .75fr);
  gap:22px;
  margin-bottom:26px;
}

.category-spotlight-card,
.category-editor-card,
.category-news-card,
.category-sidebar-fallback,
.category-sidebar__widgets .widget{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.category-spotlight-card{
  overflow:hidden;
}

.category-spotlight-card__link,
.category-editor-card__link,
.category-news-card__link,
.category-mini-card__link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.category-spotlight-card__media{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#e5e7eb;
}

.category-spotlight-card__media img,
.category-editor-card__media img,
.category-news-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.category-spotlight-card:hover img,
.category-editor-card:hover img,
.category-news-card:hover img{
  transform:scale(1.04);
}

.category-spotlight-card__content{
  padding:24px;
}

.category-spotlight-card h2{
  margin:16px 0 12px;
  font-size:clamp(26px, 3vw, 36px);
  line-height:1.14;
  color:#0f172a;
}

.category-spotlight-card p,
.category-editor-card p,
.category-news-card p{
  margin:0;
  color:#475569;
  line-height:1.7;
}

.category-card-meta,
.category-news-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.category-mini-stack{
  display:grid;
  gap:14px;
}

.category-mini-card{
  background:linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(15,23,42,.18);
}

.category-mini-card__link{
  display:grid;
  grid-template-columns:76px minmax(0, 1fr);
  gap:14px;
  align-items:center;
  padding:18px;
  color:#fff;
}

.category-mini-card__index{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  font-size:22px;
  font-weight:900;
}

.category-mini-card__body h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.35;
}

.category-mini-card__body span{
  color:rgba(255,255,255,.75);
  font-size:13px;
  font-weight:700;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.section-head h2{
  margin:0;
  color:#0f172a;
  font-size:28px;
  line-height:1.1;
}

.section-head span{
  color:#64748b;
  font-size:14px;
  font-weight:700;
}

.section-head--plain{
  display:block;
}

.category-editor-picks{
  margin-bottom:28px;
}

.category-editor-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.category-editor-card,
.category-news-card{
  overflow:hidden;
}

.category-editor-card__media,
.category-news-card__media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#e5e7eb;
}

.category-editor-card__content,
.category-news-card__content{
  padding:18px 18px 20px;
}

.category-chip--soft{
  background:rgba(220,38,38,.10);
  color:#b91c1c;
}

.category-editor-card h3,
.category-news-card h3{
  margin:12px 0 10px;
  color:#0f172a;
  line-height:1.35;
  font-size:22px;
}

.category-main-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.65fr) minmax(300px, .72fr);
  gap:24px;
}

.category-feed-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.category-sidebar__widgets{
  display:grid;
  gap:18px;
}

.category-sidebar__widgets .widget{
  padding:18px;
}

.category-sidebar-fallback{
  padding:18px;
}

.category-sidebar-fallback__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.category-sidebar-fallback__list li a{
  display:grid;
  gap:6px;
  padding:14px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.06);
  text-decoration:none;
  color:#0f172a;
}

.category-sidebar-fallback__list li a strong{
  line-height:1.45;
}

.category-sidebar-fallback__list li a span{
  font-size:13px;
  color:#64748b;
  font-weight:700;
}

.category-pagination-wrap{
  margin-top:24px;
}

.category-pagination-wrap .nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.category-pagination-wrap .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  color:#0f172a;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.category-pagination-wrap .page-numbers.current,
.category-pagination-wrap .page-numbers:hover{
  background:linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-color:#b91c1c;
  color:#fff;
}

.category-empty-state{
  padding:16px 0 24px;
}

.category-empty-state__box{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  padding:34px 28px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  box-shadow:0 16px 36px rgba(15,23,42,.06);
}

.category-empty-state__box h2{
  margin:0 0 10px;
  color:#0f172a;
}

.category-empty-state__box p{
  margin:0 0 18px;
  color:#475569;
  line-height:1.7;
}

.category-empty-state__box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  background:linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

@media (max-width: 1024px){
  .category-hero__inner,
  .category-top-stories,
  .category-main-layout{
    grid-template-columns:1fr;
  }

  .category-editor-grid,
  .category-feed-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .category-page-shell{
    padding:18px 0 34px;
  }

  .category-hero__inner,
  .category-spotlight-card__content,
  .category-mini-card__link,
  .category-editor-card__content,
  .category-news-card__content,
  .category-sidebar-fallback,
  .category-sidebar__widgets .widget{
    padding:16px;
  }

  .category-hero__title{
    font-size:30px;
  }

  .category-editor-grid,
  .category-feed-grid{
    grid-template-columns:1fr;
  }

  .category-mini-card__link{
    grid-template-columns:62px minmax(0, 1fr);
  }

  .category-mini-card__index{
    width:48px;
    height:48px;
    border-radius:14px;
    font-size:18px;
  }

  .section-head{
    display:block;
  }

  .section-head span{
    display:block;
    margin-top:6px;
  }
}

/* =====================================================
   v1.1.6 FOOTER - NTV TARZI / KARTSIZ
===================================================== */
.site-footer{
  background:#ff1f1f;
  color:rgba(255,255,255,.88);
  margin-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-topbar{
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.footer-topbar-inner{padding:0}
.footer-top-menu{
  display:flex;
  flex-wrap:wrap;
  gap:0;
}
.footer-top-menu a{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:0 22px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  letter-spacing:.25px;
  text-transform:uppercase;
  border-right:1px solid rgba(255,255,255,.08);
  opacity:.96;
}
.footer-top-menu a:first-child{border-left:1px solid rgba(255,255,255,.08)}
.footer-top-menu a:hover{background:rgba(255,255,255,.08)}
.footer-container{padding:30px 0 22px}
.footer-main{
  display:grid;
  grid-template-columns:minmax(260px,1.05fr) minmax(0,1.95fr);
  gap:34px;
  align-items:start;
}
.footer-brand{min-width:0}
.footer-logo{
  display:inline-block;
  font-size:30px;
  font-weight:900;
  line-height:1.05;
  color:#fff;
  text-decoration:none;
  margin-bottom:14px;
}
.footer-desc{
  margin:0;
  max-width:520px;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
}
.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
  background:transparent;
}
.footer-social a:hover{background:rgba(255,255,255,.08)}
.footer-columns{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}
.footer-col{
  min-width:0;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}
.footer-col *{background:transparent !important}
.site-footer h3,
.footer-col h3{
  margin:0 0 16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.14);
  font-size:13px;
  font-weight:900;
  letter-spacing:.45px;
  text-transform:uppercase;
  color:#fff;
}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.footer-list li{margin:0;padding:0}
.footer-list a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  line-height:1.5;
  font-size:14px;
}
.footer-list a:hover{color:#fff;text-decoration:underline}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0;
  background:rgba(0,0,0,.10);
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-copy{
  margin:0;
  font-size:13px;
  color:rgba(255,255,255,.82);
}
.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.footer-bottom-links a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
.footer-bottom-links a:hover{text-decoration:underline}

@media (max-width:991px){
  .footer-main{grid-template-columns:1fr}
  .footer-columns{grid-template-columns:1fr 1fr}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:767px){
  .footer-top-menu{flex-direction:column}
  .footer-top-menu a{border-left:1px solid rgba(255,255,255,.08)}
  .footer-columns{grid-template-columns:1fr}
  .footer-logo{font-size:24px}
}

/* ana sayfa üst-alt alan aralığı hafif daraltıldı */
.home-hero-row,
.home-content-row{margin-bottom:16px}


/* =====================================================
   v1.1.7 FOOTER WIDGET ALANLARI + SINGLE SIDEBAR DÜZELTME
===================================================== */
.footer-main{
  display:grid;
  grid-template-columns:minmax(260px,1.05fr) minmax(0,1.35fr);
  gap:34px;
  align-items:start;
}
.footer-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  min-width:0;
}
.footer-col--widget{
  min-width:0;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}
.footer-widget{
  margin:0 0 18px;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}
.footer-widget:last-child{margin-bottom:0}
.footer-widget-title,
.footer-col--widget .widget-title,
.footer-col--widget .latest-news-title{
  position:relative;
  display:block;
  margin:0 0 16px;
  padding:0 0 10px;
  color:#fff !important;
  font-size:13px;
  font-weight:900;
  line-height:1.2;
  letter-spacing:.45px;
  text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.footer-col--widget .widget-title::before,
.footer-col--widget .widget-title::after,
.footer-col--widget .latest-news-title::before,
.footer-col--widget .latest-news-title::after{
  display:none !important;
}
.footer-col--widget ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-col--widget ul li{
  margin:0 0 10px;
}
.footer-col--widget ul li:last-child{margin-bottom:0}
.footer-col--widget a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
}
.footer-col--widget a:hover{
  color:#fff;
  text-decoration:underline;
}

.single-sidebar{
  background:transparent;
  padding:0;
  border-radius:0;
  box-shadow:none;
}
.single-sidebar .widget{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  box-shadow:0 18px 42px rgba(15,23,42,.07);
  padding:18px;
  margin:0 0 20px;
  overflow:hidden;
}
.single-sidebar .widget:last-child{
  margin-bottom:0;
}
.single-sidebar .widget-title,
.single-sidebar .latest-news-title{
  position:relative;
  margin:0 0 16px;
  padding:0 0 12px;
  color:#0f172a;
  font-size:22px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.02em;
  text-transform:none;
  border:none;
}
.single-sidebar .widget-title::before,
.single-sidebar .latest-news-title::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:72px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#dc2626 0%,#f97316 100%);
}
.single-sidebar .widget-title::after,
.single-sidebar .latest-news-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:1px;
  height:1px;
  background:rgba(15,23,42,.08);
}
.single-sidebar .widget ul{
  margin:0;
  padding:0;
  list-style:none;
}
.single-sidebar .widget ul li + li{
  margin-top:12px;
}
.single-sidebar .widget a{
  transition:color .2s ease, transform .2s ease;
}
.single-sidebar .widget a:hover{
  color:#dc2626;
}

@media (max-width:991px){
  .footer-main{
    grid-template-columns:1fr;
  }
  .footer-columns{
    grid-template-columns:1fr;
    gap:22px;
  }
}


}


}









/* v1.3.0 mobil ana blok sağa taşma genel düzeltme */
@media (max-width:767px){
  html,body{
    overflow-x:hidden !important;
  }

  body.home .container,
  body.home .row,
  body.home .col-main,
  body.home .col-sidebar,
  body.home .home-hero-section,
  body.home .home-content-section,
  body.home .home-hero-row,
  body.home .home-content-row,
  body.home .home-widget-shell,
  body.home .home-widget-shell--hero,
  body.home .home-widget-stack,
  body.home .home-sidebar-stack,
  body.home .home-content-main,
  body.home .home-content-sidebar,
  body.home .home-fallback-hero,
  body.home .home-fallback-hero__featured,
  body.home .home-fallback-hero__list,
  body.home .home-fallback-card,
  body.home .home-sidebar-fallback,
  body.home .slider,
  body.home .slides,
  body.home .slide,
  body.home .slide-link,
  body.home .tdpms-widget,
  body.home .tdpms-shell,
  body.home .tdpms-slides,
  body.home .tdpms-link,
  body.home .tdskk-widget,
  body.home .tdskk-wrap,
  body.home .tdskkm-widget,
  body.home .tdskkm-wrap,
  body.home .tdbp-wrap,
  body.home .tdbp-slider-shell,
  body.home .tdbp-viewport,
  body.home .tdbp-track{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }

  body.home .row{
    flex-direction:column !important;
    gap:16px !important;
    overflow:hidden !important;
  }

  body.home .col-sidebar{
    flex:0 0 auto !important;
    width:100% !important;
  }

  body.home .home-widget-shell,
  body.home .home-widget-shell--hero,
  body.home .home-widget-stack > .widget,
  body.home .home-sidebar-stack > .widget,
  body.home .home-sidebar-fallback{
    overflow:hidden !important;
  }

  body.home .home-fallback-hero,
  body.home .tdc-feature-block__grid,
  body.home .tdskk-wrap,
  body.home .tdskkm-wrap{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  body.home .tdskk-side,
  body.home .tdskkm-side,
  body.home .tdpms-nav-wrap{
    width:100% !important;
    max-width:100% !important;
  }

  body.home .tdskk-main-link,
  body.home .tdskkm-link,
  body.home .tdpms-link,
  body.home .slide-link{
    min-height:auto !important;
  }

  body.home .tdskk-main-image,
  body.home .tdskkm-image,
  body.home .slide-link img,
  body.home .tdpms-media img,
  body.home img{
    max-width:100% !important;
    width:100% !important;
    height:auto !important;
  }

  body.home .tdskk-content,
  body.home .tdskkm-content,
  body.home .tdpms-content{
    left:14px !important;
    right:14px !important;
    max-width:calc(100% - 28px) !important;
  }

  body.home .slider-nav,
  body.home .slider-dots{
    max-width:100% !important;
  }

  body.home .menu-after-ticker-area{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin:8px 0 14px !important;
    padding:0 !important;
    overflow:hidden !important;
    background:transparent !important;
    border:0 !important;
  }

  body.home .menu-after-ticker-area .container{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    padding-left:12px !important;
    padding-right:12px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  body.home .menu-after-ticker-area .widget{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    overflow:hidden !important;
  }
}




/* v1.3.3 BIK widget film slider uyumu */
@media (max-width:768px){
  body.home .tdbik-wrap,
  body.home .tdbik-shell,
  body.home .tdbik-viewport,
  body.home .tdbik-track,
  body.home .tdbik-item{
    min-width:0 !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }
}


/* v1.3.4 BIK mobil sabit grid düzeltmesi */
@media (max-width:768px){
  body.home .tdbik-wrap,
  body.home .tdbik-shell,
  body.home .tdbik-viewport,
  body.home .tdbik-track{
    overflow:visible !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }
}
