@charset "UTF-8";
:root {
  /* Radius Scale */
  --kavv-radius-sm: 4px;
  --kavv-radius-md: 8px;
  --kavv-radius-lg: 8px;
  --kavv-radius-full: 9999px;
  /* Spacing Scale */
  --kavv-spacing-1: 0.5rem;
  --kavv-spacing-2: 0.75rem;
  --kavv-spacing-3: 1rem;
  --kavv-spacing-4: 1.5rem;
  --kavv-spacing-5: 2rem;
  /* Font Size Scale */
  --kavv-font-size-xs: 0.75rem;
  --kavv-font-size-sm: 0.875rem;
  --kavv-font-size-base: 1rem;
  --kavv-font-size-lg: 1.125rem;
  --kavv-font-size-xl: 1.25rem;
  --kavv-font-size-2xl: 1.5rem;
  --kavv-font-size-3xl: 2rem;
  /* Dark Mode (Primary — TeknoBayt Default) */
  --kavv-color-bg: #0B0E13;
  --kavv-color-surface: rgba(255, 255, 255, 0.04);
  --kavv-color-surface-solid: #141820;
  --kavv-color-surface-glass: rgba(255, 255, 255, 0.03);
  --kavv-color-border: rgba(255, 255, 255, 0.08);
  --kavv-color-text: #ffffff;
  --kavv-color-text-muted: rgba(255, 255, 255, 0.55);
  --kavv-color-primary: #00a8ff;
  --kavv-color-primary-rgb: 0, 168, 255;
  --kavv-color-secondary-accent: #00a8ff;
  --kavv-color-secondary: #1a1f2b;
}

[data-theme=light] {
  /* Light Mode Overrides */
  --kavv-color-bg: #f5f7fa;
  --kavv-color-surface: #ffffff;
  --kavv-color-surface-solid: #ebedf0;
  --kavv-color-surface-glass: rgba(0, 0, 0, 0.02);
  --kavv-color-border: rgba(0, 0, 0, 0.1);
  --kavv-color-text: #1a1a1a;
  --kavv-color-text-muted: rgba(0, 0, 0, 0.55);
  --kavv-color-primary: #00a8ff;
  --kavv-color-primary-rgb: 0, 168, 255;
  --kavv-color-secondary-accent: #00a8ff;
  --kavv-color-secondary: #e0e0e0;
}

.kavv-site-width,
.kavv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.kavv-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.kavv-content-area {
  flex: 1 1 62%;
  min-width: 0;
  max-width: calc(68% - 0.75rem);
}

.kavv-sidebar {
  flex: 1 1 32%;
  min-width: 280px;
  max-width: 380px;
  border-left: 1px solid var(--kavv-color-border);
  padding-left: 1.5rem;
}

.kavv-container--wide .kavv-content-area,
.error-content-area {
  flex: 1 1 100%;
}

/* Header & Footer layout rules live in their own partials.
   This file only handles content-area layout concerns. */
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero wrapper — full width, breaks out of flex content/sidebar flow */
.home-hero-wrapper {
  flex-basis: 100%;
  min-width: 0;
  width: 100%;
}

@media (max-width: 1023px) {
  .kavv-container {
    display: block;
  }
  .kavv-content-area,
  .kavv-sidebar {
    width: 100%;
    min-width: 0;
    max-width: none;
    border-left: 0;
    padding-left: 0;
  }
}
/* Typography System */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--kavv-color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--kavv-color-text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

/* Article Typography Rhythm */
.entry-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.entry-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Meta Text — using token vars instead of hardcoded colors */
.meta-text {
  font-size: var(--kavv-font-size-sm);
  color: var(--kavv-color-text-muted);
}

/* Utilities and Spacing Rhythm */
.kavv-section-spacing {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.kavv-mb-1 {
  margin-bottom: 0.75rem;
}

.kavv-mb-2 {
  margin-bottom: 1.5rem;
}

.kavv-mb-3 {
  margin-bottom: 2rem;
}

.kavv-mt-3 {
  margin-top: 2rem;
}

.kavv-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.kavv-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.kavv-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.kavv-title-bar {
  border-left: 4px solid var(--kavv-color-primary);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kavv-color-text);
}

/* Base Reusable Components */
/* Section Heading */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.section-heading .section-title {
  border-left: 4px solid var(--kavv-color-primary);
  padding-left: 0.75rem;
  font-size: 1.28rem;
  font-weight: 850;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--kavv-color-text);
}

.search-form {
  display: flex;
  width: 100%;
}
.search-form label {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.search-form .search-field {
  width: 100%;
  height: 54px;
  padding: 0 1rem;
  color: var(--kavv-color-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-md) 0 0 var(--kavv-radius-md);
  outline: none;
}
.search-form .search-submit {
  min-width: 72px;
  border: 0;
  border-radius: 0 var(--kavv-radius-md) var(--kavv-radius-md) 0;
  background: var(--kavv-color-primary);
  color: #fff;
  font-weight: 850;
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--kavv-color-primary);
  outline-offset: 2px;
}

/* Category Chip — Pill Shape */
.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.65rem;
  background: rgba(var(--kavv-color-primary-rgb), 0.14);
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.28);
  color: var(--kavv-color-primary) !important;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--kavv-radius-full);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0;
}
.category-chip:hover {
  background: rgba(var(--kavv-color-primary-rgb), 0.22);
  border-color: rgba(var(--kavv-color-primary-rgb), 0.42);
  color: #fff !important;
  text-decoration: none;
}

/* Base Buttons */
.kavv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--kavv-color-primary);
  color: #fff;
  border: none;
  border-radius: var(--kavv-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.kavv-btn:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

/* Icon Buttons (Search, Theme Toggle) */
.icon-btn {
  background: transparent;
  border: none;
  color: var(--kavv-color-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn:hover {
  background-color: var(--kavv-color-surface);
}

/* Horizontal Card — Son Haberler feed */
.kavv-card.is-horizontal {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--kavv-color-border);
}
.kavv-card.is-horizontal:last-child {
  border-bottom: none;
}
.kavv-card.is-horizontal .card-thumbnail--landscape {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--kavv-radius-md);
  overflow: hidden;
}
.kavv-card.is-horizontal .card-thumbnail--landscape a {
  display: block;
  width: 100%;
  height: 100%;
}
.kavv-card.is-horizontal .card-thumbnail--landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.kavv-card.is-horizontal .card-thumbnail--landscape:hover img {
  transform: scale(1.05);
}
.kavv-card.is-horizontal .card-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #242933, #0b0e13);
}
.kavv-card.is-horizontal .card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
}
.kavv-card.is-horizontal .card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}
.kavv-card.is-horizontal .card-title a {
  color: var(--kavv-color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.kavv-card.is-horizontal .card-title a:hover {
  color: var(--kavv-color-primary);
}
.kavv-card.is-horizontal .card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--kavv-color-text-muted);
}
.kavv-card.is-horizontal .card-meta .meta-separator {
  color: var(--kavv-color-border);
}
.kavv-card.is-horizontal .card-meta .category-chip {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
}
.kavv-card.is-horizontal .card-excerpt {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--kavv-color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .kavv-card.is-horizontal .card-thumbnail--landscape {
    width: 120px;
    height: 85px;
  }
  .kavv-card.is-horizontal .card-title {
    font-size: 0.95rem;
  }
  .kavv-card.is-horizontal .card-excerpt {
    display: none;
  }
}

/* Article Card System */
.kavv-card {
  display: flex;
  flex-direction: column;
  background: var(--kavv-color-surface);
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.kavv-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--kavv-color-primary-rgb), 0.3);
  background: rgba(255, 255, 255, 0.045);
}
.kavv-card:hover .card-title a {
  color: var(--kavv-color-primary);
}
.kavv-card .card-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: var(--kavv-radius-md);
  margin-bottom: 0;
  aspect-ratio: 16/9;
}
.kavv-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kavv-card .card-thumbnail .category-chip {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
}
.kavv-card .card-thumbnail .card-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--kavv-color-secondary);
}
.kavv-card .card-title {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  line-height: 1.18;
  font-weight: 850;
}
.kavv-card .card-title a {
  color: var(--kavv-color-text);
  transition: color 0.2s;
  overflow-wrap: anywhere;
}

/* Variations */
/* Hero Card (Large, Overlay style often) */
.kavv-card.is-hero .card-title {
  font-size: 2rem;
}

/* Standard Card (Default grid card) */
.kavv-card.is-standard {
  min-height: 100%;
}
.kavv-card.is-standard .card-content {
  padding: 0.9rem 1rem 1rem;
}
.kavv-card.is-standard .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Compact Card (List style — sidebar thumbnails) */
.kavv-card.is-compact {
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
}
.kavv-card.is-compact .card-thumbnail {
  width: 96px;
  flex-shrink: 0;
  margin-bottom: 0;
  border-radius: var(--kavv-radius-sm);
}
.kavv-card.is-compact .card-title {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.18;
}

/* Overlay Card (Text over image — Popüler Haberler style) */
.kavv-card.is-overlay {
  position: relative;
  border-radius: var(--kavv-radius-md);
  overflow: hidden;
}
.kavv-card.is-overlay .card-thumbnail {
  margin-bottom: 0;
  border-radius: 0;
}
.kavv-card.is-overlay .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
}
.kavv-card.is-overlay .card-title a {
  color: #fff;
}
.kavv-card.is-overlay .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0;
}
.kavv-card.is-overlay .meta-text {
  display: none;
}

/* Horizontal Card (Son Haberler feed style) */
.kavv-card.is-horizontal {
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
  padding: 0.75rem;
}
.kavv-card.is-horizontal .card-thumbnail {
  width: 210px;
  flex-shrink: 0;
  border-radius: var(--kavv-radius-md);
  aspect-ratio: 16/9;
}
.kavv-card.is-horizontal .card-body,
.kavv-card.is-horizontal .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
}
.kavv-card.is-horizontal .card-title {
  font-size: 1.28rem;
  font-weight: 850;
  margin-bottom: 0;
  line-height: 1.16;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.kavv-card.is-horizontal .card-excerpt {
  color: var(--kavv-color-text-muted);
  font-size: var(--kavv-font-size-sm);
  line-height: 1.5;
}
.kavv-card.is-horizontal .card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--kavv-font-size-sm);
}
.kavv-card.is-horizontal .card-meta .category-chip {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
}
.kavv-card.is-horizontal .card-meta .meta-separator {
  color: var(--kavv-color-text-muted);
}
.kavv-card.is-horizontal .card-meta .meta-date {
  color: var(--kavv-color-text-muted);
}
@media (max-width: 600px) {
  .kavv-card.is-horizontal {
    gap: 0.7rem;
  }
  .kavv-card.is-horizontal .card-thumbnail {
    width: 122px;
  }
  .kavv-card.is-horizontal .card-title {
    font-size: 1.05rem;
    line-height: 1.22;
    -webkit-line-clamp: 3;
  }
  .kavv-card.is-horizontal .card-excerpt {
    display: none;
  }
}

@media (max-width: 600px) {
  .kavv-latest-news .kavv-card.is-horizontal {
    flex-direction: column;
    padding: 0.55rem;
    gap: 0.7rem;
  }
  .kavv-latest-news .kavv-card.is-horizontal .card-thumbnail {
    width: 100%;
    min-height: 185px;
    aspect-ratio: 16/9;
    border-radius: var(--kavv-radius-md);
  }
  .kavv-latest-news .kavv-card.is-horizontal .card-body,
  .kavv-latest-news .kavv-card.is-horizontal .card-content {
    padding: 0 0.2rem 0.15rem;
  }
  .kavv-latest-news .kavv-card.is-horizontal .card-title {
    font-size: 1rem;
  }
  .kavv-card.is-standard .card-thumbnail,
  .archive-main .kavv-card.is-horizontal .card-thumbnail,
  .category-main .kavv-card.is-horizontal .card-thumbnail,
  .search-main .kavv-card.is-horizontal .card-thumbnail,
  .author-main .kavv-card.is-horizontal .card-thumbnail {
    width: 100%;
    min-height: 180px;
    aspect-ratio: 16/9;
  }
}
/* Header */
.site-header {
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(var(--kavv-color-primary-rgb), 0.65);
  background: #090a0c;
}

.site-header--sticky {
  position: sticky;
  top: 0;
}

.site-header-top {
  background: #090a0c;
  color: #fff;
}

.header-top-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 92px;
  gap: 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-branding .custom-logo,
.site-branding .site-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(460px, 44vw);
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}
.site-branding .site-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(460px, 44vw);
  max-height: 86px;
  overflow: hidden;
}
.site-branding .site-logo-img--light {
  display: none;
}

[data-theme=light] .site-branding .site-logo-img--dark:not(:only-child) {
  display: none;
}
[data-theme=light] .site-branding .site-logo-img--light {
  display: block;
}
.site-branding .site-logo-text {
  color: #fff;
  font-size: clamp(2.65rem, 4.7vw, 4.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.site-branding .logo-o {
  color: var(--kavv-color-primary);
}
.site-branding .logo-bayt {
  color: #fff;
}

.site-utilities,
.header-actions,
.header-social-links {
  display: flex;
  align-items: center;
}

.social-icon,
.social-follow-icon,
.footer-social-btn svg,
.share-btn svg,
.author-social-icon svg {
  color: currentColor;
}

.site-utilities {
  gap: 0.75rem;
  min-width: 0;
}

.header-social-links {
  gap: 0.4rem;
}
.header-social-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.header-social-links .social-icon svg {
  width: 16px;
  height: 16px;
}
.header-social-links .social-icon:hover {
  color: #fff;
  background: rgba(var(--kavv-color-primary-rgb), 0.16);
  border-color: rgba(var(--kavv-color-primary-rgb), 0.4);
  text-decoration: none;
}

.header-network {
  position: relative;
}
.header-network:hover .network-panel, .header-network:focus-within .network-panel, .header-network.is-open .network-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.network-trigger {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.network-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 50;
  width: calc(var(--network-columns, 1) * 160px + (var(--network-columns, 1) - 1) * 0.65rem + 1.7rem);
  min-width: 0;
  max-width: calc(100vw - 2rem);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(13, 16, 22, 0.96);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.network-panel {
  display: grid;
  grid-template-columns: repeat(var(--network-columns, 1), minmax(0, 160px));
  grid-template-rows: repeat(var(--network-rows, 1), minmax(72px, auto));
  grid-auto-flow: column;
  gap: 0.65rem;
}

.network-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  min-height: 72px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.network-site:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  text-decoration: none;
}
.network-site:hover .network-mark {
  color: #fff;
  border-color: transparent;
  background: transparent;
}
.network-site:hover .network-logo--mono {
  opacity: 0;
}
.network-site:hover .network-logo--color {
  opacity: 1;
}

.network-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 116px;
  height: 48px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.network-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.network-logo--mono,
.network-logo--color {
  position: absolute;
  inset: 0;
}

.network-logo--color {
  opacity: 0;
}

.network-logo--mono {
  opacity: 0.64;
  filter: grayscale(1) saturate(0) brightness(0.82);
}

.header-actions {
  gap: 0.5rem;
  min-width: 0;
}
.header-actions .icon-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header-actions .icon-btn:hover {
  background: var(--kavv-color-primary);
  color: #fff;
}

.header-inline-search {
  display: flex;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.22s ease, opacity 0.18s ease;
}
.header-inline-search.is-open {
  width: min(320px, 30vw);
  opacity: 1;
}
.header-inline-search input[type=search] {
  width: 100%;
  height: 36px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}

.site-header-nav {
  background: #232323;
  border-bottom: 4px solid var(--kavv-color-primary);
}

.header-nav-inner {
  display: flex;
  align-items: center;
}

.menu-toggle,
.mobile-menu-close {
  display: none;
}

.main-navigation {
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation > .menu,
.main-navigation > ul,
.main-navigation > div > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  padding: 1.1rem 0.95rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current-post-ancestor > a {
  color: #fff;
  background: var(--kavv-color-primary);
  text-decoration: none;
}
.main-navigation .sub-menu,
.main-navigation .children {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 230px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 14px 14px;
  background: rgba(15, 18, 24, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.main-navigation .sub-menu a,
.main-navigation .children a {
  padding: 0.75rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  text-transform: none;
}
.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu,
.main-navigation li:hover > .children,
.main-navigation li:focus-within > .children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-toggle {
  display: none;
}

[data-theme=light] .site-header,
[data-theme=light] .site-header-top {
  background: #f7f8fb;
}
[data-theme=light] .site-logo-text,
[data-theme=light] .network-trigger,
[data-theme=light] .header-actions .icon-btn,
[data-theme=light] .header-social-links .social-icon,
[data-theme=light] .menu-toggle {
  color: #0b0e13;
}
[data-theme=light] .site-branding .logo-bayt,
[data-theme=light] .site-branding .logo-tekno {
  color: #0b0e13;
}
[data-theme=light] .network-trigger,
[data-theme=light] .header-actions .icon-btn,
[data-theme=light] .header-social-links .social-icon {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.12);
}
[data-theme=light] .header-inline-search input[type=search] {
  color: #0b0e13;
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.12);
}
[data-theme=light] .header-inline-search input[type=search]::placeholder {
  color: rgba(0, 0, 0, 0.55);
}
[data-theme=light] .network-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 22px 50px rgba(7, 16, 24, 0.16);
}
[data-theme=light] .network-mark {
  color: #0b0e13;
}

@media (max-width: 700px) {
  .network-panel {
    width: min(320px, 100vw - 2rem);
    grid-template-columns: 1fr;
  }
  .network-site {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .site-header-top {
    position: relative;
    z-index: 1001;
  }
  .header-top-inner {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 60px;
    gap: 0.4rem;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .site-branding {
    justify-content: center;
  }
  .site-branding .custom-logo,
  .site-branding .site-logo-img,
  .site-branding .site-logo-link {
    max-height: 48px;
  }
  .site-branding .custom-logo,
  .site-branding .site-logo-img {
    max-width: min(300px, 58vw);
  }
  .site-branding .site-logo-link {
    max-width: min(300px, 58vw);
  }
  .site-branding .site-logo-text {
    font-size: 1.6rem;
  }
  .site-utilities {
    display: flex;
    gap: 0;
    justify-content: flex-end;
  }
  .header-social-links,
  .header-network {
    display: none;
  }
  .header-actions {
    gap: 0.25rem;
  }
  .header-actions .icon-btn {
    width: 38px;
    height: 38px;
  }
  .header-inline-search {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: auto;
    z-index: 20;
    width: min(320px, 100vw - 2rem);
    max-width: 320px;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .header-inline-search.is-open {
    width: min(320px, 100vw - 2rem);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header-inline-search input[type=search] {
    height: 42px;
    background: #05080b;
    color: #ffffff;
    border-color: var(--kavv-color-primary);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
  }
  .header-inline-search input[type=search]::placeholder {
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
  }
  [data-theme=light] .header-inline-search input[type=search] {
    background: #ffffff;
    color: #0b0e13;
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 14px 32px rgba(7, 16, 24, 0.14);
  }
  [data-theme=light] .header-inline-search input[type=search]::placeholder {
    color: rgba(11, 14, 19, 0.56);
    opacity: 1;
  }
  .site-header-nav {
    background: transparent;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    width: min(84vw, 340px);
    height: 100vh;
    padding: 4.2rem 1rem 1.2rem;
    background: rgba(10, 13, 18, 0.98);
    border-right: 1px solid rgba(var(--kavv-color-primary-rgb), 0.28);
    box-shadow: none;
    transform: translateX(calc(-100% - 70px));
    transition: transform 0.22s ease;
    overflow-y: auto;
  }
  .main-navigation.toggled {
    box-shadow: 20px 0 55px rgba(0, 0, 0, 0.5);
    transform: translateX(0);
  }
  .main-navigation > .menu,
  .main-navigation > ul,
  .main-navigation > div > ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .main-navigation a {
    padding: 0.85rem 0.7rem;
    border-radius: 10px;
  }
  .main-navigation .sub-menu,
  .main-navigation .children {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0.35rem 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-navigation .submenu-open > .sub-menu,
  .main-navigation .submenu-open > .children {
    display: block;
  }
  .mobile-menu-close {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
  }
  .submenu-toggle {
    position: absolute;
    top: 0.45rem;
    right: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 900;
  }
  .mobile-menu-open::after {
    content: none;
    display: none;
  }
  [data-theme=light] .main-navigation {
    background: rgba(255, 255, 255, 0.98);
    border-right-color: rgba(var(--kavv-color-primary-rgb), 0.32);
    box-shadow: none;
  }
  [data-theme=light] .main-navigation.toggled {
    box-shadow: 20px 0 55px rgba(7, 16, 24, 0.18);
  }
  [data-theme=light] .main-navigation a,
  [data-theme=light] .main-navigation .submenu-toggle,
  [data-theme=light] .main-navigation .mobile-menu-close {
    color: #071018;
  }
  [data-theme=light] .main-navigation .submenu-toggle,
  [data-theme=light] .main-navigation .mobile-menu-close {
    background: rgba(0, 0, 0, 0.055);
    border-color: rgba(0, 0, 0, 0.1);
  }
  [data-theme=light] .mobile-menu-open::after {
    content: none;
    display: none;
  }
}
/* Footer Visual Foundation */
.site-footer {
  background-color: var(--kavv-color-surface-solid);
  padding: 1.25rem 0 0.9rem;
  margin-top: 1.5rem;
  border-top: 2px solid var(--kavv-color-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    text-align: left;
  }
}

.footer-column .footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(330px, 76vw);
  max-height: 68px;
  margin-bottom: 0.85rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.footer-column .footer-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(330px, 76vw);
  max-height: 68px;
  object-fit: contain;
  object-position: center;
}

.footer-column h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--kavv-color-text);
  border-left: 0;
  padding-left: 0;
}
.footer-column h3::before {
  content: "";
  width: 4px;
  height: 1.25em;
  background: var(--kavv-color-primary);
  flex: 0 0 auto;
}
.footer-column p {
  color: var(--kavv-color-text-muted);
  font-size: var(--kavv-font-size-sm);
  line-height: 1.6;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 0.3rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--kavv-color-border);
}
.footer-column ul a {
  color: var(--kavv-color-text);
  text-decoration: none;
  font-size: var(--kavv-font-size-sm);
}
.footer-column ul a:hover {
  color: var(--kavv-color-primary);
}

/* Footer Social Grid — 2x3 branded buttons */
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 44px;
  padding: 0;
  background: #0b0e13;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-md);
  text-decoration: none;
  color: #fff;
  font-size: var(--kavv-font-size-sm);
  font-weight: 600;
  transition: border-color 0.2s, transform 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--kavv-color-primary);
  color: var(--kavv-color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}
.footer-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-social-btn svg {
  color: currentColor;
}

.footer-network-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.footer-network-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 70px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.footer-network-btn img,
.footer-network-btn .network-logo {
  position: static;
  width: auto;
  height: auto;
  display: block;
  max-width: 92px;
  max-height: 26px;
  object-fit: contain;
  transition: opacity 0.2s, filter 0.2s;
}
.footer-network-btn .network-logo--mono {
  filter: grayscale(1) saturate(0) brightness(0.82);
  opacity: 0.62;
}
.footer-network-btn .network-logo--color {
  position: absolute;
  inset: auto;
  opacity: 0;
  filter: none;
}
.footer-network-btn span {
  font-weight: 850;
  font-size: var(--kavv-font-size-xs);
}
.footer-network-btn:hover .network-logo--mono {
  opacity: 0;
}
.footer-network-btn:hover .network-logo--color {
  opacity: 1;
}

[data-theme=light] .footer-social-btn {
  background: #fff;
  color: #071018;
}

.site-info {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--kavv-color-border);
  text-align: center;
  font-size: var(--kavv-font-size-sm);
  color: var(--kavv-color-text-muted);
}

/* _modules.scss */
/* 1. Self-Contained 3-Column Hero Module */
.kavv-hero-module {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .kavv-hero-module {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr) 205px;
    gap: 0.75rem;
    min-height: 500px;
  }
}

/* Hero Editorial Rails (left & right) */
.hero-rail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1023px) {
  .hero-rail {
    display: none;
  }
}

.hero-rail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--kavv-color-border);
  text-decoration: none;
  color: var(--kavv-color-text);
  transition: color 0.2s;
}
.hero-rail-item:last-child {
  border-bottom: none;
}
.hero-rail-item:hover {
  color: var(--kavv-color-primary);
}
.hero-rail-item:hover .hero-rail-title, .hero-rail-item:focus-visible .hero-rail-title {
  color: var(--kavv-color-primary);
}
.hero-rail-item:hover .hero-rail-thumb img {
  transform: scale(1.05);
}

.hero-rail-thumb {
  width: 80px;
  height: 55px;
  flex-shrink: 0;
  border-radius: var(--kavv-radius-sm);
  overflow: hidden;
}
.hero-rail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-rail-thumb--placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #242933, #0b0e13);
}

.hero-rail-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hero Center Slider */
.hero-slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
  order: -1;
}
@media (min-width: 1024px) {
  .hero-slider {
    min-height: 500px;
    order: 0;
  }
}
@media (max-width: 1023px) {
  .hero-slider {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
}

.hero-slider-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .hero-slider-viewport {
    aspect-ratio: 16/10.5;
    height: auto;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-bg--placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #242933, #0b0e13);
}
@media (min-width: 1024px) {
  .hero-slide-bg {
    min-height: 500px;
  }
}

.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 3.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-slide-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}
.hero-slide-title a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .hero-slide-title {
    font-size: 2.35rem;
  }
}
@media (max-width: 600px) {
  .hero-slide-title {
    font-size: 1rem;
    line-height: 1.15;
  }
}

.hero-slide-overlay:hover .hero-slide-title a,
.hero-slide-overlay:focus-within .hero-slide-title a,
.hero-slide-title a:hover,
.hero-slide-title a:focus {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

/* Slider Pagination */
.hero-slider-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0;
  z-index: 10;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(8px);
}
@media (max-width: 1023px) {
  .hero-slider-pagination {
    position: relative;
    overflow-x: auto;
    display: flex;
    scrollbar-width: none;
  }
  .hero-slider-pagination::-webkit-scrollbar {
    display: none;
  }
}

.hero-slider-dot {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-slider-dot.is-active {
  background: var(--kavv-color-primary);
}
.hero-slider-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1023px) {
  .hero-slider-dot {
    flex: 0 0 52px;
  }
}

@media (max-width: 600px) {
  .kavv-hero-module {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .hero-slide-overlay {
    padding: 1rem 1rem 2.75rem;
  }
  .hero-slider-dot {
    height: 34px;
    font-size: 0.62rem;
  }
}
/* Son Haberler Feed */
.kavv-latest-news .latest-news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kavv-latest-news .latest-news-more {
  text-align: center;
  margin-top: 1.25rem;
}

/* Sidebar: Popüler Haberler — Overlay Cards */
.kavv-sidebar-popular .sidebar-popular-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.overlay-card {
  display: block;
  position: relative;
  border-radius: var(--kavv-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 16/10;
}
.overlay-card:hover .overlay-card-image img {
  transform: scale(1.05);
}

.category-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.category-grid--lead-4 {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 420px;
}
.category-grid--lead-4 .category-grid-lead {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
}
.category-grid--lead-4 .category-grid-side--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.category-grid--lead-4 .category-grid-side--compact,
.category-grid--lead-4 .kavv-card {
  height: 100%;
}
.category-grid--lead-4 .category-grid-lead-secondary {
  display: block;
}
.category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact {
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding: 0.65rem;
}
.category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
}
.category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-content {
  min-width: 0;
}
.category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-title {
  font-size: 0.96rem;
  line-height: 1.18;
}

.kavv-category-section .kavv-card .card-title,
.kavv-category-section .overlay-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kavv-category-section .kavv-card.is-standard .card-title {
  -webkit-line-clamp: 3;
}
.kavv-category-section .kavv-card.is-compact .card-title,
.kavv-category-section .overlay-card-title {
  -webkit-line-clamp: 3;
}
.kavv-category-section .kavv-card.is-compact {
  min-height: 0;
}
.kavv-category-section .section-title a {
  color: inherit;
  text-decoration: none;
}
.kavv-category-section .section-title a:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

.category-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(270px, 1fr);
}

.category-grid--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: 360px;
}
.category-grid--split .category-grid-side {
  display: grid;
  gap: 1rem;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.category-grid--split .kavv-card.is-overlay {
  min-height: 0;
  height: 100%;
}
.category-grid--split .category-grid-lead,
.category-grid--split .category-grid-lead .kavv-card {
  height: 100%;
}

.kavv-category-section--split-right .category-grid--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.kavv-promo-card .card-thumbnail {
  aspect-ratio: 4/5;
}
.kavv-promo-card .card-thumbnail img,
.kavv-promo-card .card-thumbnail .card-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kavv-promo-card .card-content {
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}
.kavv-promo-card .card-title {
  font-size: 1.1rem;
  margin: 0;
}
.kavv-promo-card .promo-badge,
.kavv-promo-card .promo-expiry {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}
.kavv-promo-card .promo-badge {
  left: 12px;
  background: rgba(var(--kavv-color-primary-rgb), 0.2);
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.4);
}
.kavv-promo-card .promo-expiry {
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-card-image {
  position: absolute;
  inset: 0;
}
.overlay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.overlay-card-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #242933, #0b0e13);
}

.overlay-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.overlay-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-mobile-priority {
  display: none;
}

/* 2. Share Inline */
.kavv-share-row {
  display: flex;
  align-items: center;
  gap: var(--kavv-spacing-2);
}
.kavv-share-row .share-row-label {
  font-weight: 600;
  font-size: var(--kavv-font-size-sm);
  color: var(--kavv-color-text-muted);
}
.kavv-share-row .share-row-buttons {
  display: flex;
  gap: 0.5rem;
}
.kavv-share-row .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--kavv-radius-full);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.kavv-share-row .share-btn svg {
  width: 18px;
  height: 18px;
}
.kavv-share-row .share-btn-x {
  background: #000;
}
.kavv-share-row .share-btn-whatsapp {
  background: #25D366;
}
.kavv-share-row .share-btn-facebook {
  background: #1877F2;
}
.kavv-share-row .share-btn-instagram {
  background: #E1306C;
}
.kavv-share-row .share-btn-linkedin {
  background: #0A66C2;
}
.kavv-share-row .share-btn-nsosyal {
  background: #111827;
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.45);
}
.kavv-share-row .share-btn-copy {
  background: var(--kavv-color-surface);
  color: var(--kavv-color-text);
  border: 1px solid var(--kavv-color-border);
}
.kavv-share-row .share-btn .copy-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--kavv-color-text);
  color: var(--kavv-color-bg);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.kavv-share-row .share-btn.copied .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

/* 3. Author Card & Mini */
.kavv-author-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.kavv-author-mini .author-mini-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.kavv-author-mini .author-mini-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--kavv-font-size-sm);
}
.kavv-author-mini .author-mini-label {
  color: var(--kavv-color-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.kavv-author-mini .author-mini-name {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}
.kavv-author-mini .author-mini-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--kavv-color-border);
}
.kavv-author-mini .author-mini-date {
  color: var(--kavv-color-text-muted);
}

.kavv-author-card {
  display: flex;
  gap: var(--kavv-spacing-3);
  padding: var(--kavv-spacing-3);
  background: var(--kavv-color-surface);
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
}
.kavv-author-card .author-card-avatar {
  flex-shrink: 0;
}
.kavv-author-card .author-card-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.kavv-author-card .author-card-body {
  flex: 1;
}
.kavv-author-card .author-card-header {
  margin-bottom: 0.5rem;
}
.kavv-author-card .author-card-eyebrow {
  font-size: var(--kavv-font-size-xs);
  color: var(--kavv-color-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.kavv-author-card .author-card-name {
  font-size: var(--kavv-font-size-lg);
  margin: 0;
}
.kavv-author-card .author-card-name a {
  color: inherit;
  text-decoration: none;
}
.kavv-author-card .author-card-bio {
  font-size: var(--kavv-font-size-sm);
  color: var(--kavv-color-text-muted);
  margin-bottom: 1rem;
}
.kavv-author-card .author-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.kavv-author-card .author-card-archive {
  font-size: var(--kavv-font-size-sm);
  font-weight: 600;
  color: var(--kavv-color-primary);
  text-decoration: none;
}
.kavv-author-card .author-social-icons {
  display: flex;
  gap: 0.5rem;
}
.kavv-author-card .author-social-icon {
  color: var(--kavv-color-text-muted);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.kavv-author-card .author-social-icon svg {
  width: 18px;
  height: 18px;
}
.kavv-author-card .author-social-icon:hover {
  color: var(--kavv-color-primary);
}
@media (max-width: 600px) {
  .kavv-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .kavv-author-card .author-card-footer {
    justify-content: center;
  }
}

/* 4. Social Follow Module */
.kavv-module-social-follow {
  padding: 1rem;
  border-radius: var(--kavv-radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--kavv-color-border);
}
.kavv-module-social-follow .social-follow-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.85rem;
}
.kavv-module-social-follow .social-follow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}
.kavv-module-social-follow .social-follow-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.kavv-module-social-follow .social-follow-card:hover {
  border-color: var(--kavv-color-primary);
  transform: translateY(-2px);
}
.kavv-module-social-follow .social-follow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.kavv-module-social-follow .social-follow-icon svg {
  width: 100%;
  height: 100%;
}
.kavv-module-social-follow .social-follow-label {
  display: none;
  font-size: var(--kavv-font-size-sm);
  font-weight: 600;
}
.kavv-module-social-follow .social-network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.kavv-module-social-follow .social-network-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}
.kavv-module-social-follow .social-network-card img,
.kavv-module-social-follow .social-network-card .network-logo {
  position: static;
  width: auto;
  height: auto;
  display: block;
  max-width: 120px;
  max-height: 34px;
  object-fit: contain;
  transition: opacity 0.2s, filter 0.2s;
}
.kavv-module-social-follow .social-network-card .network-logo--mono {
  filter: grayscale(1) saturate(0) brightness(0.82);
  opacity: 0.62;
}
.kavv-module-social-follow .social-network-card .network-logo--color {
  position: absolute;
  inset: auto;
  opacity: 0;
  filter: none;
}
.kavv-module-social-follow .social-network-card span {
  font-weight: 850;
  font-size: var(--kavv-font-size-xs);
}
.kavv-module-social-follow .social-network-card:hover {
  border-color: var(--kavv-color-primary);
  transform: translateY(-2px);
}
.kavv-module-social-follow .social-network-card:hover .network-logo--mono {
  opacity: 0;
}
.kavv-module-social-follow .social-network-card:hover .network-logo--color {
  opacity: 1;
}
.kavv-module-social-follow .social-follow-x {
  color: var(--kavv-color-text);
}
.kavv-module-social-follow .social-follow-instagram {
  color: #E1306C;
}
.kavv-module-social-follow .social-follow-youtube {
  color: #FF0000;
}
.kavv-module-social-follow .social-follow-nsosyal {
  color: var(--kavv-color-primary);
}
.kavv-module-social-follow .social-follow-tiktok {
  color: #ff0050;
}
.kavv-module-social-follow .social-follow-facebook {
  color: #1877F2;
}

.kavv-instagram-feed {
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.12), rgba(255, 220, 128, 0.08)), var(--kavv-color-surface);
}
.kavv-instagram-feed .section-heading {
  align-items: center;
  margin-bottom: 0.75rem;
}
.kavv-instagram-feed .section-link {
  font-size: var(--kavv-font-size-xs);
  font-weight: 750;
  color: #e1306c;
  text-decoration: none;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.instagram-feed-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--kavv-radius-md);
  background: rgba(255, 255, 255, 0.06);
}
.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.instagram-feed-item:hover img {
  transform: scale(1.06);
}

.instagram-feed-fallback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(225, 48, 108, 0.35);
  border-radius: var(--kavv-radius-md);
  color: var(--kavv-color-text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}
.instagram-feed-fallback strong,
.instagram-feed-fallback small {
  display: block;
}
.instagram-feed-fallback small {
  margin-top: 0.15rem;
  color: var(--kavv-color-text-muted);
  font-size: var(--kavv-font-size-xs);
  line-height: 1.35;
}

.instagram-feed-fallback__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
}
.instagram-feed-fallback__icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-latest-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* 5. Inline Related */
.kavv-inline-related {
  background: var(--kavv-color-surface);
  border-radius: var(--kavv-radius-md);
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
}
.kavv-inline-related .inline-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.kavv-inline-related .inline-related-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  color: var(--kavv-color-text);
  text-decoration: none;
}
.kavv-inline-related .inline-related-thumb {
  width: 84px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--kavv-radius-sm);
  overflow: hidden;
}
.kavv-inline-related .inline-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kavv-inline-related .inline-related-placeholder {
  width: 100%;
  height: 100%;
  background: var(--kavv-color-secondary);
}
.kavv-inline-related .inline-related-label {
  display: block;
  font-size: var(--kavv-font-size-xs);
  color: var(--kavv-color-primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
.kavv-inline-related .inline-related-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
}

.kavv-inline-related--videos {
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: var(--kavv-radius-lg);
  background: color-mix(in srgb, var(--kavv-color-surface) 82%, #071018);
}
.kavv-inline-related--videos .inline-related-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-weight: 850;
  color: var(--kavv-color-text);
}
.kavv-inline-related--videos .inline-related-label::before {
  content: "";
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: var(--kavv-color-primary);
}
.kavv-inline-related--videos .inline-related-grid {
  gap: 0.85rem;
}
.kavv-inline-related--videos .inline-related-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--kavv-radius-md);
  background: #071018;
  color: #fff;
}
.kavv-inline-related--videos .inline-related-card:hover {
  text-decoration: none;
}
.kavv-inline-related--videos .inline-related-card:hover .inline-related-thumb img,
.kavv-inline-related--videos .inline-related-card:hover .inline-related-placeholder {
  transform: scale(1.04);
}
.kavv-inline-related--videos .inline-related-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: inherit;
  background: #071018;
}
.kavv-inline-related--videos .inline-related-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.84));
  pointer-events: none;
}
.kavv-inline-related--videos .inline-related-thumb img,
.kavv-inline-related--videos .inline-related-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.kavv-inline-related--videos .inline-related-title {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.16;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.archive-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.archive-inline-ad-slot {
  margin: 1rem 0;
}

.sidebar-slot-ad:not(:has(.kavv-ad)),
.archive-inline-ad-slot:not(:has(.kavv-ad)) {
  display: none;
  margin: 0;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: 999px;
  background: var(--kavv-color-surface);
  color: var(--kavv-color-text);
  font-weight: 800;
  text-decoration: none;
}
.archive-pagination .page-numbers.current, .archive-pagination .page-numbers:hover {
  background: var(--kavv-color-primary);
  border-color: var(--kavv-color-primary);
  color: #fff;
  text-decoration: none;
}

.archive-header,
.author-header {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.archive-main .kavv-container,
.category-main .kavv-container,
.search-main .kavv-container,
.author-main .kavv-container {
  padding-top: clamp(3rem, 6vw, 7rem);
}

.archive-title {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  font-weight: 900;
}

.archive-main .kavv-card.is-horizontal,
.category-main .kavv-card.is-horizontal,
.search-main .kavv-card.is-horizontal {
  padding: 0.9rem;
}
.archive-main .kavv-card.is-horizontal .card-thumbnail,
.category-main .kavv-card.is-horizontal .card-thumbnail,
.search-main .kavv-card.is-horizontal .card-thumbnail {
  width: min(36%, 300px);
}
.archive-main .kavv-card.is-horizontal .card-title,
.category-main .kavv-card.is-horizontal .card-title,
.search-main .kavv-card.is-horizontal .card-title {
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  line-height: 1.08;
}
.archive-main .kavv-card.is-horizontal .card-excerpt,
.category-main .kavv-card.is-horizontal .card-excerpt,
.search-main .kavv-card.is-horizontal .card-excerpt {
  font-size: 1rem;
}

.author-header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--kavv-color-border);
}

.author-page-avatar {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  display: block;
}

.author-page-title {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.author-page-socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.author-page-socials .author-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--kavv-color-border);
  background: var(--kavv-color-surface);
  color: var(--kavv-color-text);
  text-decoration: none;
}
.author-page-socials .author-social-icon svg {
  width: 18px;
  height: 18px;
}
.author-page-socials .author-social-icon:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

.entry-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  font-weight: 850;
}

.entry-hero-image {
  margin: 0;
  border-radius: var(--kavv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--kavv-color-border);
  background: #111;
}
.entry-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.kavv-summary-text {
  max-width: 760px;
  color: var(--kavv-color-text-muted);
  font-size: 1.12rem;
  line-height: 1.72;
  border-left: 3px solid var(--kavv-color-primary);
  padding-left: 1rem;
}
.kavv-summary-text p {
  margin: 0;
}

.kavv-editor-note {
  padding: 1rem 1.1rem;
  border-radius: var(--kavv-radius-md);
  background: rgba(var(--kavv-color-primary-rgb), 0.08);
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.26);
}
.kavv-editor-note .kavv-special-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--kavv-color-primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.kavv-editor-note p {
  margin: 0;
  color: var(--kavv-color-text);
  line-height: 1.65;
}

.entry-content > ul:first-child,
.entry-content > ol:first-child {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem 1rem 2.45rem;
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.24);
  border-radius: var(--kavv-radius-md);
  background: rgba(var(--kavv-color-primary-rgb), 0.07);
  color: var(--kavv-color-text);
  font-weight: 650;
  line-height: 1.6;
}

.entry-post-navigation,
.comments-area {
  padding-top: 1.25rem;
  border-top: 1px solid var(--kavv-color-border);
}

.entry-post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.entry-post-navigation a {
  display: block;
  min-height: 108px;
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: var(--kavv-color-surface);
  color: var(--kavv-color-text);
  text-decoration: none;
}
.entry-post-navigation a:hover {
  border-color: rgba(var(--kavv-color-primary-rgb), 0.45);
  text-decoration: none;
}

.post-nav-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--kavv-color-primary);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.post-nav-title {
  display: block;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.comment-list {
  padding-left: 1.25rem;
}

.comment-form {
  display: grid;
  gap: 0.8rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--kavv-color-border);
  color: var(--kavv-color-text);
  border-radius: var(--kavv-radius-sm);
}
.comment-form input[type=submit] {
  width: auto;
  background: var(--kavv-color-primary);
  border-color: var(--kavv-color-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.5rem 0;
  color: var(--kavv-color-text-muted);
  line-height: 1.45;
}
.comment-form .comment-form-cookies-consent input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--kavv-color-primary);
}
.comment-form .comment-form-cookies-consent label {
  margin: 0;
}

.single-main > .kavv-container {
  padding-top: clamp(2.3rem, 4vw, 4.3rem);
}

[data-theme=light] .kavv-summary-text {
  color: rgba(7, 16, 24, 0.72);
}
[data-theme=light] .kavv-editor-note,
[data-theme=light] .entry-content > ul:first-child,
[data-theme=light] .entry-content > ol:first-child {
  background: rgba(var(--kavv-color-primary-rgb), 0.08);
  border-color: rgba(var(--kavv-color-primary-rgb), 0.26);
  color: #071018;
}
[data-theme=light] .kavv-editor-note p,
[data-theme=light] .entry-content > ul:first-child,
[data-theme=light] .entry-content > ol:first-child {
  color: #071018;
}
[data-theme=light] .comment-form input,
[data-theme=light] .comment-form textarea {
  background: #fff;
  color: #071018;
}

.single-autoload-stream .autoload-article + .autoload-article {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.autoload-sentinel {
  min-height: 1px;
}

.autoload-status {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: var(--kavv-color-text-muted);
  text-align: center;
}

.entry-content-wrapper--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.entry-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--kavv-radius-lg);
  overflow: hidden;
}
.entry-video-player iframe,
.entry-video-player video,
.entry-video-player img,
.entry-video-player .video-embed-wrapper {
  width: 100%;
  height: 100%;
}
.entry-video-player iframe,
.entry-video-player video,
.entry-video-player img {
  display: block;
  object-fit: cover;
}

.entry-video-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: var(--kavv-color-surface);
}
.entry-video-details .entry-meta {
  margin: 0;
}
.entry-video-details .entry-share-row {
  margin: 0;
}
.entry-video-details .kavv-share-row {
  justify-content: flex-end;
}

.video-embed-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-missing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.video-missing-overlay p {
  margin-top: 1rem;
}

.error-content-area {
  text-align: center;
  padding: 4rem 1rem;
}

.error-code {
  font-size: 6rem;
  color: var(--kavv-color-primary);
  font-weight: 850;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.error-search-slot {
  max-width: 400px;
  margin: 0 auto;
}

/* 6. Generic Grid Adjustments for Mobile */
@media (max-width: 768px) {
  .grid-pattern-1x4 .grid-1x4-wrapper,
  .grid-pattern-split .grid-split-wrapper {
    grid-template-columns: 1fr !important;
  }
  .hero-slider-pagination {
    position: relative;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 52px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .hero-slider-pagination::-webkit-scrollbar {
    display: none;
  }
  .category-grid--lead-4,
  .category-grid--2x2,
  .category-grid--split,
  .kavv-category-section--split-right .category-grid--split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .category-grid--lead-4 .category-grid-side--compact {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .category-grid--lead-4 {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }
  .category-grid--lead-4 .category-grid-lead {
    display: grid;
    grid-template-rows: minmax(260px, 1fr) minmax(120px, 0.46fr);
    gap: 0.75rem;
  }
  .category-grid--lead-4 .category-grid-lead-secondary {
    display: block;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card:first-child,
  .category-grid--lead-4 .category-grid-side--compact .kavv-card:nth-child(n+4) {
    display: none;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact {
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-thumbnail {
    width: 100%;
    aspect-ratio: 16/10;
  }
  .author-header {
    align-items: flex-start;
  }
  .author-page-avatar {
    width: 72px;
    height: 72px;
  }
  .home-mobile-priority {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .front-page-main > .kavv-container > .kavv-sidebar {
    display: none;
  }
  .hero-slider-dot {
    flex-basis: 56px;
    height: 38px;
    font-size: 0.78rem;
  }
  .entry-post-navigation .nav-links,
  .kavv-inline-related .inline-related-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Video Grid Module ───────────────────────────── */
.kavv-module-video-grid .video-module-inner {
  width: 100%;
}
.kavv-module-video-grid .video-carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: var(--kavv-color-surface);
}
@media (min-width: 1024px) {
  .kavv-module-video-grid .video-carousel-wrapper {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.6fr) minmax(0, 0.72fr);
    align-items: center;
  }
}
.kavv-module-video-grid .video-carousel-column {
  display: grid;
  gap: 1rem;
}
.kavv-module-video-grid .video-card {
  text-decoration: none;
  color: var(--kavv-color-text);
}
.kavv-module-video-grid .video-card-large {
  width: 100%;
  position: relative;
}
.kavv-module-video-grid .video-card-large .video-card__link {
  display: block;
  height: 100%;
  position: relative;
}
.kavv-module-video-grid .video-card-large .video-card__thumb {
  aspect-ratio: 16/9;
}
.kavv-module-video-grid .video-card-large .video-card__title {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  margin: 0;
  z-index: 10;
}
.kavv-module-video-grid .video-card-small .video-card__link {
  display: block;
  position: relative;
}
.kavv-module-video-grid .video-card-small .video-card__thumb {
  aspect-ratio: 16/10.5;
}
.kavv-module-video-grid .video-card-small .video-card__title {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  z-index: 5;
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}
.kavv-module-video-grid .video-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--kavv-radius-md);
}
.kavv-module-video-grid .video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.kavv-module-video-grid .video-card__thumb--placeholder {
  background: radial-gradient(circle at center, #242933, #0b0e13);
  width: 100%;
  height: 100%;
}
.kavv-module-video-grid .video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.kavv-module-video-grid .video-card__play-icon {
  color: #fff;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.kavv-module-video-grid .video-card__link:hover .video-card__thumb img {
  transform: scale(1.05);
}
.kavv-module-video-grid .video-card__link:hover .video-card__overlay {
  background: rgba(0, 0, 0, 0.5);
}
.kavv-module-video-grid .video-card__link:hover .video-card__play-icon {
  transform: scale(1.1);
  opacity: 1;
}
.kavv-module-video-grid .video-card__link:hover .video-card__title {
  color: var(--kavv-color-primary, #00a8ff);
}

@media (min-width: 1024px) {
  .videos-area {
    clear: both;
    border-top: 1px solid var(--kavv-color-border);
    padding-top: 1.5rem;
  }
}
/* Strict correction pass: cohesive editorial system */
.kavv-hero-module {
  gap: 0;
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.18);
  border-radius: var(--kavv-radius-lg);
  background: linear-gradient(135deg, rgba(10, 15, 24, 0.98), rgba(5, 7, 11, 0.98));
}
@media (min-width: 1024px) {
  .kavv-hero-module {
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 0;
  }
}

.hero-rail {
  padding: 0.75rem;
  min-height: 500px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-rail--left {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-rail--right {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-rail-item {
  flex: 1 1 0;
  min-height: 0;
  gap: 0.7rem;
  padding: 0.7rem 0;
  color: #fff;
}

.hero-rail-thumb {
  width: 92px;
  height: auto;
  aspect-ratio: 16/9;
}

.hero-rail-title {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.22;
  -webkit-line-clamp: 4;
  overflow-wrap: anywhere;
}

.hero-slide-overlay {
  padding: 2.2rem 1.6rem 3.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 58%, transparent);
}

.hero-slide-title a {
  overflow-wrap: anywhere;
}

.overlay-card,
.kavv-card .card-thumbnail,
.video-card__thumb,
.entry-hero-image img,
.inline-related-thumb {
  aspect-ratio: 16/9;
}

.overlay-card-content,
.kavv-card.is-overlay .card-content {
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.36) 62%, transparent);
}

.overlay-card-title,
.kavv-card.is-overlay .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
  margin-bottom: 0;
}

.kavv-sidebar-popular .overlay-card,
.kavv-widget-editorial .kavv-card.is-overlay {
  aspect-ratio: 16/9;
  border-radius: var(--kavv-radius-lg);
}

.kavv-widget-editorial .kavv-card.is-overlay .card-content .category-chip,
.kavv-widget-editorial .kavv-card.is-overlay .meta-text {
  display: none;
}

.category-grid--lead-4,
.category-grid--split,
.kavv-category-section--split-right .category-grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
}

.category-grid--lead-4 .category-grid-side--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-grid--lead-4 .category-grid-lead,
.category-grid--lead-4 .category-grid-side--compact,
.category-grid--lead-4 .kavv-card,
.category-grid--split .category-grid-lead,
.category-grid--split .category-grid-lead .kavv-card {
  height: auto;
}

.category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-thumbnail {
  aspect-ratio: 16/9;
}

.kavv-category-section .kavv-card .card-title,
.kavv-card.is-horizontal .card-title {
  overflow-wrap: anywhere;
}

.kavv-card.is-standard .card-title,
.kavv-card.is-horizontal .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kavv-card.is-standard .card-title {
  -webkit-line-clamp: 3;
}

.kavv-card.is-horizontal .card-title {
  -webkit-line-clamp: 2;
}

.videos-area {
  border-top: 0;
  padding-top: 0;
}

.kavv-module-video-grid {
  margin-top: 0;
}
.kavv-module-video-grid .video-carousel-wrapper {
  grid-template-columns: 1.1fr 1.6fr 1.1fr;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
}
.kavv-module-video-grid .video-carousel-column {
  gap: 0.75rem;
}
.kavv-module-video-grid .video-card__link {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.kavv-module-video-grid .video-card,
.kavv-module-video-grid .video-card__thumb {
  height: 100%;
}
.kavv-module-video-grid .video-card__thumb {
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
}
.kavv-module-video-grid .video-card__overlay {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
}
.kavv-module-video-grid .video-card__play-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
}
.kavv-module-video-grid .video-card-large .video-card__title,
.kavv-module-video-grid .video-card-small .video-card__title {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  margin: 0;
  color: #fff;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.kavv-module-video-grid .video-card-large .video-card__title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  -webkit-line-clamp: 3;
}
.kavv-module-video-grid .video-card-small .video-card__title {
  font-size: 0.98rem;
  -webkit-line-clamp: 2;
}

.kavv-share-row .share-btn,
.kavv-module-social-follow .social-follow-card {
  background: #0b0e13;
  color: #fff;
  border: 1px solid var(--kavv-color-border);
}

.kavv-share-row .share-btn:hover,
.kavv-module-social-follow .social-follow-card:hover,
.author-social-icon:hover,
.author-page-socials .author-social-icon:hover {
  color: var(--kavv-color-primary);
  border-color: var(--kavv-color-primary);
  text-decoration: none;
}

.kavv-module-social-follow .social-follow-x,
.kavv-module-social-follow .social-follow-instagram,
.kavv-module-social-follow .social-follow-youtube,
.kavv-module-social-follow .social-follow-nsosyal,
.kavv-module-social-follow .social-follow-tiktok,
.kavv-module-social-follow .social-follow-facebook {
  color: inherit;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.entry-title a:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

.entry-hero-image {
  margin-bottom: 2rem;
}

.kavv-summary-text {
  margin-top: 0.5rem;
  padding: 0.15rem 0 0.15rem 1rem;
}

.entry-content .kavv-intro-summary,
.entry-content > ul:first-child,
.entry-content > ol:first-child {
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  background: linear-gradient(135deg, rgba(var(--kavv-color-primary-rgb), 0.12), rgba(var(--kavv-color-primary-rgb), 0.045));
}
.entry-content .kavv-intro-summary li,
.entry-content > ul:first-child li,
.entry-content > ol:first-child li {
  margin: 0.35rem 0;
  padding-left: 0.15rem;
}
.entry-content .kavv-intro-summary li::marker,
.entry-content > ul:first-child li::marker,
.entry-content > ol:first-child li::marker {
  color: var(--kavv-color-primary);
  font-size: 1.2em;
}

[data-theme=light] .kavv-share-row .share-btn,
[data-theme=light] .kavv-module-social-follow .social-follow-card,
[data-theme=light] .author-page-socials .author-social-icon {
  background: #fff;
  color: #071018;
}

@media (max-width: 1023px) {
  .kavv-module-video-grid .video-carousel-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .category-grid--lead-4,
  .category-grid--split,
  .kavv-category-section--split-right .category-grid--split {
    grid-template-columns: 1fr;
  }
  .category-grid--lead-4 .category-grid-side--compact {
    grid-template-columns: 1fr;
  }
  .category-grid--lead-4 .category-grid-lead-secondary {
    display: none;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact {
    flex-direction: row;
    align-items: center;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-thumbnail {
    width: 128px;
  }
  .kavv-card.is-horizontal .card-title {
    font-size: 1.05rem;
    line-height: 1.22;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 600px) {
  .hero-slide-overlay {
    padding: 1.45rem 1rem 3rem;
  }
  .hero-slide-title {
    font-size: 1.18rem;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .entry-title {
    font-size: 1.95rem;
    line-height: 1.08;
  }
}
/* Diff correction pass: align mobile/card/article/footer visuals. */
.section-heading .section-title,
.section-heading .section-title a,
.category-chip,
.inline-related-label,
.footer-column h3 {
  text-transform: none;
  letter-spacing: 0;
}

.section-heading .section-title a {
  color: inherit;
  text-decoration: none;
}
.section-heading .section-title a:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

.kavv-card.is-overlay .card-content,
.overlay-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.kavv-card.is-overlay .category-chip,
.overlay-card-content .category-chip {
  margin: 0;
}

.kavv-card.is-overlay .card-title,
.overlay-card-content .card-title {
  margin: 0;
  line-height: 1.14;
}

.kavv-sidebar-popular .sidebar-popular-stack,
.kavv-widget-editorial .widget-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kavv-sidebar-popular .kavv-card.is-overlay,
.kavv-widget-editorial .kavv-card.is-overlay {
  aspect-ratio: 16/9;
  min-height: 0;
  border-radius: var(--kavv-radius-lg);
  overflow: hidden;
}

.entry-content .kavv-intro-summary,
.entry-content > ul:first-child,
.entry-content > ol:first-child {
  border: 1px solid rgba(var(--kavv-color-primary-rgb), 0.3);
  border-radius: var(--kavv-radius-lg);
  background: linear-gradient(135deg, rgba(var(--kavv-color-primary-rgb), 0.12), rgba(var(--kavv-color-primary-rgb), 0.05));
  box-shadow: 0 12px 28px rgba(7, 16, 24, 0.04);
}

.kavv-share-row .share-btn-whatsapp {
  color: #25d366;
}

.kavv-share-row .share-btn-whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
}

@media (max-width: 768px) {
  .category-grid--lead-4 .category-grid-lead {
    display: block;
  }
  .category-grid--lead-4 .category-grid-lead .kavv-card.is-standard {
    height: auto;
  }
  .category-grid--lead-4 .category-grid-lead .kavv-card.is-standard .card-thumbnail {
    min-height: 0;
  }
  .category-grid--lead-4 .category-grid-lead .kavv-card.is-standard .card-content {
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-slide-overlay {
    min-height: 35%;
    justify-content: flex-end;
    padding: 1rem 1rem 3.15rem;
  }
  .hero-slide-overlay .category-chip {
    margin-bottom: 0;
  }
  .hero-slide-title {
    max-width: 100%;
    font-size: 1.48rem;
    line-height: 1.12;
    -webkit-line-clamp: 2;
    overflow-wrap: anywhere;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-thumbnail {
    width: 118px;
  }
  .single-main > .kavv-container,
  .single .site-main > .kavv-container {
    padding-top: 1.25rem;
  }
  .entry-header .entry-categories {
    margin-bottom: 0.9rem;
  }
  .entry-content .kavv-intro-summary,
  .entry-content > ul:first-child,
  .entry-content > ol:first-child {
    padding: 1rem 1rem 1rem 2.45rem;
  }
}
@media (max-width: 380px) {
  .hero-slide-title {
    font-size: 1.28rem;
  }
}
/* Final correction pass: mobile parity, Turkish casing, video redesign, archive spacing. */
.section-heading .section-title,
.section-heading .section-title a,
.kavv-title-bar,
.category-chip,
.inline-related-label,
.post-nav-kicker,
.kavv-special-label,
.author-card-eyebrow,
.footer-column h3,
.main-navigation a {
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.author-header .author-card-eyebrow,
.author-info-slot > .author-card-eyebrow,
.page-header .author-card-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: var(--kavv-color-primary);
  color: #fff !important;
  line-height: 1.15;
}

.archive-inline-ad-slot:empty {
  display: none;
  margin: 0;
}

.kavv-share-row .share-btn-whatsapp {
  background: #0b0e13 !important;
  color: #fff !important;
  border-color: var(--kavv-color-border) !important;
}

.kavv-share-row .share-btn-whatsapp:hover {
  background: #0b0e13 !important;
  color: var(--kavv-color-primary) !important;
  border-color: var(--kavv-color-primary) !important;
}

[data-theme=light] .kavv-share-row .share-btn-whatsapp {
  background: #fff !important;
  color: #071018 !important;
}

[data-theme=light] .kavv-share-row .share-btn-whatsapp:hover {
  color: var(--kavv-color-primary) !important;
}

.kavv-module-video-grid {
  padding: 1rem;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: var(--kavv-color-surface);
}
.kavv-module-video-grid .video-module-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kavv-module-video-grid .video-editorial-grid {
  display: grid;
  gap: 0.75rem;
}
.kavv-module-video-grid .video-support-grid {
  display: grid;
  gap: 0.75rem;
}
.kavv-module-video-grid .video-card,
.kavv-module-video-grid .video-card__link {
  min-width: 0;
}
.kavv-module-video-grid .video-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  color: var(--kavv-color-text);
  text-decoration: none;
}
.kavv-module-video-grid .video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: #071018;
}
.kavv-module-video-grid .video-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.kavv-module-video-grid .video-card__img--placeholder {
  background: radial-gradient(circle at 30% 20%, rgba(var(--kavv-color-primary-rgb), 0.18), transparent 34%), #071018;
}
.kavv-module-video-grid .video-card__play-icon {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.kavv-module-video-grid .video-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.kavv-module-video-grid .video-card__eyebrow {
  color: var(--kavv-color-primary);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}
.kavv-module-video-grid .video-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.16;
}
.kavv-module-video-grid .video-card--lead .video-card__title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  -webkit-line-clamp: 3;
}
.kavv-module-video-grid .video-card__link:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}
.kavv-module-video-grid .video-card__link:hover .video-card__img {
  transform: scale(1.035);
}
.kavv-module-video-grid .video-card__link:hover .video-card__play-icon {
  background: var(--kavv-color-primary);
  color: #fff;
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .kavv-module-video-grid .video-editorial-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: stretch;
  }
  .kavv-module-video-grid .video-card--lead .video-card__thumb {
    min-height: 300px;
  }
  .kavv-module-video-grid .video-card--support .video-card__link {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem;
    border: 1px solid var(--kavv-color-border);
    border-radius: var(--kavv-radius-lg);
    background: rgba(255, 255, 255, 0.025);
  }
  .kavv-module-video-grid .video-card--support .video-card__thumb {
    border-radius: var(--kavv-radius-md);
  }
}
@media (min-width: 1024px) {
  .single-main > .kavv-container,
  .single .site-main > .kavv-container {
    padding-top: 1.35rem;
  }
  .entry-header .entry-categories {
    margin-bottom: 0.95rem;
  }
}
@media (max-width: 1023px) {
  .archive-main .kavv-sidebar,
  .category-main .kavv-sidebar,
  .search-main .kavv-sidebar,
  .author-main .kavv-sidebar {
    margin-top: 2rem;
  }
  .archive-pagination {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-slide-overlay {
    min-height: 34%;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 1.15rem 1rem 0.85rem !important;
  }
  .hero-slide-title {
    font-size: 1.44rem;
    line-height: 1.1;
    -webkit-line-clamp: 2;
  }
  .header-inline-search {
    width: min(280px, 100vw - 5.5rem);
    max-width: 280px;
  }
  .header-inline-search.is-open {
    width: min(280px, 100vw - 5.5rem);
  }
  .header-inline-search input[type=search] {
    box-shadow: none;
  }
  .kavv-module-video-grid {
    padding: 0;
    border: 0;
    background: transparent;
  }
  .kavv-module-video-grid .video-card--lead {
    padding: 0.65rem;
    border: 1px solid var(--kavv-color-border);
    border-radius: var(--kavv-radius-lg);
    background: var(--kavv-color-surface);
  }
  .kavv-module-video-grid .video-card--support .video-card__link {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem;
    border: 1px solid var(--kavv-color-border);
    border-radius: var(--kavv-radius-lg);
    background: var(--kavv-color-surface);
  }
  .kavv-module-video-grid .video-card--support .video-card__thumb {
    border-radius: var(--kavv-radius-md);
  }
  .kavv-module-video-grid .video-card__play-icon {
    top: 0.45rem;
    left: 0.45rem;
    width: 32px;
    height: 32px;
  }
  .front-page-main .kavv-content-area .kavv-card.is-standard,
  .front-page-main .kavv-content-area .kavv-card.is-horizontal,
  .front-page-main .kavv-content-area .kavv-card.is-compact,
  .front-page-main .kavv-content-area .kavv-card.is-overlay,
  .home-mobile-priority .kavv-card.is-overlay,
  .archive-feed .kavv-card.is-horizontal,
  .kavv-sidebar .kavv-card.is-overlay {
    display: grid !important;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    padding: 0.65rem;
    border: 1px solid var(--kavv-color-border);
    border-radius: var(--kavv-radius-lg);
    background: var(--kavv-color-surface);
  }
  .front-page-main .kavv-content-area .kavv-card .card-thumbnail,
  .home-mobile-priority .kavv-card .card-thumbnail,
  .archive-feed .kavv-card .card-thumbnail,
  .kavv-sidebar .kavv-card .card-thumbnail {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    aspect-ratio: 16/9 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
  .front-page-main .kavv-content-area .kavv-card.is-overlay .card-content,
  .home-mobile-priority .kavv-card.is-overlay .card-content,
  .archive-feed .kavv-card.is-horizontal .card-body,
  .archive-feed .kavv-card.is-horizontal .card-content,
  .kavv-sidebar .kavv-card.is-overlay .card-content,
  .front-page-main .kavv-content-area .kavv-card .card-content,
  .front-page-main .kavv-content-area .kavv-card .card-body {
    position: static !important;
    inset: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.38rem;
    min-width: 0;
    padding: 0 !important;
    background: transparent !important;
    color: var(--kavv-color-text) !important;
  }
  .front-page-main .kavv-content-area .kavv-card.is-overlay .card-title a,
  .home-mobile-priority .kavv-card.is-overlay .card-title a,
  .kavv-sidebar .kavv-card.is-overlay .card-title a {
    color: var(--kavv-color-text) !important;
  }
  .front-page-main .kavv-content-area .kavv-card .card-title,
  .home-mobile-priority .kavv-card .card-title,
  .archive-feed .kavv-card .card-title,
  .kavv-sidebar .kavv-card .card-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.17;
    -webkit-line-clamp: 3 !important;
    overflow-wrap: anywhere;
  }
  .front-page-main .kavv-content-area .kavv-card .card-excerpt,
  .archive-feed .kavv-card .card-excerpt,
  .front-page-main .kavv-content-area .kavv-card .meta-text,
  .archive-feed .kavv-card .meta-text {
    display: none !important;
  }
  .category-grid,
  .category-grid--lead-4,
  .category-grid--2x2,
  .category-grid--split,
  .category-grid--lead-4 .category-grid-side--compact,
  .kavv-grid-4,
  .latest-news-feed {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    min-height: 0 !important;
    grid-auto-rows: auto !important;
  }
  .category-grid--lead-4 .category-grid-lead-secondary {
    display: none !important;
  }
  .kavv-promo-card .promo-badge,
  .kavv-promo-card .promo-expiry {
    top: 0.35rem;
    font-size: 0.62rem;
    min-height: 22px;
    padding: 0 0.45rem;
  }
}
@media (max-width: 380px) {
  .front-page-main .kavv-content-area .kavv-card.is-standard,
  .front-page-main .kavv-content-area .kavv-card.is-horizontal,
  .front-page-main .kavv-content-area .kavv-card.is-compact,
  .front-page-main .kavv-content-area .kavv-card.is-overlay,
  .home-mobile-priority .kavv-card.is-overlay,
  .archive-feed .kavv-card.is-horizontal,
  .kavv-sidebar .kavv-card.is-overlay,
  .kavv-module-video-grid .video-card--support .video-card__link {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}
/* Final production parity pass. Keep this block last so older module styles cannot win. */
.site-branding .site-logo-text {
  display: inline-block;
  color: var(--kavv-color-text);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.site-branding .custom-logo,
.site-branding .site-logo-img {
  max-width: min(460px, 44vw);
  max-height: 86px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.header-network {
  padding-bottom: 0.7rem;
  margin-bottom: -0.7rem;
}

.header-network::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.7rem;
}

.network-panel {
  top: 100% !important;
  margin-top: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(var(--network-columns, 1), minmax(0, 160px)) !important;
  grid-template-rows: repeat(var(--network-rows, 1), minmax(72px, auto)) !important;
  grid-auto-flow: column !important;
  gap: 0.65rem !important;
}

.header-network:hover .network-panel,
.header-network:focus-within .network-panel,
.header-network.is-open .network-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.network-site {
  width: 160px;
  min-width: 150px;
  min-height: 72px;
}

.network-mark {
  width: 100%;
  min-width: 116px;
  height: 48px;
  color: var(--kavv-color-text);
}

.main-navigation a,
.section-title,
.section-title a,
.category-chip,
.inline-related-label,
.post-nav-kicker,
.kavv-special-label {
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.category-chip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
}

.single-main > .kavv-container,
.category-main > .kavv-container,
.archive-main > .kavv-container,
.search-main > .kavv-container,
.author-main > .kavv-container {
  padding-top: clamp(1.25rem, 2.8vw, 2.2rem) !important;
}

.archive-title,
.category-main .archive-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--kavv-color-text) !important;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.archive-title::before,
.category-main .archive-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.35em;
  flex: 0 0 4px;
  background: var(--kavv-color-primary);
  border-radius: 999px;
}

.entry-header .entry-categories {
  margin-top: 0 !important;
  margin-bottom: 0.85rem !important;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--kavv-color-secondary-accent);
}

.entry-content > ul.kavv-intro-summary,
.entry-content > ul:first-child,
.entry-content > ol:first-child {
  border-radius: var(--kavv-radius-lg) !important;
  background: color-mix(in srgb, var(--kavv-color-primary) 10%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--kavv-color-primary) 34%, transparent) !important;
  box-shadow: inset 4px 0 0 var(--kavv-color-primary);
}

.kavv-inline-related .inline-related-label {
  color: var(--kavv-color-primary);
  font-size: 0.92rem;
  font-weight: 850;
}

.kavv-inline-related--videos .inline-related-label {
  color: var(--kavv-color-text);
  font-size: 1rem;
}

.kavv-share-row .share-btn {
  background: var(--kavv-color-surface) !important;
  border: 1px solid var(--kavv-color-border) !important;
  color: var(--kavv-color-text) !important;
}

.kavv-share-row .share-btn:hover {
  background: var(--kavv-color-primary) !important;
  border-color: var(--kavv-color-primary) !important;
  color: #fff !important;
}

.kavv-share-row .share-btn-whatsapp svg {
  width: 19px;
  height: 19px;
}

.comment-notes,
.comment-form-email,
.comment-form-cookies-consent {
  display: none !important;
}

.comment-form input[type=submit],
.comment-form .form-submit input,
#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 44px;
  padding: 0.72rem 1.05rem !important;
  border: 1px solid var(--kavv-color-primary) !important;
  border-radius: var(--kavv-radius-md) !important;
  background: var(--kavv-color-primary) !important;
  color: #fff !important;
  font-weight: 850 !important;
  cursor: pointer;
}

.comment-form input[type=submit]:hover,
.comment-form .form-submit input:hover,
#submit:hover {
  filter: brightness(0.94);
}

.card-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.35rem 0 0;
  color: var(--kavv-color-text-muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

.category-grid,
.category-grid--lead-4,
.category-grid--split,
.category-grid--2x2 {
  min-height: 0 !important;
  align-items: start !important;
}

.category-grid--lead-4 .category-grid-lead,
.category-grid--lead-4 .category-grid-side--compact,
.category-grid--lead-4 .kavv-card,
.category-grid--split .category-grid-lead,
.category-grid--split .kavv-card {
  height: auto !important;
  min-height: 0 !important;
}

.category-grid--lead-4,
.category-grid--split,
.kavv-category-section--split-right .category-grid--split {
  align-items: stretch !important;
}

.category-grid--lead-4 .category-grid-lead,
.category-grid--split .category-grid-lead,
.category-grid--lead-4 .category-grid-side--compact,
.category-grid--lead-4 .category-grid-lead > .kavv-card.is-standard,
.category-grid--split .category-grid-lead > .kavv-card.is-standard {
  align-self: stretch;
  height: 100% !important;
}

.category-grid--lead-4 .category-grid-lead,
.category-grid--split .category-grid-lead {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.category-grid--lead-4 .category-grid-lead > .kavv-card.is-standard,
.category-grid--split .category-grid-lead > .kavv-card.is-standard {
  display: flex;
  flex-direction: column;
}

.category-grid--lead-4 .category-grid-lead > .kavv-card.is-standard .card-content,
.category-grid--split .category-grid-lead > .kavv-card.is-standard .card-content {
  flex: 1;
}

.category-grid-lead .kavv-card.is-standard .card-thumbnail,
.category-grid--split .category-grid-lead .kavv-card.is-standard .card-thumbnail,
.category-grid--2x2 .kavv-card.is-standard .card-thumbnail {
  aspect-ratio: 16/9 !important;
}

.category-grid-lead .kavv-card.is-standard .card-content,
.category-grid--split .category-grid-lead .kavv-card.is-standard .card-content,
.category-grid--2x2 .kavv-card.is-standard .card-content {
  padding: 1rem 1.05rem 1.1rem !important;
}

.category-grid-lead .kavv-card.is-standard .card-summary,
.category-grid--split .category-grid-lead .kavv-card.is-standard .card-summary,
.category-grid--2x2 .kavv-card.is-standard .card-summary {
  -webkit-line-clamp: 6;
}

.kavv-card.is-compact .card-summary {
  -webkit-line-clamp: 2;
  font-size: 0.8rem;
  line-height: 1.38;
}

.kavv-card.is-compact .card-content > .category-chip {
  margin-bottom: 0.55rem;
}

@media (min-width: 768px) {
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact:hover {
    background: transparent !important;
    border-color: transparent !important;
  }
  .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-summary {
    display: none !important;
  }
}
.kavv-video-stage {
  padding: clamp(1.25rem, 2vw, 2rem) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #141414 !important;
  color: #fff;
}

.video-stage-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.45rem);
}

.video-stage-icon {
  display: inline-flex;
  color: var(--kavv-color-primary);
}

.video-stage-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

.video-stage-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-stage-title-link:hover {
  color: var(--kavv-color-primary);
  text-decoration: none;
}

.video-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.25vw, 1.2rem);
}

.video-card--feature {
  grid-column: span 2;
}

.video-card--tile {
  grid-column: span 1;
}

.kavv-video-stage .video-card__link {
  position: relative !important;
  display: block !important;
  height: 100%;
  min-height: 0;
  color: #fff !important;
  text-decoration: none !important;
}

.kavv-video-stage .video-card__thumb {
  position: relative !important;
  display: block !important;
  width: 100%;
  aspect-ratio: 16/9 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 9px !important;
  overflow: hidden;
  background: #071018;
}

.kavv-video-stage .video-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) brightness(0.82);
}

.kavv-video-stage .video-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.82));
}

.kavv-video-stage .video-card__play-icon {
  display: none !important;
}

.kavv-video-stage .video-card__content {
  position: absolute !important;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: block !important;
}

.kavv-video-stage .video-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #fff;
  font-size: clamp(0.92rem, 1.12vw, 1.1rem);
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.kavv-video-stage .video-card--feature .video-card__title {
  font-size: clamp(1.12rem, 1.55vw, 1.58rem);
}

.kavv-poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kavv-poster-carousel {
  position: relative;
}

.poster-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--kavv-color-primary) 42%, rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  background: color-mix(in srgb, #071018 82%, var(--kavv-color-primary));
  color: var(--kavv-color-primary);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.poster-carousel-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.poster-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.poster-carousel-arrow--prev {
  left: 0.75rem;
}

.poster-carousel-arrow--prev::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.poster-carousel-arrow--next {
  right: 0.75rem;
}

.poster-carousel-arrow--next::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.kavv-poster-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--kavv-radius-lg);
  background: #071018;
}

.kavv-poster-card .card-thumbnail {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: inherit;
}

.kavv-module-free-games .kavv-poster-carousel.has-overflow .poster-carousel-arrow {
  display: inline-flex;
}

.kavv-module-free-games .kavv-poster-grid {
  display: flex;
  grid-template-columns: none;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.kavv-module-free-games .kavv-poster-grid::-webkit-scrollbar {
  display: none;
}

.kavv-module-free-games .kavv-poster-card {
  flex: 0 0 calc((100% - 1rem) / 2);
  scroll-snap-align: start;
}

.kavv-module-free-games .kavv-poster-card .card-thumbnail {
  aspect-ratio: 16/9;
}

.kavv-poster-card .card-thumbnail img,
.kavv-poster-card .card-thumbnail-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kavv-poster-card .poster-thumbnail-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.kavv-poster-card .card-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 45%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.kavv-promo-card .promo-badge,
.kavv-promo-card .promo-expiry {
  position: absolute;
  z-index: 4;
  top: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: rgba(8, 14, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.kavv-promo-card .promo-badge {
  left: 0.85rem;
  right: auto;
  color: var(--kavv-color-primary);
  border-color: color-mix(in srgb, var(--kavv-color-primary) 55%, transparent);
}

.kavv-promo-card .promo-expiry {
  top: auto;
  bottom: 0.85rem;
  left: 0.85rem !important;
  right: auto !important;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
  max-width: calc(100% - 1.7rem);
}

.kavv-promo-card.no-promo-badge .promo-expiry {
  top: auto;
}

@media (max-width: 1023px) {
  .kavv-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.kavv-ad {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.35rem 0;
  padding: 1rem;
  border: 1px dashed color-mix(in srgb, var(--kavv-color-primary) 42%, var(--kavv-color-border));
  border-radius: var(--kavv-radius-md);
  background: color-mix(in srgb, var(--kavv-color-primary) 6%, transparent);
  overflow: hidden;
}

.kavv-ad ins,
.kavv-ad iframe {
  display: block;
  max-width: 100%;
}

.kavv-ad iframe {
  border: 0;
}

.footer-quick-links,
.footer-column .menu.footer-quick-links,
.footer-column .menu-fallback.footer-quick-links,
.footer-category-links,
.footer-column .menu-fallback.footer-category-links,
.footer-column .menu.footer-category-links {
  display: grid;
  gap: 0;
}

.footer-quick-links,
.footer-column .menu.footer-quick-links,
.footer-column .menu-fallback.footer-quick-links,
.footer-category-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.footer-quick-links li,
.footer-column .menu.footer-quick-links li,
.footer-column .menu-fallback.footer-quick-links li,
.footer-category-links li,
.footer-column .menu-fallback.footer-category-links li,
.footer-column .menu.footer-category-links li {
  width: auto;
  border-bottom: 0;
}

.footer-quick-links a,
.footer-column .menu.footer-quick-links a,
.footer-column .menu-fallback.footer-quick-links a,
.footer-category-links a,
.footer-column .menu-fallback.footer-category-links a,
.footer-column .menu.footer-category-links a {
  display: inline-block;
  min-width: min(8.5rem, 100%);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--kavv-color-border);
}

.footer-column h3::before {
  margin-right: 0.35rem;
}

.kavv-feed-widget {
  overflow: hidden;
  border: 1px solid var(--kavv-color-border);
  border-radius: var(--kavv-radius-lg);
  background: var(--kavv-color-surface);
}

@media (min-width: 1024px) {
  .hero-slide-overlay {
    padding: 2rem 2rem 4.25rem !important;
  }
  .single-main .entry-header {
    margin-top: 0 !important;
  }
}
@media (max-width: 1023px) {
  .site-branding .site-logo-text {
    color: var(--kavv-color-text);
    font-size: clamp(1.75rem, 8vw, 2.75rem) !important;
  }
  .main-navigation {
    width: min(82vw, 360px) !important;
    background: var(--kavv-color-bg) !important;
    box-shadow: none !important;
    pointer-events: auto;
  }
  .main-navigation.toggled,
  .mobile-menu-open .main-navigation {
    box-shadow: 20px 0 48px rgba(0, 0, 0, 0.28) !important;
    transform: translateX(0) !important;
  }
  body.mobile-menu-open #page,
  body.mobile-menu-open .site,
  body.mobile-menu-open main,
  body.mobile-menu-open .site-header {
    opacity: 1 !important;
    filter: none !important;
  }
  .main-navigation li {
    border-bottom: 1px solid color-mix(in srgb, var(--kavv-color-text) 14%, transparent);
  }
  .main-navigation a {
    padding: 0.95rem 3rem 0.95rem 0.35rem !important;
    border-radius: 0 !important;
    color: var(--kavv-color-text) !important;
    background: transparent !important;
  }
  .main-navigation a:hover,
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_item > a,
  .main-navigation .current-menu-ancestor > a,
  .main-navigation .current-post-ancestor > a {
    color: var(--kavv-color-primary) !important;
    background: color-mix(in srgb, var(--kavv-color-primary) 10%, transparent) !important;
    box-shadow: inset 4px 0 0 var(--kavv-color-primary);
  }
  .submenu-toggle {
    right: 0.3rem !important;
    top: 0.5rem !important;
  }
  body.mobile-menu-open::before,
  body.mobile-menu-open::after,
  .mobile-menu-open::before,
  .mobile-menu-open::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .video-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-card--feature,
  .video-card--tile {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .hero-slider-viewport {
    aspect-ratio: 16/11.5 !important;
  }
  .hero-slide-overlay {
    min-height: 40% !important;
    justify-content: flex-end !important;
    padding: 1.1rem 1rem 1.25rem !important;
  }
  .hero-slide-title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
    font-size: clamp(1.42rem, 6.2vw, 2rem) !important;
    line-height: 1.08 !important;
  }
  .video-showcase-grid,
  .kavv-poster-grid {
    grid-template-columns: 1fr !important;
  }
  .kavv-poster-carousel.has-overflow .poster-carousel-arrow {
    display: inline-flex;
  }
  .kavv-poster-carousel .kavv-poster-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .kavv-poster-carousel .kavv-poster-grid::-webkit-scrollbar {
    display: none;
  }
  .kavv-poster-carousel .kavv-poster-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .kavv-poster-carousel .kavv-poster-card .card-thumbnail {
    aspect-ratio: 4/5 !important;
  }
  .kavv-module-free-games .kavv-poster-carousel .kavv-poster-card .card-thumbnail {
    aspect-ratio: 16/9 !important;
  }
  .kavv-video-stage {
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 1.1rem !important;
  }
  .kavv-video-stage .video-card__content {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
  }
  .kavv-video-stage .video-card--feature .video-card__title,
  .kavv-video-stage .video-card__title {
    font-size: 1rem !important;
    line-height: 1.12 !important;
  }
  .front-page-main .kavv-content-area .kavv-card.is-standard,
  .front-page-main .kavv-content-area .kavv-card.is-horizontal,
  .front-page-main .kavv-content-area .kavv-card.is-compact,
  .front-page-main .kavv-content-area .kavv-card.is-overlay,
  .home-mobile-priority .kavv-card.is-overlay,
  .archive-feed .kavv-card.is-horizontal,
  .kavv-sidebar .kavv-card.is-overlay {
    grid-template-columns: 126px minmax(0, 1fr) !important;
  }
  .front-page-main .kavv-content-area .kavv-card .card-summary,
  .archive-feed .kavv-card .card-summary,
  .kavv-card.is-compact .card-summary {
    display: none !important;
  }
  .footer-category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.kavv-card.is-standard .card-content > .category-chip {
  display: none;
  width: fit-content;
  margin-bottom: 0.35rem;
}

.header-inline-search input[type=search] {
  background: color-mix(in srgb, var(--kavv-color-surface) 92%, transparent);
  border-color: color-mix(in srgb, var(--kavv-color-primary) 32%, var(--kavv-color-border));
  color: var(--kavv-color-text);
}

.header-inline-search input[type=search]::placeholder {
  color: var(--kavv-color-text-muted);
}

.author-header .author-card-eyebrow,
.author-info-slot > .author-card-eyebrow,
.page-header .author-card-eyebrow {
  min-height: 28px;
  padding: 0 0.72rem;
  background: color-mix(in srgb, var(--kavv-color-primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--kavv-color-primary) 42%, transparent);
  color: var(--kavv-color-primary) !important;
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-slide-overlay {
  top: 0 !important;
  bottom: 0 !important;
  min-height: 100% !important;
  justify-content: flex-end !important;
  padding: 5.4rem 1.5rem 3.5rem !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 38%, rgba(0, 0, 0, 0.88)) !important;
}

.hero-slide-overlay .category-chip {
  position: absolute;
  top: 1.35rem;
  left: 1.5rem;
  margin: 0 !important;
}

[data-theme=light] .hero-slide-overlay .category-chip,
[data-theme=light] .category-chip,
[data-theme=light] .kavv-card.is-overlay .category-chip,
[data-theme=light] .overlay-card-content .category-chip,
[data-theme=light] .kavv-card .card-thumbnail > .category-chip,
[data-theme=light] .kavv-promo-card .promo-badge {
  background: color-mix(in srgb, var(--kavv-color-primary) 14%, #fff) !important;
  border-color: color-mix(in srgb, var(--kavv-color-primary) 36%, #fff) !important;
  color: var(--kavv-color-primary) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.category-grid--lead-4 .category-grid-lead > .kavv-card.is-standard,
.category-grid--split .category-grid-lead > .kavv-card.is-standard {
  height: auto !important;
  min-height: 0;
}

.category-grid--lead-4 .category-grid-lead-secondary .kavv-card.is-compact,
.category-grid--split .category-grid-lead-secondary .kavv-card.is-compact {
  min-height: 112px;
  height: auto !important;
}

@media (max-width: 767px) {
  .hero-slide-overlay {
    inset: 0 !important;
    min-height: 100% !important;
    justify-content: flex-end !important;
    padding: 4.9rem 1rem 1.15rem !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 36%, rgba(0, 0, 0, 0.86)) !important;
  }
  .hero-slide-overlay .category-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    margin: 0 !important;
  }
  .author-avatar-slot {
    flex: 0 0 104px;
  }
  .author-page-avatar {
    width: 104px !important;
    height: 104px !important;
  }
  .author-header .author-card-eyebrow,
  .author-info-slot > .author-card-eyebrow,
  .page-header .author-card-eyebrow {
    margin-bottom: 0.45rem;
  }
  .main-navigation a {
    padding-left: 1rem !important;
  }
  .main-navigation a:hover,
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_item > a,
  .main-navigation .current-menu-ancestor > a,
  .main-navigation .current-post-ancestor > a {
    box-shadow: inset 4px 0 0 var(--kavv-color-primary);
  }
  .main-navigation .sub-menu,
  .main-navigation .children {
    margin-left: 0.25rem;
    padding-left: 0.55rem !important;
  }
  .main-navigation .sub-menu li,
  .main-navigation .children li {
    border-bottom: 0 !important;
  }
  .main-navigation .sub-menu a,
  .main-navigation .children a {
    padding: 0.72rem 0.5rem !important;
    border-bottom: 1px solid color-mix(in srgb, var(--kavv-color-text) 14%, transparent);
  }
  .kavv-card.is-standard .card-thumbnail > .category-chip {
    display: none !important;
  }
  .kavv-card.is-standard .card-content > .category-chip {
    display: inline-flex !important;
  }
  .kavv-latest-news .kavv-card.is-horizontal .card-meta {
    display: flex !important;
    order: -1;
  }
  .kavv-latest-news .kavv-card.is-horizontal .card-meta .meta-separator,
  .kavv-latest-news .kavv-card.is-horizontal .card-meta .posted-on {
    display: none !important;
  }
  .front-page-main .kavv-category-section .category-grid,
  .front-page-main .kavv-category-section .category-grid--lead-4,
  .front-page-main .kavv-category-section .category-grid--split,
  .front-page-main .kavv-category-section .category-grid-side,
  .front-page-main .kavv-category-section .category-grid-side--compact {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    grid-auto-rows: auto !important;
  }
  .front-page-main .kavv-category-section .category-grid-lead {
    display: contents !important;
  }
  .front-page-main .kavv-category-section .category-grid-lead-secondary {
    display: none !important;
  }
  .front-page-main .kavv-category-section .kavv-card.is-standard,
  .front-page-main .kavv-category-section .kavv-card.is-compact,
  .front-page-main .kavv-category-section .kavv-card.is-overlay {
    display: grid !important;
    grid-template-columns: 126px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.85rem !important;
    min-height: 112px !important;
    height: auto !important;
    padding: 0.65rem !important;
    border: 1px solid var(--kavv-color-border) !important;
    border-radius: var(--kavv-radius-lg) !important;
    background: var(--kavv-color-surface) !important;
  }
  .front-page-main .kavv-category-section .kavv-card .card-thumbnail {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
  .front-page-main .kavv-category-section .kavv-card.is-standard .card-thumbnail > .category-chip {
    display: none !important;
  }
  .front-page-main .kavv-category-section .kavv-card.is-standard .card-content > .category-chip,
  .front-page-main .kavv-category-section .kavv-card.is-compact .card-content > .category-chip,
  .front-page-main .kavv-category-section .kavv-card.is-overlay .card-content > .category-chip {
    display: inline-flex !important;
    margin: 0 0 0.7rem !important;
  }
  .front-page-main .kavv-category-section .kavv-card .card-content {
    position: static !important;
    inset: auto !important;
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--kavv-color-text) !important;
  }
  .front-page-main .kavv-category-section .category-grid-lead .kavv-card.is-standard .card-content,
  .front-page-main .kavv-category-section .category-grid--split .category-grid-lead .kavv-card.is-standard .card-content,
  .front-page-main .kavv-category-section .category-grid--2x2 .kavv-card.is-standard .card-content {
    padding: 0 !important;
  }
  .front-page-main .kavv-category-section .kavv-card .card-title {
    margin: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.16 !important;
    -webkit-line-clamp: 3 !important;
  }
  .front-page-main .kavv-category-section .kavv-card .card-title a {
    color: var(--kavv-color-text) !important;
  }
  .front-page-main .kavv-category-section .kavv-card .card-summary,
  .front-page-main .kavv-category-section .kavv-card .meta-text {
    display: none !important;
  }
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal,
  .front-page-main .kavv-category-section .kavv-card.is-standard,
  .front-page-main .kavv-category-section .kavv-card.is-compact,
  .front-page-main .kavv-category-section .kavv-card.is-overlay,
  .archive-feed .kavv-card.is-horizontal,
  .kavv-sidebar-popular .kavv-card.is-overlay,
  .kavv-widget-editorial .kavv-card.is-overlay {
    display: grid !important;
    grid-template-columns: clamp(136px, 34vw, 172px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.35rem !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    border: 1px solid var(--kavv-color-border) !important;
    border-radius: var(--kavv-radius-lg) !important;
    background: var(--kavv-color-surface) !important;
  }
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal .card-thumbnail,
  .front-page-main .kavv-category-section .kavv-card .card-thumbnail,
  .archive-feed .kavv-card.is-horizontal .card-thumbnail,
  .kavv-sidebar-popular .kavv-card.is-overlay .card-thumbnail,
  .kavv-widget-editorial .kavv-card.is-overlay .card-thumbnail {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    margin: 0 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
  .kavv-sidebar-popular .kavv-card.is-overlay .card-content,
  .kavv-widget-editorial .kavv-card.is-overlay .card-content {
    position: static !important;
    inset: auto !important;
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--kavv-color-text) !important;
  }
  .kavv-sidebar-popular .kavv-card.is-overlay .card-title,
  .kavv-widget-editorial .kavv-card.is-overlay .card-title {
    margin: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.16 !important;
    -webkit-line-clamp: 3 !important;
  }
  .kavv-sidebar-popular .kavv-card.is-overlay .card-title a,
  .kavv-widget-editorial .kavv-card.is-overlay .card-title a {
    color: var(--kavv-color-text) !important;
  }
}
/* Final list-card media parity: keep thumbnails large and close to the card frame. */
@media (min-width: 768px) {
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal,
  .archive-feed .kavv-card.is-horizontal {
    padding: 0.45rem !important;
    gap: 1rem !important;
  }
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal .card-thumbnail,
  .archive-feed .kavv-card.is-horizontal .card-thumbnail {
    width: min(42%, 340px) !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    margin: 0 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
}
@media (max-width: 767px) {
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal,
  .front-page-main .kavv-category-section .kavv-card.is-standard,
  .front-page-main .kavv-category-section .kavv-card.is-compact,
  .front-page-main .kavv-category-section .kavv-card.is-overlay,
  .home-mobile-priority .kavv-card.is-overlay,
  .archive-feed .kavv-card.is-horizontal,
  .kavv-sidebar-popular .kavv-card.is-overlay,
  .kavv-widget-editorial .kavv-card.is-overlay {
    display: grid !important;
    grid-template-columns: clamp(160px, 40vw, 190px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.72rem !important;
    padding: 0.35rem !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    border: 1px solid var(--kavv-color-border) !important;
    border-radius: var(--kavv-radius-lg) !important;
    background: var(--kavv-color-surface) !important;
  }
  .front-page-main .kavv-latest-news .kavv-card.is-horizontal .card-thumbnail,
  .front-page-main .kavv-category-section .kavv-card .card-thumbnail,
  .home-mobile-priority .kavv-card.is-overlay .card-thumbnail,
  .archive-feed .kavv-card.is-horizontal .card-thumbnail,
  .kavv-sidebar-popular .kavv-card.is-overlay .card-thumbnail,
  .kavv-widget-editorial .kavv-card.is-overlay .card-thumbnail {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    margin: 0 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
}
/* Final hover and homepage category-card normalization. */
a:hover,
a:focus {
  text-decoration: none;
}

.hero-rail-item:hover .hero-rail-title,
.hero-rail-item:focus-visible .hero-rail-title,
.kavv-card:hover .card-title a,
.kavv-card:focus-within .card-title a,
.kavv-card.is-overlay:hover .card-title a,
.kavv-card.is-overlay:focus-within .card-title a,
.overlay-card:hover .overlay-card-title,
.overlay-card:focus-within .overlay-card-title,
.home-mobile-priority .kavv-card.is-overlay:hover .card-title a,
.home-mobile-priority .kavv-card.is-overlay:focus-within .card-title a,
.kavv-sidebar .kavv-card.is-overlay:hover .card-title a,
.kavv-sidebar .kavv-card.is-overlay:focus-within .card-title a,
.kavv-sidebar-popular .kavv-card.is-overlay:hover .card-title a,
.kavv-sidebar-popular .kavv-card.is-overlay:focus-within .card-title a,
.kavv-widget-editorial .kavv-card.is-overlay:hover .card-title a,
.kavv-widget-editorial .kavv-card.is-overlay:focus-within .card-title a {
  color: var(--kavv-color-primary) !important;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .front-page-main .kavv-category-section .category-grid-side .kavv-card.is-compact,
  .front-page-main .kavv-category-section .category-grid-side--compact .kavv-card.is-compact {
    display: grid !important;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.85rem !important;
    min-height: 124px !important;
    height: auto !important;
    padding: 0.65rem !important;
    border: 1px solid var(--kavv-color-border) !important;
    border-radius: var(--kavv-radius-lg) !important;
    background: var(--kavv-color-surface) !important;
    box-shadow: none !important;
  }
  .front-page-main .kavv-category-section .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .front-page-main .kavv-category-section .category-grid-side .kavv-card.is-compact:hover,
  .front-page-main .kavv-category-section .category-grid-side--compact .kavv-card.is-compact:hover {
    border-color: color-mix(in srgb, var(--kavv-color-primary) 38%, var(--kavv-color-border)) !important;
    background: var(--kavv-color-surface) !important;
  }
  .front-page-main .kavv-category-section .category-grid-side .kavv-card.is-compact .card-thumbnail,
  .front-page-main .kavv-category-section .category-grid-side--compact .kavv-card.is-compact .card-thumbnail,
  .front-page-main .kavv-category-section .category-grid-lead-secondary .kavv-card.is-compact .card-thumbnail {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    margin: 0 !important;
    border-radius: var(--kavv-radius-md) !important;
  }
  .front-page-main .kavv-category-section .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-content {
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
  }
  .front-page-main .kavv-category-section .category-grid--lead-4 .category-grid-side--compact .kavv-card.is-compact .card-title {
    display: -webkit-box !important;
    margin: 0 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .front-page-main .kavv-category-section .category-grid-lead-secondary .kavv-card.is-compact {
    display: grid !important;
    grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.9rem !important;
    padding: 0.65rem !important;
    border: 1px solid var(--kavv-color-border) !important;
    border-radius: var(--kavv-radius-lg) !important;
    background: var(--kavv-color-surface) !important;
  }
}
/* Reset and Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--kavv-color-bg);
  color: var(--kavv-color-text);
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Base utility classes */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

a {
  color: var(--kavv-color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
