/* ============================================
   vkm- DISPLAY + LINE CLAMP UTILITIES
   (Tailwind-Style)
   ============================================ */

/* ---------- BASE DISPLAY ---------- */
.vkm-block {
    display: block;
}
.vkm-inline {
    display: inline;
}
.vkm-inline-block {
    display: inline-block;
}
.vkm-flex {
    display: flex;
}
.vkm-inline-flex {
    display: inline-flex;
}
.vkm-grid {
    display: grid;
}
.vkm-inline-grid {
    display: inline-grid;
}
.vkm-table {
    display: table;
}
.vkm-table-row {
    display: table-row;
}
.vkm-table-cell {
    display: table-cell;
}
.vkm-hidden {
    display: none;
}

/* ---------- BASE LINE CLAMP ---------- */
/* 1–10 satır için */
.vkm-lines-1,
.vkm-lines-2,
.vkm-lines-3,
.vkm-lines-4,
.vkm-lines-5,
.vkm-lines-6,
.vkm-lines-7,
.vkm-lines-8,
.vkm-lines-9,
.vkm-lines-10 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vkm-lines-1 {
    -webkit-line-clamp: 1;
}
.vkm-lines-2 {
    -webkit-line-clamp: 2;
}
.vkm-lines-3 {
    -webkit-line-clamp: 3;
}
.vkm-lines-4 {
    -webkit-line-clamp: 4;
}
.vkm-lines-5 {
    -webkit-line-clamp: 5;
}
.vkm-lines-6 {
    -webkit-line-clamp: 6;
}
.vkm-lines-7 {
    -webkit-line-clamp: 7;
}
.vkm-lines-8 {
    -webkit-line-clamp: 8;
}
.vkm-lines-9 {
    -webkit-line-clamp: 9;
}
.vkm-lines-10 {
    -webkit-line-clamp: 10;
}

/* ============================================
   MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    /* DISPLAY */
    .vkm-m\:block {
        display: block !important;
    }
    .vkm-m\:inline {
        display: inline !important;
    }
    .vkm-m\:inline-block {
        display: inline-block !important;
    }
    .vkm-m\:flex {
        display: flex !important;
    }
    .vkm-m\:inline-flex {
        display: inline-flex !important;
    }
    .vkm-m\:grid {
        display: grid !important;
    }
    .vkm-m\:inline-grid {
        display: inline-grid !important;
    }
    .vkm-m\:table {
        display: table !important;
    }
    .vkm-m\:table-row {
        display: table-row !important;
    }
    .vkm-m\:table-cell {
        display: table-cell !important;
    }
    .vkm-m\:hidden {
        display: none !important;
    }

    /* LINE CLAMP (Mobile) */
    .vkm-m\:lines-1,
    .vkm-m\:lines-2,
    .vkm-m\:lines-3,
    .vkm-m\:lines-4,
    .vkm-m\:lines-5,
    .vkm-m\:lines-6,
    .vkm-m\:lines-7,
    .vkm-m\:lines-8,
    .vkm-m\:lines-9,
    .vkm-m\:lines-10 {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .vkm-m\:lines-1 {
        -webkit-line-clamp: 1 !important;
    }
    .vkm-m\:lines-2 {
        -webkit-line-clamp: 2 !important;
    }
    .vkm-m\:lines-3 {
        -webkit-line-clamp: 3 !important;
    }
    .vkm-m\:lines-4 {
        -webkit-line-clamp: 4 !important;
    }
    .vkm-m\:lines-5 {
        -webkit-line-clamp: 5 !important;
    }
    .vkm-m\:lines-6 {
        -webkit-line-clamp: 6 !important;
    }
    .vkm-m\:lines-7 {
        -webkit-line-clamp: 7 !important;
    }
    .vkm-m\:lines-8 {
        -webkit-line-clamp: 8 !important;
    }
    .vkm-m\:lines-9 {
        -webkit-line-clamp: 9 !important;
    }
    .vkm-m\:lines-10 {
        -webkit-line-clamp: 10 !important;
    }
}

/* ============================================
   DESKTOP (≥481px) — UPDATED WITH !important
   ============================================ */
@media (min-width: 481px) {
    /* DISPLAY */
    .vkm-d\:block {
        display: block !important;
    }
    .vkm-d\:inline {
        display: inline !important;
    }
    .vkm-d\:inline-block {
        display: inline-block !important;
    }
    .vkm-d\:flex {
        display: flex !important;
    }
    .vkm-d\:inline-flex {
        display: inline-flex !important;
    }
    .vkm-d\:grid {
        display: grid !important;
    }
    .vkm-d\:inline-grid {
        display: inline-grid !important;
    }
    .vkm-d\:table {
        display: table !important;
    }
    .vkm-d\:table-row {
        display: table-row !important;
    }
    .vkm-d\:table-cell {
        display: table-cell !important;
    }
    .vkm-d\:hidden {
        display: none !important;
    }

    /* LINE CLAMP (Desktop) */
    .vkm-d\:lines-1,
    .vkm-d\:lines-2,
    .vkm-d\:lines-3,
    .vkm-d\:lines-4,
    .vkm-d\:lines-5,
    .vkm-d\:lines-6,
    .vkm-d\:lines-7,
    .vkm-d\:lines-8,
    .vkm-d\:lines-9,
    .vkm-d\:lines-10 {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .vkm-d\:lines-1 {
        -webkit-line-clamp: 1 !important;
    }
    .vkm-d\:lines-2 {
        -webkit-line-clamp: 2 !important;
    }
    .vkm-d\:lines-3 {
        -webkit-line-clamp: 3 !important;
    }
    .vkm-d\:lines-4 {
        -webkit-line-clamp: 4 !important;
    }
    .vkm-d\:lines-5 {
        -webkit-line-clamp: 5 !important;
    }
    .vkm-d\:lines-6 {
        -webkit-line-clamp: 6 !important;
    }
    .vkm-d\:lines-7 {
        -webkit-line-clamp: 7 !important;
    }
    .vkm-d\:lines-8 {
        -webkit-line-clamp: 8 !important;
    }
    .vkm-d\:lines-9 {
        -webkit-line-clamp: 9 !important;
    }
    .vkm-d\:lines-10 {
        -webkit-line-clamp: 10 !important;
    }
}

.vkm-clamp-fade-bottom {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alttan yukarı yalnızca opacity fade */
.vkm-clamp-fade-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2.5em; /* son satırın yüksekliğine göre */
    pointer-events: none;

    /* Opacity mask – tam şeffaftan %100 şeffafa */
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);

    mix-blend-mode: lighten;
    opacity: var(--vkm-fade-opacity, 1);
}





/*
 * Theme Name:  Recap Child
 * Theme URI:   https://recap.codesupply.co/
 * Description: Recap Child Theme
 * Author:      Code Supply Co.
 * Author URI:  https://codesupply.co/
 * Template:    recap
 * Version:     1.0.0
 */


.wp-child-theme-recap-child .cs-home-about {
	 display: none;
}
 .wp-child-theme-recap-child .cs-header__inner-desktop {
	 background-color: #1a1a1d;
}
 @media (max-width: 768px) {
	 .wp-child-theme-recap-child .cs-header, .wp-child-theme-recap-child .cs-header__outer, .wp-child-theme-recap-child .cs-header__inner, .wp-child-theme-recap-child .cs-header__inner-mobile, .wp-child-theme-recap-child .cs-header__inner-mobile::before, .wp-child-theme-recap-child .cs-header__inner-mobile::after, .wp-child-theme-recap-child .cs-header-overlay {
		 background-color: #1a1a1d;
	}
}
 .wp-child-theme-recap-child .cs-header .cs-logo img {
	 height: 68px;
	 max-height: 68px;
	 width: auto;
	 object-fit: contain;
}
 .wp-child-theme-recap-child :root {
	 --vkm-red: #ff3131;
}
 .wp-child-theme-recap-child #menu-primary > li > a, .wp-child-theme-recap-child #menu-primary > li > a span {
	 color: #fff;
	 opacity: 1;
	 transition: color .2s ease;
}
 .wp-child-theme-recap-child #menu-primary > li:hover > a, .wp-child-theme-recap-child #menu-primary > li:hover > a span {
	 color: var(--vkm-red);
}
 .wp-child-theme-recap-child #menu-primary > li.current-menu-item:not(:hover) > a, .wp-child-theme-recap-child #menu-primary > li.current-menu-item:not(:hover) > a span, .wp-child-theme-recap-child #menu-primary > li.current-menu-ancestor:not(:hover) > a, .wp-child-theme-recap-child #menu-primary > li.current-menu-ancestor:not(:hover) > a span {
	 color: #fff;
}
 .wp-child-theme-recap-child #menu-primary > li.menu-item-has-children > a::after {
	 border-top-color: #fff;
}
 .wp-child-theme-recap-child #menu-primary > li.menu-item-has-children:hover > a::after {
	 border-top-color: var(--vkm-red);
}
 .wp-child-theme-recap-child .cs-button, .wp-child-theme-recap-child .cs-button:visited, .wp-child-theme-recap-child button, .wp-child-theme-recap-child input[type="submit"], .wp-child-theme-recap-child input[type="button"], .wp-child-theme-recap-child .wp-block-button__link {
	 background-color: #ff3131;
	 border-color: #ff3131;
	 color: #ffffff;
}
 .wp-child-theme-recap-child .cs-button:hover, .wp-child-theme-recap-child button:hover, .wp-child-theme-recap-child input[type="submit"]:hover, .wp-child-theme-recap-child input[type="button"]:hover, .wp-child-theme-recap-child .wp-block-button__link:hover {
	 background-color: #ff3131;
	 border-color: #ff3131;
	 color: #ffffff;
}
 .wp-child-theme-recap-child body, .wp-child-theme-recap-child body *:not(i):not([class*="icon"]):not(.cs-icon) {
	 font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
 @media (max-width: 1200px) {
	 .wp-child-theme-recap-child .cs-header__inner, .wp-child-theme-recap-child .cs-header__inner-desktop, .wp-child-theme-recap-child .cs-header__inner-mobile {
		 background-color: #1a1a1d;
	}
}
 .wp-child-theme-recap-child .cs-header__inner-desktop {
	 background-color: #1a1a1d;
}
 @media (max-width: 1200px) {
	 .wp-child-theme-recap-child header.cs-header.cs-header-stretch .cs-header__inner-desktop, .wp-child-theme-recap-child header.cs-header.cs-header-stretch .cs-header__inner-desktop::before {
		 background-color: #1a1a1d;
		 background-image: none;
	}
}
 .wp-child-theme-recap-child .cs-header__toggle.cs-header__scheme-toggle.cs-site-scheme-toggle {
	 display: none;
}
 @media (min-width: 769px) {
	 .wp-child-theme-recap-child .cs-header__search-toggle {
		 margin-right: 54px;
	}
}
 .wp-child-theme-recap-child .cs-subscribe__content {
	 display: none;
}
 @media (max-width: 768px) {
	 .wp-child-theme-recap-child .cs-header__offcanvas-toggle .cs-icon, .wp-child-theme-recap-child .cs-header__offcanvas-toggle .cs-icon::before, .wp-child-theme-recap-child .cs-header__search-toggle .cs-icon, .wp-child-theme-recap-child .cs-header__search-toggle .cs-icon::before, .wp-child-theme-recap-child .cs-header__toggle-icon .cs-icon, .wp-child-theme-recap-child .cs-header__toggle-icon .cs-icon::before {
		 color: #ffffff;
		 fill: #ffffff;
	}
}
 .wp-child-theme-recap-child .cs-entry-prev-next {
	 display: none;
}
 .wp-child-theme-recap-child .cs-entry__comments {
	 display: none;
}
 .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li > a, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li > a:visited, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li > a > div > span {
	 color: #ffffff;
	 transition: color .2s ease;
}
 .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li > a:hover, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li:hover > a, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li > a:hover > div > span, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li:hover > a > div > span {
	 color: #ff3131;
}
 .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li.current-menu-item > a, .wp-child-theme-recap-child .cs-header__nav-inner.cs-menu-primary__nav > li.current-menu-ancestor > a {
	 color: #ffffff;
}
 .wp-child-theme-recap-child .cs-header__nav-inner .sub-menu a, .wp-child-theme-recap-child .cs-header__nav-inner .sub-menu a > div > span {
	 transition: color .2s ease;
}
 .wp-child-theme-recap-child .cs-header__nav-inner .sub-menu li:hover > a, .wp-child-theme-recap-child .cs-header__nav-inner .sub-menu li:hover > a > div > span {
	 color: #ff3131;
}
 .wp-child-theme-recap-child .cs-header__nav-inner > li.menu-item-has-children > a::after {
	 border-top-color: #ffffff;
}
 .wp-child-theme-recap-child .cs-header__nav-inner > li.menu-item-has-children:hover > a::after {
	 border-top-color: #ff3131;
}
 .wp-child-theme-recap-child .cs-footer {
	 background-color: #1a1a1d;
}
 .wp-child-theme-recap-child .cs-footer, .wp-child-theme-recap-child .cs-footer__description, .wp-child-theme-recap-child .cs-footer__copyright {
	 color: #ffffff;
}
 .wp-child-theme-recap-child .cs-footer a:not(.cs-social__link), .wp-child-theme-recap-child .cs-footer a:not(.cs-social__link) span {
	 color: #ffffff;
	 transition: color .25s ease;
}
 .wp-child-theme-recap-child .cs-footer a:not(.cs-social__link):hover, .wp-child-theme-recap-child .cs-footer a:not(.cs-social__link):hover span {
	 color: #ff3131;
}
 .wp-child-theme-recap-child .cs-footer .cs-social__link, .wp-child-theme-recap-child .cs-footer .cs-social__link span, .wp-child-theme-recap-child .cs-footer .cs-social__link svg {
	 color: #000000;
}
 .wp-child-theme-recap-child .cs-footer .cs-social__link:hover, .wp-child-theme-recap-child .cs-footer .cs-social__link:hover svg {
	 color: #000000;
}
 .wp-child-theme-recap-child .cs-footer-marquee__item {
	 display: none;
}
 .wp-child-theme-recap-child .cs-footer .cs-social__link, .wp-child-theme-recap-child .cs-footer .cs-social__link span, .wp-child-theme-recap-child .cs-footer .cs-social__link svg {
	 color: #000000;
	 transition: color .25s ease, fill .25s ease;
}
 .wp-child-theme-recap-child .cs-footer .cs-social__link:hover, .wp-child-theme-recap-child .cs-footer .cs-social__link:hover span, .wp-child-theme-recap-child .cs-footer .cs-social__link:hover svg {
	 color: #ff3131;
	 fill: #ff3131;
}
 .wp-child-theme-recap-child .cs-header .cs-logo img, .wp-child-theme-recap-child .cs-header .cs-logo picture img {
	 height: clamp(40px,6vw,64px);
	 width: auto;
	 max-width: 100%;
	 object-fit: contain;
	 display: block;
}
 .wp-child-theme-recap-child .cs-footer .cs-logo img, .wp-child-theme-recap-child .cs-footer .cs-logo picture img {
	 height: clamp(56px,8vw,196px);
	 width: auto;
	 max-height: none;
	 object-fit: contain;
	 display: block;
}
 @media (max-width: 992px) {
	 .wp-child-theme-recap-child .cs-header .cs-logo img {
		 height: clamp(56px,10vw,160px);
	}
	 .wp-child-theme-recap-child .cs-footer .cs-logo img {
		 height: clamp(48px,9vw,140px);
	}
}
 @media (max-width: 768px) {
	 .wp-child-theme-recap-child .cs-header .cs-logo img {
		 height: clamp(48px,12vw,120px);
	}
	 .wp-child-theme-recap-child .cs-footer .cs-logo img {
		 height: clamp(44px,11vw,110px);
	}
}

.cs-entry__title,
.cs-entry__title a{
  font-family: var(--cs-font-entry-title-family) !important;
}

:root{
  --cs-font-headings-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	
	--cs-font-footer-submenu-weight: normal;
	
	--cs-light-header-background: #1a1a1a;
}


.cs-footer .menu-item-7421 {
  display: none !important;
}

.cs-footer .menu-item-305 {
  display: none !important;
}

/* 2) Footer kolon menüsü için ek garanti (sınıf bazlı) */
.cs-footer .cs-footer-columns__nav .menu-item-305 {
  display: none !important;
}

/* 3) ID değişse bile: URL içeren linke göre (modern tarayıcılar) */
.cs-footer li:has(> a[href*="/category/haberler/"]) {
  display: none !important;
}

/* 4) Metne göre güvenlik ağı (tema bazı span sarmalayıcıları kullanıyor) */
.cs-footer li a span {
  /* normalize */
}
.cs-footer li a span:where(:is(:not(:empty))) { /* no-op, selector specificity bump */ }



/* Sadece desktop: footer orta sütuna soldan boşluk ver */
@media (min-width: 1024px) {
  .cs-footer .cs-footer__grid.cs-col-center {
    padding-left: 34px; /* istersen 32px de yapabilirsin */
  }
}

/* Desktop: KVKK/Künye/İletişim/Kariyer tek satırda */
@media (min-width: 1024px) {
  .cs-footer .footer-top-menu {
    display: flex;
    flex-wrap: nowrap;          /* kırılmayı kapat */
    justify-content: left;    /* ortala (istersen flex-start) */
    align-items: center;
    gap: 16px;                  /* öğeler arası boşluk */
    list-style: none;
    margin: 10px 0 0;
    padding-left: 49px;
  }

  .cs-footer .footer-top-menu li {
    flex: 0 1 auto;             /* sıkışmaya izin ver */
  }

  .cs-footer .footer-top-menu a {
    display: block;
    white-space: nowrap;       
    text-decoration: none;
    padding: 6px 10px;          /* tıklama alanı */
  }
}
@media (min-width: 1024px) {
  .cs-footer .footer-top-menu { gap: 10px; }
  .cs-footer .footer-top-menu a { padding: 4px 8px; }
}

/* Desktop hizalama düzeni: Logo + açıklama + KVKK kısmı sola ve yukarı */
@media (min-width: 1024px) {
  /* Sol blok (logo + açıklama) */
  .cs-footer .cs-footer__grid.cs-col-left {
    margin-left: -50px;   /* sola kaydırma miktarı */
    margin-top: -35px;    /* yukarı kaldırma */
  }

  /* Logo biraz daha yukarı ve solda */
  .cs-footer .cs-logo {
    margin-left: -10px;
    margin-bottom: 8px;
  }

  /* Açıklama yazısı ile logo arasında ideal boşluk */
  .cs-footer .cs-footer__description {
    max-width: 280px;  /* metin bloğunu daralt */
    line-height: 1.5;
  }

  /* KVKK menüsünü de hizalamak için */
  .cs-footer .footer-top-nav {
    margin-left: -105px;
    margin-top: 5px;
  }

  /* Telif kısmı da sola hizalı olsun */
  .cs-footer .cs-footer__copyright {
    margin-left: -50px;
    text-align: left;
  }
}

.is-not-last button {
  display: none;
}

/* ✅ Header menüde kategori aralıklarını eşitle */
.cs-header__nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px !important; /* 🔹 Tüm kategoriler arasında eşit boşluk */
}

.cs-header__nav-inner > li {
  margin: 0 !important;
  padding: 0 !important;
}

/* Desktop'ta sağ kolon içindeki arama ikonu ile buton arasını kısalt */
@media (min-width: 1025px) {
  .cs-header__col.cs-col-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 23px !important; /* 🔹 aradaki boşluk */
  }

  /* Temanın verdiği ekstra boşlukları sıfırla */
  .cs-header__toggles { 
    margin-right: 0 !important; 
    gap: 8px !important;      /* varsa iç boşluğu da küçült */
  }

  .cs-header__toggles .cs-header__toggle {
    margin: 0 !important;
  }

  .cs-header__custom-button.cs-button {
    margin-left: 0 !important; 
  }
}

.cs-entry__overlay .cs-overlay-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0.20) 45%,
        rgba(0, 0, 0, 0.05) 60%,
        rgba(0, 0, 0, 0.30) 80%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
}


.cs-entry__overlay .cs-overlay-content {
    position: relative;
    z-index: 2;
}
/* TOC (İçindekiler) – aktif/hover olduğunda kırmızı */
.cs-entry__metabar-toc__nav .cs-toc-link:hover,
.cs-entry__metabar-toc__nav .cs-toc-link:focus,
.cs-entry__metabar-toc__nav .cs-toc-link.active,
.cs-entry__metabar-toc__nav li.is-active > .cs-toc-link {
  color: #ff3131 !important;
}

/* İstersen pasif linkleri biraz soluk yap */
.cs-entry__metabar-toc__nav .cs-toc-link {
  color: #c9ced6; /* tercihe bağlı */
}

/* Metabar okuma süresi barını kırmızı yap */
.cs-entry__metabar-reading_time__fill {
  background-color: #ff3131 !important;
}

/* (Opsiyonel) TOC aktif maddede sol şerit belirtgesi kırmızı olsun */
.cs-entry__metabar-toc__nav li .cs-toc-link.active::before,
.cs-entry__metabar-toc__nav li.is-active .cs-toc-link::before {
  background-color: #ff3131 !important;
}

.single .cs-entry__header-meta .cs-meta-author,
.single .cs-entry__header-meta .cs-meta-author-link {
  display: none !important;
}

/* Kartlarda (grid/list) author + tarih tamamen gizle */
.cs-entry .cs-meta-author,
.cs-entry .cs-meta-author-link,
.cs-entry .cs-meta-date {
  display: none !important;
}

/* Olası ayırıcı noktaları/ikonları da kaldır */
.cs-entry__post-meta .cs-meta-author + .cs-meta-date::before,
.cs-entry__post-meta .cs-meta-author::before,
.cs-entry__post-meta .cs-meta-date::before {
  content: none !important;
}

/* (Daha önce istediğin gibi) tekil yazıda tarihi göster, author gizli kalsın */
.single .cs-entry__header-meta .cs-meta-date {
  display: inline-block !important;
}
.single .cs-entry__header-meta .cs-meta-author {
  display: none !important;
}

/* Paylaş ikonları hover’da kırmızı olsun */
.cs-share a.cs-share__link {
  transition: color .2s ease;
}
.cs-share a.cs-share__link:hover,
.cs-share a.cs-share__link:focus {
  color: #ff3131 !important;
}

/* Eski ikonlarda fill sabit ise güvenlik ağı */
.cs-share a.cs-share__link:hover svg path,
.cs-share a.cs-share__link:focus svg path {
  fill: #ff3131 !important;
}

/* “Paylaş” yazısı etkilenmesin */
.cs-share > span.cs-share__link { color: inherit !important; }

.cs-entry__post-meta .post-categories a {
  color: #ff3131 !important;
}

.cs-entry__inner.cs-entry__content.cs-overlay-content .cs-entry__post-meta {
  display: none !important;
}

/* Single yazıda featured image'i sabit oranda tut */
.single .cs-entry__media,
.single .cs-entry__thumbnail {
  aspect-ratio: 16 / 9;   /* sabit çerçeve oranı */
  max-height: 420px;      /* üst sınır, istersen 400 yap */
  overflow: hidden;
}

.single .cs-entry__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* taşan kısmı kırpar, bozulma yok */
  object-position: center; /* ortadan kırpar */
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .single .cs-entry__media,
  .single .cs-entry__thumbnail { max-height: 340px; }
}

/* Mobil */
@media (max-width: 600px) {
  .single .cs-entry__media,
  .single .cs-entry__thumbnail { max-height: 240px; }
}


/* OFFCANVAS menü: arka plan koyu, yazılar beyaz */
.cs-offcanvas,
.cs-offcanvas__header,
.cs-offcanvas__sidebar,
.cs-offcanvas__inner,
.cs-menu-mobile__nav,
.cs-offcanvas__footer {
  background-color: #1a1a1d !important;
  color: #fff !important;
}

/* Linkler ve menü maddeleri */
.cs-offcanvas a,
.cs-menu-mobile__nav a,
.cs-menu-mobile__nav a span {
  color: #fff !important;
}

/* Hover/aktif durum – istersen gri ton */
.cs-offcanvas a:hover,
.cs-menu-mobile__nav a:hover span {
  color: #e0e0e0 !important;
}

/* Burger/close ikonları beyaz */
.cs-header__offcanvas-toggle i,
.cs-offcanvas__close-toggle i,
.cs-header__offcanvas-toggle .cs-icon,
.cs-offcanvas__close-toggle .cs-icon {
  color: #fff !important;
  fill: #fff !important;
}

/* Alt ok/expand oku beyaz */
.cs-menu-mobile__nav-arrow {
  color: #fff !important;
  fill: #fff !important;
}

/* Sosyal ikonlar beyaz */
.cs-offcanvas .cs-social__link,
.cs-offcanvas .cs-social__link span,
.cs-offcanvas .cs-social__link svg {
  color: #fff !important;
  fill: #fff !important;
}

/* Olası ayırıcı/border'lar */
.cs-offcanvas li,
.cs-offcanvas__footer,
.cs-menu-mobile__nav .sub-menu {
  border-color: rgba(255,255,255,0.12) !important;
}

.cs-offcanvas .cs-logo img,
.cs-offcanvas .cs-header__logo img {
  height: 58px !important;
  width: auto !important;
}

.cs-offcanvas__header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Logo ile kapama ikonunun hizası */
.cs-offcanvas .cs-logo.cs-logo-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-social__link {
  display: inline-block;
  transition: all 0.3s ease;
}

.cs-social__link svg {
  color: #000000;
  fill: #000000;
  transition: all 0.3s ease;
}

/* Hover (üzerine gelindiğinde) durumu */
.cs-social__link:hover svg {
  color: #ff3131;
  fill: #ff3131;
}

.cs-social__link svg path {
  fill: currentColor;
  transition: fill 0.3s ease;
}

.cs-social__link:hover svg path {
  fill: #ff0000;
}

.cs-offcanvas__footer .cs-social__link,
.cs-offcanvas__footer .cs-social__link span,
.cs-offcanvas__footer .cs-social__link svg {
  color: #1a1a1d !important;         
  fill: currentColor !important; 
  transition: color .2s ease, fill .2s ease, opacity .2s ease;
}


.cs-entry__title,
.cs-entry__title span {
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif !important;
}

/* Header ile ticker arası boşluk - masaüstü */
.score-ticker-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Genel: ticker genişliği */
.score-ticker-container #vkmTicker,
.score-ticker-container #vkmTicker .vkm-broadage-content .broadage-livescore-ticker {
    width: 100%;
    box-sizing: border-box;
}

/* MOBİLDE: tam ekran, sağ-sol boşlukları kaldır */
@media (max-width: 768px) {
    .score-ticker-container.cs-container {
        max-width: none;   
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -10px;
    }
}



/* Ticker'ı yuvarlat */
.score-ticker-container #vkmTicker .vkm-broadage-content .broadage-livescore-ticker {
    border-radius: 14px;     /* köşe yuvarlaklığı */
    overflow: hidden;       /* içteki içerik köşelerden taşmasın */
}

     
/* Broadage logosunu gizle */
.broadage-ticker-head-type-5 .broadage-mini-logo .broadage-logo {
    display: none !important;
}

/* Logo alanını büyüt */
.broadage-ticker-head-type-5 .broadage-mini-logo {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 55px;          
    min-height: 30px;         
}

.broadage-ticker-head-type-5 .broadage-mini-logo::before {
    content: "";
    display: block;
    width: 50px;           
    height: 30px;              
    background-image: url("https://vkmspor.com/wp-content/themes/recap/vkmspor.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.broadage-ticker-head-type-5 .broadage-livescore-link {
    color: #ffffff !important; 
}

.broadage-ticker-head-type-5 .broadage-head-links {
    display: flex;
    align-items: center;
  
}


.broadage-ticker-head-type-5 .broadage-head-links {
    margin-top: -2px !important;
}


#vkmTicker .vkm-broadage-content .broadage-widgets-body.broadage-livescore-ticker.broadage-theme-scoree * {
    font-size: 14px !important;
}

#vkmTicker.vkm-broadage-single .broadage-widgets-body.broadage-livescore-ticker .broadage-content-wrapper .broadage-ticker-head.broadage-ticker-head-type-5 {
	width: 200px;
  z-index: 1;
}
#vkmTicker.vkm-broadage-double .broadage-widgets-body.broadage-livescore-ticker .broadage-content-wrapper .broadage-ticker-head.broadage-ticker-head-type-5 {
	width: 100%;
  padding: 10px 15px;
}
#vkmTicker .vkm-broadage-content .broadage-widgets-body.broadage-livescore-ticker .broadage-content-wrapper .broadage-ticker-head .broadage-head-links .broadage-livescore-link-wrapper .broadage-livescore-link {
  max-width: 200px;
}

/* Sadece "Canlı" yazısını büyüt */
#vkmTicker .vkm-broadage-content .broadage-widgets-body.broadage-livescore-ticker.broadage-theme-scoree .broadage-livescore-link {
    font-size: 16px !important;  
}

.broadage-widgets-body.broadage-livescore-ticker 
  .broadage-content-wrapper 
  .broadage-ticker-head.broadage-ticker-head-type-5 
  .broadage-head-links 
  .broadage-mini-logo {
    margin-right: 6px !important;
}

/* Broadage script loader svg ikonunu gizle */
img[src*="script-loader.svg"] {
    display: none !important;
}

/* Broadage'in olası diğer loader ikonlarını da gizle */
.broadage-loader,
.broadage-loader *,
.broadage-loading {
    display: none !important;
}

.cs-post-tiles {
    margin-top: 0.15rem !important;
}

.score-ticker-container {
	margin-top : 5px !important;
}

.widget.cs-widget.cs-widget-link-tiles {
    display: none !important;
}


.cs-header__custom-button.cs-button,
.cs-header__custom-button.cs-button:hover,
.cs-header__custom-button.cs-button:focus,
.cs-header__custom-button.cs-button:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.cs-header__custom-button.cs-button::before,
.cs-header__custom-button.cs-button::after {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Daha Fazla Yükle butonuna loading animasyonu */

/* Temel konumlandırma */
.cs-load-more {
  position: relative;
  overflow: hidden;
	  background-color: #ff3131 !important;
    border-color: #ff3131 !important;
    color: #ffffff !important;
}

/* Yükleme anında cursor ve padding */
.cs-load-more[data-loading="true"] {
  cursor: wait;
  padding-right: 40px; /* sağ tarafa spinner için yer aç */
}

/* Spinner dairesi */
.cs-load-more[data-loading="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;              /* istersen 10–16px arası oynat */
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
border: 2px solid rgba(0,0,0,0.3); /* dış çember (siyah ton) */
  border-top-color: #ffffff;         /* parlak kısım tamamen siyah */
  animation: cs-load-more-spin 0.8s linear infinite;
}

/* Dönen animasyon */
@keyframes cs-load-more-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.cs-subscribe{
	display:none
}

.cs-page__title,
.cs-page__title span {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif !important;
}


.cs-entry__header-content .cs-entry__title,
.cs-entry__header-content .cs-entry__title span {
  font-size: 2.1rem !important;
  line-height: 1.2 !important;
}


.cs-entry__excerpt {
  line-height: 1.5;
  color: var(--vkm-text-gray, #999);
}

.cs-entry__inner.cs-entry__content {
	max-height: 285px
}

.cs-entry__excerpt.vkm-clamp-fade-bottom {
  max-height: 250px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cs-entry__excerpt.vkm-clamp-fade-bottom {
    max-height: 150px;
  }
}

.cs-post-tiles__grid .cs-entry__excerpt {
	color: #dedede;
}


@media (min-width: 1200px) {
  .cs-entry__header-standard {
    grid-template-columns: 1fr 400px;
  }
}


.cs-footer__copyright {
	  font-size: 10px !important;
}

.cs-footer__legal::first-line {
  color: #ff3131;     
}

/* Mobil varsayılan */
.cs-footer__legal {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1;
  color: #e5e5e5;
  margin-left: 0;   
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .cs-footer__legal {
    margin-left: -20px;  
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .cs-footer__legal {
    margin-left: -51px; 
  }
}



.cs-footer__copyright a {
  text-decoration: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.cs-footer__copyright a::before,
.cs-footer__copyright a::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.broadage-loader-wrapper {
  display: none !important;
}

img[src*="script-loader.svg"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
/* Hızlı Bağlantılar başlığını gizle */
.widget.cs-widget.cs-widget-quick-links .cs-widget__heading {
  display: none !important;
}

/* Numara balonunun arka planını kırmızı yap */
.cs-widget-quick-links__item-number {
  background-color: #ff3131 !important;
}

.cs-widget-quick-links__item-label {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif !important;
}

.cs-widget-promo .broadage-footer-logo img {
  max-width: 160px;   /* logonun en üst genişliği */
  max-height: 34px;   /* logonun en üst yüksekliği */
  width: auto;
  height: auto;
  object-fit: contain;  /* oran bozulmasın */
}


/* Puan durumu kartını büyük yuvarlak köşeli yap */
.widget.cs-widget.cs-widget-promo,
.widget.cs-widget.cs-widget-promo .cs-widget__content,
.widget.cs-widget.cs-widget-promo .cs-widget-promo__wrapper,
.widget.cs-widget.cs-widget-promo #broadage_point > .broadage-widgets-body {
  border-radius: 10px;   /* istersen 28–32px de yapabilirsin */
  overflow: hidden;      /* içerik köşelerden taşmasın */
}

.cs-widget-promo__wrapper {
  max-width: none !important;
}

/* Sadece dış çerçeveleri kaldır */
.cs-container.score-ticker-container,
#vkmTicker,
#vkmTicker .vkm-broadage-content .vkm-broadage-content .broadage-widgets-body,
#vkmTicker .vkm-broadage-content .broadage-content-wrapper,
#vkmTicker .vkm-broadage-content .broadage-livescore-stage-wrapper,
#vkmTicker .vkm-broadage-content .broadage-livescore-line-5,
#vkmTicker .vkm-broadage-content .broadage-ticker-head {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Takım adlarını kalın yap */
.broadage-standings .broadage-table .broadage-cell.broadage-team-name .broadage-team-name-content{
  font-weight: 600 !important; /* Inter kullanıyorsan 600-700 iyi durur */
}

/* Puan hücrelerini (P sütunu) kalın yap */
.broadage-standings .broadage-table .broadage-cell.broadage-team-point,
.broadage-standings .broadage-table .broadage-cell.broadage-point-info{
  font-weight: 700 !important;
}

/* 1) Butonun kendisi – hep #ff3131, efektsiz */
.cs-button.cs-search__submit,
.cs-button.cs-search__submit:hover,
.cs-button.cs-search__submit:focus,
.cs-button.cs-search__submit:active {
  background-color: #ff3131 !important;
  border-color: #ff3131 !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

/* 2) Bu butonun ::before / ::after efektlerini kapat */
.cs-button.cs-search__submit::before,
.cs-button.cs-search__submit::after,
.cs-button.cs-search__submit:hover::before,
.cs-button.cs-search__submit:hover::after {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  transform: none !important;
}

.footer-top-menu a {
		font-size: 14px;
}

.cs-footer .footer-top-menu {
  display: flex;
  flex-wrap: wrap;        
  gap: 10px;    
  list-style: none;      
}

.cs-footer .footer-top-menu a {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .cs-footer .footer-top-menu {
    margin: 0;
    padding: 0;
  }
}

.broadage-footer-logo,
.broadage-footer-logo a,
.broadage-footer-logo img {
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
}

/* Tüm kapatma (X) ikonlarını siyah yap – before üzerinden */
.cs-icon.cs-icon-close::before {
  color: #000000 !important;
  fill: #000000 !important;
}

.single .cs-entry__header-inner > .cs-entry__title {
  margin-bottom: 16px !important; 
}

.cs-search.popup,
.cs-search.popup .cs-search__inner,
.cs-search.popup .cs-search__form-container,
.cs-search.popup .cs-search__categories,
.cs-search.popup .cs-search__posts {
    background-color: #FAFAFA !important;
}



.cs-site-content.cs-sidebar-enabled.cs-sidebar-right.cs-metabar-enabled {
    margin-top: 1.2rem !important;
}

@media (min-width: 1024px) {
  .cs-header__nav-inner .menu-item-has-children::before,
  .cs-header__nav-inner .menu-item-has-children > a::before,
  .cs-header__nav-inner .menu-item-has-children > a > div::before,
  .cs-header__nav-inner .menu-item-has-children .cs-sm__toggle::before,
  .cs-header__nav-inner .menu-item-has-children .cs-sm__arrow::before {
    content: "" !important;
    display: none !important;
    background: none !important;
    border: 0 !important;
  }
}

.cs-footer__legal {
    line-height: 1.8 !important;
}

.cs-breadcrumbs {
  padding-top: 1.5rem !important;
}

@media (min-width: 1024px) {
  .cs-breadcrumbs {
    padding-top: 0.75rem !important;
  }
}

.cs-footer__legal::first-line {
    font-weight: 900;      /* daha tok */
    font-size: 1.09em;     /* çok hafif büyüme */
}

@media (max-width: 767.98px) {
  .cs-page__thumbnail {
    width: 85px;
    height: 85px;
  }
}

.cs-footer__legal a {
  text-decoration: none !important;
}

.cs-footer__legal a:hover,
.cs-footer__legal a:focus {
  text-decoration: none !important;
}

.cs-header__offcanvas-toggle .cs-icon[class*="cs-icon-"] {
  filter: brightness(0) invert(1);
}

.score-ticker-container {
    min-height: 50px; 
}

@media (max-width: 768px) {
    .score-ticker-container {
        min-height: 100px;
    }
}

/* Kategori kartlarının iç metnini ortala */
.cs-categories__slider-wrapper .cs-categories__item-content,
.cs-categories__slider-wrapper .cs-categories__item-title,
.cs-categories__slider-wrapper .cs-categories__item-title a {
    text-align: center;
}

/* İkon + yazı yan yana ise ortalı dursun */
.cs-categories__slider-wrapper .cs-categories__item-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
}

.cs-categories__item-title .csco-category-icon {
    display: none !important;
}

.cs-categories__slider-button-prev,
.cs-categories__slider-button-next {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* İstersen sadece mobilde uygula */
@media (max-width: 768px) {
    .cs-categories__slider-button-prev,
    .cs-categories__slider-button-next {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

.cs-categories__slider-button-prev {
    background-color: #ffffff !important;
    color: #ff3131 !important;
}

.cs-categories__slider-button-prev i {
    color: #ff3131 !important;
}

.cs-categories__slider-button-next {
      background-color: #ffffff !important;
    color: #ff3131 !important;
}

.cs-categories__slider-button-next i {
   color: #ff3131 !important;
}

.cs-entry__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.cs-entry__overlay .cs-entry__excerpt {
  display: block;            
  max-height: calc(1.5em * 3); 
  overflow: hidden;           
	
}

.cs-entry__overlay .cs-entry__excerpt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.6em; 
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,   
    rgba(0, 0, 0, 0.85) 100% 
  );
  pointer-events: none;
}

@media (min-width: 769px) and (max-width: 991px) {
    .cs-header__inner-mobile,
    .cs-header__inner-mobile::before,
    .cs-header__inner-mobile::after {
        background-color: #1a1a1d !important;
        box-shadow: none !important; 
    }
}