/* Brand + NewsRoom overrides — Özeti Gündem / Today's Summary */
:root {
  --brand-red: #ed1c24;
  --brand-navy: #0a192f;
  --brand-ink: #111;
  --brand-muted: #6c757d;
  --brand-line: #e9ecef;
}

/* Site genişliği — genel max %80 */
@media (min-width: 768px) {
  .container-fluid {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .container {
    max-width: 80%;
  }
  /* fluid içinde nested container tekrar %80 olmasın */
  .container-fluid > .container,
  .container-fluid .container {
    max-width: 100%;
  }
}

/* Owl / owl-stage — desktop polish */
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-stage-outer {
  overflow: hidden;
  width: 100%;
}
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-carousel .owl-item {
  float: none;
  display: flex;
}
.owl-carousel .owl-item > * {
  width: 100%;
  min-width: 0;
}

/* Üst ince haber şeridi */
.carousel-item-3 .owl-item > .d-flex {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
}
.carousel-item-3 .owl-item > .d-flex > a:first-child {
  flex: 0 0 80px;
}
.carousel-item-3 .owl-item > .d-flex > .bg-light {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.carousel-item-3 .owl-item .font-weight-semi-bold {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  max-height: 2.7em;
}

/* Hero / featured slide — full card clickable */
.nr-slide {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none !important;
  color: inherit;
}
.nr-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nr-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(transparent 35%, rgba(0,0,0,.72));
  pointer-events: none;
}
.nr-slide__meta {
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}
.nr-slide__title {
  color: #fff !important;
  text-decoration: none !important;
}
.nr-slide:hover .nr-slide__title {
  text-decoration: underline !important;
}

/* Featured / kategori kartları */
.carousel-item-4 .owl-item .nr-slide,
.carousel-item-1 .owl-item .nr-slide {
  width: 100%;
}

/* Light category cards — titles must stay visible */
.nr-card-light {
  width: 100%;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.nr-card-light__media {
  display: block;
  line-height: 0;
}
.nr-card-light__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.nr-card-light__body {
  padding: 14px 16px 16px;
  background: #f8f9fa;
  min-height: 110px;
  flex: 1;
}
.nr-card-light__meta {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 8px;
}
.nr-card-light__meta a {
  color: #6c757d !important;
  text-decoration: none !important;
}
.nr-card-light__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111 !important;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none !important;
}
.nr-card-light__title:hover { color: var(--brand-red) !important; }

@media (min-width: 992px) {
  .owl-carousel .owl-stage-outer {
    margin: 0;
  }
  .carousel-item-2.owl-carousel .owl-item,
  .carousel-item-3.owl-carousel .owl-item,
  .carousel-item-4.owl-carousel .owl-item {
    padding: 0 2px;
  }
  .carousel-item-1 .owl-item .nr-slide__overlay {
    padding: 28px 32px;
  }
  .carousel-item-1 .owl-item .nr-slide__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
  }
  .carousel-item-4 .owl-item .nr-slide__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .owl-carousel-2 .owl-nav .owl-prev,
  .owl-carousel-2 .owl-nav .owl-next {
    margin: 0 12px;
  }
}

/* Section title: colored bar + [prev] View All [next] */
.section-title-bar {
  --cat-color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8f9fa;
  border-left: 4px solid var(--cat-color);
  padding: 10px 14px;
  margin-bottom: 12px;
}
.section-title-bar__title {
  color: var(--cat-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
}
.section-title-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.section-title-bar__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  background: var(--cat-color);
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 3px;
}
.section-title-bar__more:hover {
  filter: brightness(1.08);
  color: #fff !important;
}
.section-nav-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--cat-color);
  background: #fff;
  color: var(--cat-color);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.section-nav-btn:hover {
  background: var(--cat-color);
  color: #fff;
}
.owl-carousel[data-owl-nav="external"] .owl-nav {
  display: none !important;
}

.cat-chip {
  border: 1px solid var(--cat-color, #6c757d) !important;
  color: var(--cat-color, #6c757d) !important;
  background: #fff !important;
}
.cat-chip:hover,
.cat-chip.is-active {
  background: var(--cat-color, #ed1c24) !important;
  color: #fff !important;
  border-color: var(--cat-color, #ed1c24) !important;
}

.legal-page {
  max-width: 820px;
  color: #333;
  line-height: 1.65;
}

/* Footer — full-bleed bg (© dahil), içerik 80% */
.site-footer {
  width: 100%;
  max-width: none !important;
  margin-top: 24px;
  background: #f3f5f7;
  border-top: 1px solid var(--brand-line);
}
.site-footer__main {
  background: transparent;
  padding: 40px 0 8px;
}
.site-footer__copy {
  background: transparent;
  border-top: 1px solid #e1e5ea;
  padding: 16px 0 20px;
}
.site-footer__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    max-width: 80%;
  }
}
.footer-brand-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: 0.01em;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #5b6573;
  max-width: 34em;
}

/* ===== Site header — full-bleed bg, içerik 80% ===== */
.site-header {
  width: 100%;
  max-width: none !important;
  margin: 0 0 18px;
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
  border-radius: 0;
  overflow: visible;
  padding: 0 !important;
}
.site-header__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .site-header__inner {
    max-width: 80%;
  }
}

.site-trend {
  background: #f3f5f7;
  border-bottom: 1px solid var(--brand-line);
}
.site-trend__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 4px;
}
.site-trend__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}
.site-trend__track {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.tranding-carousel,
.owl-carousel-1.tranding-carousel,
.site-trend .owl-carousel-1 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 991.98px) {
  .tranding-carousel,
  .owl-carousel-1.tranding-carousel,
  .site-trend .owl-carousel-1,
  .site-trend__track {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}
.site-trend__track.owl-carousel .owl-stage-outer {
  height: 28px;
  overflow: hidden;
}
.site-trend__track .owl-item {
  min-width: 0;
}
.site-trend__item {
  line-height: 28px;
  min-width: 0;
  max-width: 100%;
  padding-right: 4px;
  box-sizing: border-box;
}
.site-trend__item a {
  color: #333 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.site-trend__item a:hover { color: var(--brand-red) !important; }
@media (min-width: 992px) {
  .site-trend__track .owl-item {
    border-right: 1px solid #d5d9de;
    padding-right: 10px;
  }
  .site-trend__track .owl-item:nth-child(even),
  .site-trend__track .owl-item.active + .owl-item {
    border-right: 0;
    padding-right: 0;
    padding-left: 4px;
  }
  /* Görünen son öğede çizgi olmasın — her çiftin sağındakini temizle */
  .site-trend__track .owl-item.active {
    border-right: 1px solid #d5d9de;
    padding-right: 10px;
  }
  .site-trend__track .owl-item.active + .owl-item {
    border-right: none !important;
    padding-right: 0 !important;
    padding-left: 6px;
  }
}
.site-trend__track .owl-nav {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: none !important; /* cleaner strip; autoplay is enough */
}
.site-trend__meta {
  display: none;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .site-trend__meta { display: inline-flex; }
}
.site-trend__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid #d0d5db;
  border-radius: 3px;
  background: #fff;
  color: var(--brand-navy) !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}
.site-trend__lang:hover {
  border-color: var(--brand-red);
  color: var(--brand-red) !important;
}
.site-trend__date {
  color: #6c757d;
  font-size: 12px;
  text-transform: capitalize;
}

.site-masthead {
  display: block;
  min-height: 0;
  padding: 14px 0;
  background: #fff;
}
.site-masthead__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-masthead .brand-lockup {
  flex: 0 0 auto;
}
.site-masthead__ad {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-masthead .ad-slot--leader,
.site-masthead__ad .ad-slot--leader {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: block;
  width: 100%;
  max-width: 728px;
  margin-left: auto;
}
.site-masthead .ad-slot--leader .ad-slot__label { display: none; }
.site-masthead .ad-slot--leader a.ad-slot__banner {
  display: block;
  width: 100%;
  line-height: 0;
}
.site-masthead .ad-slot--leader .ad-slot__banner img,
.ad-slot--leader .ad-slot__banner img {
  display: block;
  width: 100% !important;
  max-width: 728px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 728 / 90;
  object-fit: contain !important;
  object-position: right center;
  margin-left: auto;
  border-radius: 6px;
  background: #f1f3f5;
}
.site-masthead .ad-slot--leader .ad-native,
.ad-slot--leader .ad-native {
  width: 100%;
  margin-left: auto;
}
.ad-slot--leader .ad-native__logo,
.site-masthead .ad-slot--leader .ad-native__logo {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
}
.ad-slot--leader .ad-native__logo img,
.site-masthead .ad-slot--leader .ad-native__logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* Yankı native house ads — brand: navy + blue Y logo */
.ad-native {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.ad-native--yanki {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(33, 122, 255, 0.28), transparent 55%),
    linear-gradient(125deg, #050a30 0%, #0a1448 48%, #0d1b5c 100%);
  border: 1px solid rgba(33, 122, 255, 0.28);
  box-shadow: 0 8px 24px rgba(5, 10, 48, 0.22);
}
.ad-native__logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #050a30;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 4px 14px rgba(0, 0, 0, 0.28);
  line-height: 0;
}
.ad-native__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-native__logo--lg {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  margin-bottom: 2px;
}
.ad-native__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ad-native__name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.ad-native__tag {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad-native__cta {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #217aff;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(33, 122, 255, 0.35);
}
.ad-native:hover .ad-native__cta {
  background: #3d8cff;
}
.ad-native--leader {
  min-height: 72px;
  padding: 10px 12px;
  width: 100%;
}
.ad-native--wide {
  min-height: 84px;
  padding: 14px 16px;
}
.ad-native--card {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px 16px;
  min-height: 260px;
}
.ad-native--card .ad-native__tag {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
}
.ad-native__points {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  width: 100%;
}
.ad-native__points li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ad-native__points li:last-child { border-bottom: 0; }
.ad-native__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #217aff;
  box-shadow: 0 0 0 3px rgba(33, 122, 255, 0.22);
}
.ad-native--card .ad-native__cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  padding: 11px 14px;
}
.ad-slot--side.ad-slot--native {
  background: transparent;
  border: 0;
  padding: 0;
}
.ad-slot--side.ad-slot--native .ad-slot__label {
  color: var(--brand-muted);
  margin-bottom: 8px;
}
.ad-slot--mid.ad-slot--native,
.ad-slot--footer.ad-slot--native {
  background: transparent;
  border: 0;
  padding: 0;
}
@media (max-width: 575.98px) {
  .ad-native--leader,
  .ad-native--wide {
    flex-wrap: wrap;
  }
  .ad-native--leader .ad-native__cta,
  .ad-native--wide .ad-native__cta {
    width: 100%;
    text-align: center;
  }
  .ad-native__tag { white-space: normal; }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: #05050c;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  max-width: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.brand-lockup--round {
  padding: 4px;
  border-radius: 50%;
}
a.navbar-brand.brand-lockup {
  margin: 0;
  padding: 6px 10px;
  height: auto;
  font-size: 0;
}
.brand-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: block;
}
.brand-logo--round {
  height: 48px !important;
  width: 48px !important;
  max-width: 48px !important;
  border-radius: 50%;
  object-fit: cover !important;
  background: #000;
}
.brand-logo-mobile {
  height: 34px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  display: block;
}
.site-en .brand-logo {
  height: 52px !important;
  max-width: 240px !important;
}
.site-en .brand-logo-mobile {
  height: 36px !important;
  max-width: 170px !important;
}
.site-en .footer .brand-logo {
  height: 44px !important;
  max-width: 200px !important;
}
.footer .brand-logo {
  height: 40px !important;
  max-width: 170px !important;
}
.footer .brand-logo--round {
  height: 40px !important;
  width: 40px !important;
  max-width: 40px !important;
}

.site-nav {
  background: #f8f9fa !important;
  border-top: 1px solid var(--brand-line);
  padding: 0 !important;
  min-height: 52px;
}
.site-nav__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 52px;
}
.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 !important;
  padding: 4px 0 !important;
}
.site-nav__links .nav-link {
  padding: 10px 11px !important;
  font-size: 14px;
  font-weight: 600;
  color: #334155 !important;
}
.site-nav__links .nav-link:hover,
.site-nav__links .nav-link:focus {
  color: #fff !important;
  background: var(--brand-red) !important;
  border-radius: 4px;
  text-decoration: none !important;
}
.site-nav__links .nav-link.active {
  color: #fff !important;
  background: var(--brand-red) !important;
  border-radius: 4px;
}
.site-nav__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 6px 0;
}
.site-search {
  display: flex;
  align-items: stretch;
  width: 220px;
  max-width: 42vw;
  border: 1px solid #d7dbe0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.site-search .form-control {
  border: 0 !important;
  box-shadow: none !important;
  height: 36px;
  font-size: 13px;
  padding: 0 12px;
}
.site-search button {
  border: 0;
  background: #eef1f4;
  color: #445;
  width: 40px;
  cursor: pointer;
}
.site-search button:hover {
  background: var(--brand-red);
  color: #fff;
}

/* Desktop: always show nav row. Mobile: only when .show (Bootstrap collapse) */
@media (min-width: 992px) {
  .site-nav .navbar-collapse {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding-bottom: 12px;
  }
  .site-nav .navbar-collapse.show {
    display: flex !important;
  }
  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-nav__links .nav-link {
    padding: 12px 8px !important;
    border-bottom: 1px solid #e9ecef;
  }
  .site-nav__tools {
    width: 100%;
    margin-left: 0;
  }
  .site-search {
    width: 100%;
    max-width: none;
  }
}

/* Mobile: lang switch beside hamburger */
.navbar-mobile-actions { gap: 8px; }
.lang-switch-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #111 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  background: #fff;
}
.lang-switch-nav:hover {
  border-color: var(--brand-red);
  color: var(--brand-red) !important;
}

/* Social icons */
.navbar-social {
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.navbar-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .15s ease, opacity .15s ease;
}
.navbar-social__btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  color: #fff !important;
}
.navbar-social__btn--yt { background: #ff0000; }
.navbar-social__btn--ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af);
}
.navbar-social__btn--fb { background: #1877f2; }

@media (max-width: 991.98px) {
  .site-masthead {
    padding: 10px 0;
  }
  .site-masthead__row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-masthead__ad { justify-content: center; }
}

/* House ads */
.ad-slot {
  margin: 16px 0;
  padding: 12px;
  border-radius: 6px;
  background: #f8f9fa;
  border: 1px solid var(--brand-line);
}
.ad-slot__label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.ad-slot__stack {
  display: grid;
  gap: 10px;
}
.ad-banner-link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #0a192f;
  line-height: 0;
}
.ad-banner-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.ad-slot--side {
  background: linear-gradient(165deg, #0a192f 0%, #152a4a 55%, #1a1030 100%);
  border: 0;
  color: #fff;
}
.ad-slot--side .ad-slot__label { color: rgba(255,255,255,.55); }
.ad-side-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #050b16;
  line-height: 0;
}
.ad-side-link img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.ad-slot__store { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.ad-slot__store a {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
}
.ad-slot__store a:hover { background: var(--brand-red); border-color: var(--brand-red); }
.ad-slot--footer {
  background: transparent;
  border: 1px solid #dee2e6;
  margin-top: 8px;
}
.ad-slot__footer-grid,
.ad-slot__footer-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
}
.ad-footer-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dee2e6;
  background: #0a192f;
  line-height: 0;
}
.ad-footer-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.social-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.social-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-ig-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  text-decoration: none !important;
  aspect-ratio: 4 / 5;
}
.social-ig-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.social-ig-card:hover .social-ig-card__img {
  transform: scale(1.02);
}

/* List pagination */
.site-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
  padding: 12px 0;
  border-top: 1px solid var(--brand-line);
}
.site-pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 auto;
}
.site-pagination__btn,
.site-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #d7dbe0;
  background: #fff;
  color: #1a2332 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}
.site-pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.site-pagination__num.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff !important;
}
.site-pagination__num:hover:not(.is-active),
.site-pagination__btn:hover:not(.is-disabled) {
  border-color: var(--brand-red);
  color: var(--brand-red) !important;
}
.site-pagination__dots {
  padding: 0 4px;
  color: #889;
  font-weight: 700;
}

.seo-story {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Modal */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.news-modal.is-open { display: block; }
.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, .62);
}
.news-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100vw - 24px));
  max-height: min(88vh, 900px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.news-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 2;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  width: 44px;
  height: 44px;
}
.news-modal__scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 28px 22px 24px;
  max-height: min(88vh, 900px);
}
.news-modal__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  padding-right: 36px;
}
.news-modal__cat {
  color: var(--brand-red);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.news-modal__time { color: #888; font-size: 13px; }
.news-modal__title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 14px;
}
.news-modal__media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}
.news-modal__body p {
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin: 0 0 10px;
}
.news-modal__tags { margin: 12px 0; }
.news-modal__tags a {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 10px;
  background: #f3f3f3;
  border-radius: 999px;
  font-size: 12px;
  color: #444;
  text-decoration: none;
}
.news-modal__social { margin: 14px 0; }
.news-modal__social iframe {
  width: 100%;
  max-height: 220px;
  border: 0;
  border-radius: 6px;
}
.news-modal__social a.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.news-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.news-modal__btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
}
.news-modal__btn:disabled { opacity: .4; cursor: default; }
.news-modal__counter { font-size: 13px; color: #666; white-space: nowrap; }
.news-modal__source { margin-top: 12px; font-size: 13px; color: #777; }
.news-modal__source a { color: #226; }

body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .news-modal__panel {
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    left: 0;
    top: 0;
    transform: none;
    border-radius: 0;
  }
  .news-modal__scroll {
    max-height: 100dvh;
    padding: 20px 16px 28px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .news-modal__title { font-size: 20px; }
}
