/* Okur — tema ve özel bileşenler */

:root {
  --okur-bg: #f6f4ef;
  --okur-surface: #ffffff;
  --okur-text: #1a1a1a;
  --okur-muted: #5c5c5c;
  --okur-accent: #c41e3a;
  --okur-border: rgba(0, 0, 0, 0.08);
  --okur-nav-height: 72px;
  --okur-teal: #8c6e42;
  --okur-search-bg: #f1f1f1;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-logo: "Oswald", "Arial Narrow", sans-serif;
  --font-nav: "Montserrat", system-ui, sans-serif;
}

[data-theme="dark"] {
  --okur-bg: #0f0f10;
  --okur-surface: #1a1a1c;
  --okur-text: #e8e6e3;
  --okur-muted: #9a9690;
  --okur-accent: #e85d6c;
  --okur-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--okur-text);
  background-color: var(--okur-bg);
  transition: background-color 0.35s ease, color 0.35s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* —— Site header (logo + arama / alt menü) —— */
.site-header {
  z-index: 1030;
  background: var(--okur-surface);
}

.site-header.sticky-top {
  position: static;
  top: auto;
}

.header-brand-bar {
  background: var(--okur-surface);
  border-bottom: 1px solid var(--okur-border);
}

.header-brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

@media (min-width: 992px) {
  .header-brand-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header-brand-center {
    justify-self: center;
    text-align: center;
  }

  .header-brand-search {
    justify-self: end;
    width: 100%;
    max-width: 320px;
  }
}

.header-logo {
  display: block;
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--okur-text);
  text-transform: uppercase;
}

.header-logo .okur-logo {
  display: block;
  width: auto;
  height: clamp(2.6rem, 5.8vw, 3.6rem);
  margin-inline: auto;
}

.header-logo:hover {
  color: var(--okur-text);
  opacity: 0.85;
}

.header-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--okur-text);
  margin-top: 0.35rem;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.header-search-form {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .header-search-form {
    margin-left: auto;
    margin-right: 0;
  }
}

.header-search-input {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  background: var(--okur-search-bg) !important;
  color: var(--okur-text);
}

.header-search-input::placeholder {
  color: var(--okur-muted);
}

.header-search-input:focus {
  box-shadow: none;
  border-color: transparent;
}

.header-search-btn {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff !important;
  background: var(--okur-teal) !important;
  border-color: var(--okur-teal) !important;
  min-width: 4.25rem;
}

.header-search-btn:hover {
  filter: brightness(1.08);
}

.header-main-nav {
  background: var(--okur-surface);
  border-bottom: 1px solid var(--okur-border);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.header-main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.header-nav-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-mini-logo {
  align-items: center;
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--okur-text);
  padding: 0.1rem 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.94);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-mini-logo .okur-logo {
  display: block;
  width: auto;
  height: 1.05rem;
}

.nav-mini-logo:hover {
  color: var(--okur-text);
  opacity: 0.85;
}

body.nav-stuck .nav-mini-logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.header-logo .okur-logo--dark,
.nav-mini-logo .okur-logo--dark,
.site-footer-brand .okur-logo--dark {
  display: none;
}

[class*="okur-logo"] {
  filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

[data-theme="dark"] .okur-logo--light {
  display: none;
}

[data-theme="dark"] .okur-logo--dark {
  display: block;
}

.header-icon-btn {
  color: var(--okur-text) !important;
  line-height: 1;
  border: none;
  text-decoration: none;
}

.header-icon-btn:hover {
  color: var(--okur-teal) !important;
}

.header-nav-links {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
}

@media (min-width: 1200px) {
  .header-nav-links {
    font-size: 0.78rem;
    column-gap: 1.65rem;
  }
}

@media (min-width: 1400px) {
  .header-nav-links {
    column-gap: 2rem;
  }
}

.header-nav-link {
  color: var(--okur-text) !important;
  padding: 0.4rem 0.2rem !important;
  white-space: nowrap;
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--okur-teal) !important;
}

.header-nav-center {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.header-util-link {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--okur-text);
  white-space: nowrap;
}

.header-util-link:hover {
  color: var(--okur-teal);
}

.header-nav-vr {
  height: 1.25rem;
  align-self: center;
  opacity: 0.35;
}

.header-util-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .header-util-group {
    margin-left: auto;
  }
}

.offcanvas-nav .nav-link {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--okur-text);
}

.offcanvas-nav .nav-link:hover {
  color: var(--okur-teal);
}

[data-theme="dark"] .header-search-input {
  background: rgba(255, 255, 255, 0.06) !important;
}

.btn-theme {
  border: 1px solid var(--okur-border);
  color: var(--okur-text);
  background: var(--okur-surface);
  font-size: 0.85rem;
}

.btn-theme:hover {
  border-color: var(--okur-accent);
  color: var(--okur-accent);
}

/* Hero: sol slider + sağ sabit kartlar */
.hero-section .cover-carousel {
  border: 1px solid var(--okur-border);
  background: var(--okur-surface);
  border-radius: 4px;
  overflow: hidden;
}

.cover-carousel .carousel-item {
  min-height: 0;
}

.hero-slide-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem 1.5rem;
  min-height: 320px;
}

.hero-deco-circle {
  position: absolute;
  width: min(78vw, 320px);
  height: min(78vw, 320px);
  max-width: 100%;
  border-radius: 50%;
  background: #e4f0e8;
  z-index: 0;
}

[data-theme="dark"] .hero-deco-circle {
  background: rgba(100, 160, 120, 0.18);
}

.hero-slide-cover-wrap {
  position: relative;
  z-index: 1;
}

.cover-placeholder {
  aspect-ratio: 3 / 4;
  max-height: 280px;
  width: 200px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--okur-muted) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.cover-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-caption {
  font-size: 0.9rem;
  color: var(--okur-muted);
}

.hero-slide-body {
  padding: 0 1.75rem 1.75rem;
  text-align: left;
}

.hero-slide-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--okur-text);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-slide-subtitle {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--okur-accent);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-slide-text {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--okur-muted);
  margin-bottom: 1.25rem;
  min-height: 7.6em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-incele {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--okur-text);
  color: var(--okur-text);
  background: transparent;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.btn-incele:hover {
  background: var(--okur-text);
  color: var(--okur-surface);
}

.cover-carousel .carousel-control-prev,
.cover-carousel .carousel-control-next {
  width: 7%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.cover-carousel:hover .carousel-control-prev,
.cover-carousel:hover .carousel-control-next,
.cover-carousel:focus-within .carousel-control-prev,
.cover-carousel:focus-within .carousel-control-next {
  opacity: 1;
  pointer-events: auto;
}

.cover-carousel .carousel-control-prev-icon,
.cover-carousel .carousel-control-next-icon {
  filter: none;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 50% 50%;
}

[data-theme="dark"] .cover-carousel .carousel-control-prev-icon,
[data-theme="dark"] .cover-carousel .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.12);
  filter: invert(1);
}

/* Sağ sütun sabit kartlar */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
  min-height: 100%;
}

.hero-sidebar-card {
  background: #ececec;
  border-radius: 4px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

[data-theme="dark"] .hero-sidebar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--okur-border);
}

.hero-sidebar-card .book-thumb {
  width: 72px;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  background: linear-gradient(145deg, #555, #222);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-sidebar-card .book-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--okur-text);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.hero-sidebar-card .book-author {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  color: var(--okur-muted);
  margin-bottom: 0.5rem;
}

.hero-sidebar-card .book-kicker {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--okur-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-sidebar-card .book-excerpt {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--okur-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-sidebar-card .btn-incele {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .hero-sidebar {
    min-height: auto;
  }

  .hero-sidebar-card {
    flex: 0 0 auto;
    min-height: auto;
  }
}

/* Son sayı — coverflow şeridi (Swiper) */
.issue-strip-wrap {
  background: linear-gradient(180deg, #6b1822 0%, #4a1018 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.issue-strip-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  letter-spacing: 0.03em;
  color: #fff;
}

.issue-strip-swiper {
  padding: 0.5rem 2.75rem 1rem;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .issue-strip-swiper {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.issue-coverflow-card {
  display: block;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease;
}

.issue-coverflow-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.issue-coverflow-img {
  display: block;
  aspect-ratio: 2 / 3;
  width: 100%;
  min-height: 130px;
  background-size: cover !important;
  background-position: center !important;
}

.issue-coverflow-label {
  background: #fff;
  color: #1a1a1a;
  font-size: 0.68rem;
  padding: 0.45rem 0.55rem 0.55rem;
  line-height: 1.35;
  font-family: var(--font-nav);
}

.issue-coverflow-label span {
  display: block;
  font-weight: 700;
  margin-top: 0.2rem;
  font-size: 0.72rem;
}

.issue-strip .swiper-slide {
  width: 188px;
  max-width: 72vw;
}

@media (min-width: 576px) {
  .issue-strip .swiper-slide {
    width: 210px;
  }
}

@media (min-width: 1200px) {
  .issue-strip .swiper-slide {
    width: 230px;
  }
}

.issue-strip .issue-strip-nav {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.38);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.issue-strip .issue-strip-nav::after {
  font-size: 0.95rem !important;
  font-weight: 700;
}

.issue-strip .swiper-button-prev.issue-strip-nav {
  left: 4px;
}

.issue-strip .swiper-button-next.issue-strip-nav {
  right: 4px;
}

.issue-strip .issue-strip-nav.swiper-button-disabled {
  opacity: 0.35;
}

/* Bir Dosya Seç — yeşil coverflow şeridi */
.dosya-strip-section {
  background: var(--okur-bg);
}

.dosya-strip-wrap {
  background: linear-gradient(180deg, #1f6b4a 0%, #0d4028 100%);
  box-shadow: 0 12px 40px rgba(13, 64, 40, 0.25);
}

[data-theme="dark"] .dosya-strip-wrap {
  background: linear-gradient(180deg, #164530 0%, #0a2818 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.dosya-strip-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  letter-spacing: 0.03em;
  color: #fff;
}

.dosya-strip-swiper {
  padding: 0.5rem 2.75rem 1rem;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .dosya-strip-swiper {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.dosya-strip .swiper-slide {
  width: 188px;
  max-width: 72vw;
}

@media (min-width: 576px) {
  .dosya-strip .swiper-slide {
    width: 210px;
  }
}

@media (min-width: 1200px) {
  .dosya-strip .swiper-slide {
    width: 230px;
  }
}

.dosya-strip .dosya-strip-nav {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.38);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.dosya-strip .dosya-strip-nav::after {
  font-size: 0.95rem !important;
  font-weight: 700;
}

.dosya-strip .swiper-button-prev.dosya-strip-nav {
  left: 4px;
}

.dosya-strip .swiper-button-next.dosya-strip-nav {
  right: 4px;
}

[data-theme="dark"] .dosya-strip .dosya-strip-nav {
  background: rgba(255, 255, 255, 0.22);
}

/* Okur Premium — koyu abonelik alanı */
.okur-premium-section {
  background: #0e0e12;
  color: #f0f0f2;
}

.okur-premium-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.okur-premium-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: #000;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  line-height: 1;
}

.okur-premium-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: 0.02em;
  color: #fff;
}

.okur-premium-dek {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #fff;
  opacity: 0.95;
}

.okur-premium-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.okur-premium-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5af5, #6366f1);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.okur-premium-plan {
  position: relative;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem 2.25rem 1rem 1rem;
  background: #fff;
  color: #1a1a1a;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.okur-premium-plan:hover {
  box-shadow: 0 4px 20px rgba(74, 90, 245, 0.15);
}

.okur-premium-plan--active {
  border-color: #4a5af5;
  box-shadow: 0 0 0 1px rgba(74, 90, 245, 0.5), 0 8px 28px rgba(74, 90, 245, 0.25);
}

.okur-premium-plan strong {
  font-family: var(--font-nav);
  font-size: 0.95rem;
}

.okur-premium-plan-note {
  display: block;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
}

.okur-premium-plan-gift {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  color: #4a5af5;
}

.okur-premium-plan-indicator {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5af5, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.okur-premium-plan-indicator--empty {
  background: #fff;
  border: 2px solid #c8c8c8;
}

.okur-premium-plan-indicator--empty i {
  display: none;
}

.okur-premium-cta {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 12px;
  color: #fff !important;
  background: linear-gradient(90deg, #4a5af5 0%, #7c3aed 100%);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.okur-premium-cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
  transform: translateY(-1px);
}

.okur-premium-footnote {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.okur-premium-login {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.okur-premium-login:hover {
  color: #fff;
}

.okur-premium-visual {
  max-width: 520px;
}

.okur-premium-phones {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* 4’lü istatistik sayaç */
.stats-count-section {
  background: var(--okur-surface);
  border-top: 1px solid var(--okur-border);
  border-bottom: 1px solid var(--okur-border);
}

.stats-count-row {
  --stats-divider: rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .stats-count-item {
    border-right: 1px solid var(--stats-divider);
    padding: 0.5rem 1rem;
  }

  .stats-count-row .col-lg-3:last-child .stats-count-item {
    border-right: none;
  }
}

.stats-count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
}

.stats-count-value {
  font-family: var(--font-nav);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--okur-text);
  min-height: 1.2em;
}

.stats-count-label {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--okur-muted);
}

[data-theme="dark"] .stats-count-row {
  --stats-divider: rgba(255, 255, 255, 0.1);
}

.feature-duo-panel {
  border: 1px solid rgba(0, 0, 0, 0.88);
  border-radius: 14px;
  padding: 1.15rem 1rem 1.35rem;
  margin-top: 0.75rem;
  background: var(--okur-surface);
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-duo-panel {
    padding: 1.5rem 1.35rem 1.65rem;
  }
}

[data-theme="dark"] .feature-duo-panel {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--okur-surface);
}

/* İki sütun özellik slider — oklar yalnızca sol sütun altında ortalı */
.feature-duo-section {
  background: var(--okur-bg);
}

.feature-duo-carousel .carousel-inner {
  overflow: hidden;
}

.feature-duo-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-duo-brand-name {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--okur-text);
}

.feature-duo-badge {
  font-family: var(--font-nav);
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem !important;
  color: #1d6bc4 !important;
  border: 1px solid #1d6bc4 !important;
  background: transparent !important;
}

.feature-duo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.25;
  color: var(--okur-text);
  letter-spacing: -0.02em;
}

.feature-duo-lead {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--okur-muted);
  margin-bottom: 0;
}

.feature-duo-meta {
  font-family: var(--font-nav);
  color: #9a9a9a;
}

.feature-duo-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.feature-duo-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: min(520px, 70vh);
  object-fit: cover;
  border-radius: 18px;
}

.feature-duo-img--placeholder {
  min-height: 280px;
  border-radius: 18px;
}

.feature-duo-nav-inner {
  width: 100%;
  flex-shrink: 0;
}

.feature-duo-nav-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #888;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-duo-nav-btn:hover {
  background: #f5f5f5;
  color: #333;
  border-color: #aaa;
}

.feature-duo-nav-btn:focus-visible {
  outline: 2px solid var(--okur-teal);
  outline-offset: 2px;
}

.feature-duo-nav-btn .bi {
  font-size: 1.15rem;
  line-height: 1;
}

[data-theme="dark"] .feature-duo-nav-btn {
  background: var(--okur-surface);
  border-color: var(--okur-border);
  color: var(--okur-muted);
}

[data-theme="dark"] .feature-duo-nav-btn:hover {
  color: var(--okur-text);
}

/* Öne çıkan yazı — iki sütun (metin ortalı + şeftali görsel) */
.essay-split-section {
  background: var(--okur-bg);
}

.essay-split {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .essay-split {
  background: var(--okur-surface) !important;
  border-color: var(--okur-border) !important;
}

.essay-split-col--text {
  background: #fff;
  min-height: 280px;
}

[data-theme="dark"] .essay-split-col--text {
  background: var(--okur-surface);
}

.essay-split-tags {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c97a84;
}

[data-theme="dark"] .essay-split-tags {
  color: #e8a0a8;
}

.essay-split-tags-sep {
  opacity: 0.7;
  font-weight: 400;
}

.essay-split-hit--block:hover .essay-split-title,
.essay-split-hit--block:focus-visible .essay-split-title {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.essay-split-title {
  font-family: var(--font-nav);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--okur-text);
}

.essay-split-dek {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--okur-muted);
  line-height: 1.55;
}

.essay-split-byline {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.essay-split-author {
  color: var(--okur-text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.essay-split-author:hover {
  color: var(--okur-accent);
  border-bottom-color: var(--okur-accent);
}

.essay-split-oku {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  background: #fff;
  color: var(--okur-text);
  position: relative;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.essay-split-oku:hover {
  background: #f8f8f8;
  border-color: #bbb;
  color: var(--okur-text);
}

[data-theme="dark"] .essay-split-oku {
  background: var(--okur-surface);
  border-color: var(--okur-border);
}

.essay-split-col--visual {
  min-height: 280px;
}

.essay-split-visual {
  background: #fadbb6;
  min-height: 320px;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .essay-split-visual {
    min-height: 100%;
  }
}

.essay-split-hit--visual:hover .essay-split-img,
.essay-split-hit--visual:focus-visible .essay-split-img {
  opacity: 0.96;
  transform: scale(1.01);
}

.essay-split-img {
  max-width: 100%;
  max-height: min(420px, 55vh);
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

/* Bu yazıları okudunuz mu — kart slider */
.recommended-section {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .recommended-section {
  background: rgba(255, 255, 255, 0.03);
}

.recommended-swiper {
  overflow: hidden;
}

.recommended-swiper .swiper-slide {
  height: auto;
}

.rec-card {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 0.25rem 0.5rem;
}

.rec-card-img-wrap {
  max-width: 300px;
  border-radius: 2px;
  overflow: hidden;
}

.rec-card-img {
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.rec-card-img--ph {
  min-height: 280px;
  background-size: cover !important;
}

.rec-card-audio-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #111;
  font-size: 1rem;
  pointer-events: none;
}

.rec-card-hit:hover .rec-card-title,
.rec-card-hit:focus-visible .rec-card-title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.rec-card-tag {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.rec-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  color: var(--okur-text);
}

.rec-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--okur-text);
}

.rec-card-byline {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  color: var(--okur-muted);
}

.rec-card-by-label {
  font-weight: 400;
  margin-right: 0.25rem;
}

.rec-card-author-link {
  font-weight: 700;
  color: var(--okur-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.rec-card-author-link:hover {
  color: var(--okur-accent);
  border-bottom-color: var(--okur-accent);
}

.recommended-nav-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #666;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.recommended-nav-btn:hover {
  background: #f5f5f5;
  color: #222;
  border-color: #aaa;
}

.recommended-nav-btn:focus-visible {
  outline: 2px solid var(--okur-teal);
  outline-offset: 2px;
}

.recommended-nav-btn .bi {
  font-size: 1.15rem;
}

.recommended-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

[data-theme="dark"] .recommended-nav-btn {
  background: var(--okur-surface);
  border-color: var(--okur-border);
  color: var(--okur-muted);
}

.card-img-top {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ddd;
}

/* Aposto blokları */
.aposto-block {
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  padding: 1.25rem;
  height: 100%;
}

.aposto-block small {
  color: var(--okur-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Tür seçici */
.pill-cat {
  font-size: 0.8rem;
}

/* Bülten — rahatsız etmeyen */
.newsletter-inline {
  background: linear-gradient(
    90deg,
    rgba(196, 30, 58, 0.06),
    rgba(196, 30, 58, 0.02)
  );
  border: 1px solid var(--okur-border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
}

[data-theme="dark"] .newsletter-inline {
  background: linear-gradient(
    90deg,
    rgba(232, 93, 108, 0.12),
    rgba(232, 93, 108, 0.04)
  );
}

.newsletter-inline--pro {
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.09) 0%,
    rgba(61, 122, 122, 0.08) 55%,
    rgba(61, 122, 122, 0.02) 100%
  );
  border: 1px solid rgba(61, 122, 122, 0.2);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .newsletter-inline--pro {
  background: linear-gradient(
    135deg,
    rgba(232, 93, 108, 0.16) 0%,
    rgba(61, 122, 122, 0.14) 55%,
    rgba(61, 122, 122, 0.06) 100%
  );
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.newsletter-kicker {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.15;
  color: var(--okur-text);
}

.newsletter-sub {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--okur-muted);
  max-width: 40ch;
}

.newsletter-input-pro {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--okur-border);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.55rem 1rem;
  font-family: var(--font-nav);
  font-size: 0.82rem;
}

[data-theme="dark"] .newsletter-input-pro {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--okur-text);
}

.newsletter-input-pro:focus {
  box-shadow: 0 0 0 0.2rem rgba(61, 122, 122, 0.18);
  border-color: rgba(61, 122, 122, 0.45);
}

.newsletter-btn-pro {
  min-height: 44px;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  border: 1px solid #1c1c1c;
  background: #111;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.newsletter-btn-pro:hover {
  background: #252525;
  border-color: #252525;
  color: #fff;
}

/* Sayılar grid */
.issue-card {
  text-align: center;
  border: 1px solid var(--okur-border);
  background: var(--okur-surface);
  padding: 1rem;
  transition: border-color 0.2s;
}

.issue-card:hover {
  border-color: var(--okur-accent);
}

.issue-cover-mini {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #333, #111);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

/* Makale */
.article-hero-img {
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

.article-meta .badge {
  font-weight: 500;
}

.share-tools .btn {
  font-size: 0.85rem;
}

.share-tools-icons a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--okur-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--okur-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.share-tools-icons a:hover {
  color: var(--okur-text);
  border-color: var(--okur-accent);
  transform: translateY(-1px);
}

.article-author-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 14px;
  padding: 1rem;
}

.article-author-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex: 0 0 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #4a5af5 0%, #2f6868 100%);
}

.article-author-kicker {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--okur-muted);
}

.article-author-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--okur-text);
}

.article-author-bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--okur-muted);
}

.article-author-link {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--okur-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.article-author-link:hover {
  color: var(--okur-accent);
  border-bottom-color: var(--okur-accent);
}

@media (max-width: 575.98px) {
  .article-author-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.reading-time {
  font-variant-numeric: tabular-nums;
}

/* Footer harita placeholder */
.map-placeholder {
  height: 200px;
  background: var(--okur-surface);
  border: 1px dashed var(--okur-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--okur-muted);
  font-size: 0.9rem;
}

footer {
  border-top: 1px solid var(--okur-border);
  padding: 3rem 0 2rem;
  background: var(--okur-surface);
}

footer a {
  color: var(--okur-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--okur-accent);
}

/* Ana sayfa - modern sade footer */
.site-footer-v2 {
  border-top: 1px solid var(--okur-border);
  padding: 3.25rem 0 1.75rem;
  background: var(--okur-surface);
}

.site-footer-brand {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--okur-text);
}

.site-footer-brand .okur-logo {
  display: block;
  width: auto;
  height: 2rem;
}

.site-footer-brand:hover {
  color: var(--okur-text);
  opacity: 0.85;
}

.site-footer-text {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--okur-muted);
  max-width: 30rem;
}

.site-footer-title {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okur-text);
}

.site-footer-list li + li {
  margin-top: 0.55rem;
}

.site-footer-list a {
  font-family: var(--font-nav);
  font-size: 0.84rem;
  color: var(--okur-muted);
  text-decoration: none;
}

.site-footer-list a:hover {
  color: var(--okur-accent);
}

.site-footer-social a {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--okur-border);
  border-radius: 50%;
  color: var(--okur-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-footer-social a:hover {
  border-color: var(--okur-accent);
  color: var(--okur-accent);
  transform: translateY(-1px);
}

.site-footer-bottom {
  border-top: 1px solid var(--okur-border);
  color: var(--okur-muted);
}

.site-footer-bottom a {
  color: var(--okur-muted);
  text-decoration: none;
}

.site-footer-bottom a:hover {
  color: var(--okur-accent);
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--okur-accent);
  display: inline-block;
}

/* —— Sayılar arşiv sayfası —— */
.sayilar-main {
  background-color: var(--okur-bg);
  background-image: radial-gradient(
    var(--okur-border) 0.8px,
    transparent 0.8px
  );
  background-size: 14px 14px;
}

[data-theme="dark"] .sayilar-main {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.8px,
    transparent 0.8px
  );
}

.sayilar-header {
  max-width: 42rem;
}

.sayilar-page-title,
.page-title-display {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--okur-text);
}

.sayilar-title-rule {
  height: 5px;
  width: min(100%, 18rem);
  background: #1a2744;
  margin-top: 0.65rem;
  border-radius: 1px;
}

[data-theme="dark"] .sayilar-title-rule {
  background: #8fa8c4;
}

.issue-archive-card {
  transition: transform 0.2s ease;
}

.issue-archive-card:hover,
.issue-archive-card:focus-visible {
  transform: translateY(-3px);
}

.issue-archive-card:focus-visible {
  outline: 2px solid var(--okur-teal);
  outline-offset: 4px;
}

.issue-archive-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 220px;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border: 3px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.issue-archive-card:hover .issue-archive-cover,
.issue-archive-card:focus-visible .issue-archive-cover {
  border-color: #6f42c1;
  box-shadow: 0 12px 32px rgba(111, 66, 193, 0.2);
}

.issue-cover--green {
  background: linear-gradient(
    155deg,
    #1e4a3d 0%,
    #2d6b52 35%,
    #5a9d7a 70%,
    #8bc4a8 100%
  );
}

.issue-cover--blue {
  background: linear-gradient(
    165deg,
    #1a3a5c 0%,
    #2d5a8a 40%,
    #4a7ab0 75%,
    #7aa8d4 100%
  );
}

.issue-cover--purple {
  background: linear-gradient(
    160deg,
    #3d2a5c 0%,
    #5c3d7a 45%,
    #7a5a9a 80%,
    #a88cc4 100%
  );
}

.issue-cover-deco {
  position: absolute;
  inset: 18% 14%;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.issue-cover-deco::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22%;
  bottom: 28%;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.15) 0 3px,
    transparent 3px 10px
  );
  border-radius: 2px;
  opacity: 0.85;
}

.issue-cover-deco--book {
  inset: 22% 18%;
  background: rgba(255, 255, 255, 0.18);
}

.issue-cover-deco--book::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  bottom: 15%;
  width: 3px;
  margin-left: -1.5px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 1px;
}

.issue-cover-deco--simple {
  inset: 28% 24%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.issue-cover-deco--simple::after {
  display: none;
}

.issue-archive-num {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--okur-muted);
}

.issue-archive-title {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--okur-text);
}

.sayilar-pagination .page-link {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
}

.sayilar-pagination .page-item.disabled .page-link {
  pointer-events: none;
  opacity: 0.45;
}

/* —— Röportajlar (bordo panel + Swiper) —— */
.roportajlar-section {
  background-color: var(--okur-bg);
  background-image: radial-gradient(
    var(--okur-border) 0.8px,
    transparent 0.8px
  );
  background-size: 14px 14px;
}

[data-theme="dark"] .roportajlar-section {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.8px,
    transparent 0.8px
  );
}

.roportajlar-panel {
  background: linear-gradient(
    165deg,
    #4a141c 0%,
    #6b1f2a 42%,
    #521820 100%
  );
  box-shadow: 0 22px 56px rgba(45, 12, 18, 0.35);
  padding: 1.75rem 1rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .roportajlar-panel {
    padding: 2.25rem 1.75rem 1.75rem;
  }
}

@media (min-width: 1200px) {
  .roportajlar-panel {
    padding: 2.5rem 2.25rem 2rem;
  }
}

.roportajlar-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  color: #fff;
}

.roportajlar-title-rule {
  width: min(12rem, 55vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1px;
}

.roportajlar-swiper {
  padding: 0 2.5rem 0.5rem;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .roportajlar-swiper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.roportaj-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roportaj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .roportaj-card {
  background: var(--okur-surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.roportaj-card-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #2a2a2a;
}

.roportaj-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.roportaj-card-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.roportaj-card-tint--purple {
  background: linear-gradient(
    195deg,
    rgba(120, 60, 180, 0.48) 0%,
    rgba(40, 15, 70, 0.55) 100%
  );
  mix-blend-mode: multiply;
}

.roportaj-card-tint--olive {
  background: linear-gradient(
    195deg,
    rgba(180, 160, 40, 0.5) 0%,
    rgba(70, 55, 15, 0.52) 100%
  );
  mix-blend-mode: multiply;
}

.roportaj-card-tint--slate {
  background: linear-gradient(
    195deg,
    rgba(70, 80, 95, 0.55) 0%,
    rgba(25, 28, 35, 0.58) 100%
  );
  mix-blend-mode: multiply;
}

.roportaj-card-tint--ember {
  background: linear-gradient(
    195deg,
    rgba(200, 70, 45, 0.48) 0%,
    rgba(90, 25, 15, 0.55) 100%
  );
  mix-blend-mode: multiply;
}

.roportaj-card-body {
  padding: 1rem 1.05rem 1.2rem;
}

.roportaj-card-label {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okur-accent);
  margin-bottom: 0;
}

.roportaj-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--okur-text);
}

.roportaj-card-meta {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--okur-muted);
}

.roportaj-card-sub {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--okur-muted);
  opacity: 0.92;
}

.roportajlar-swiper .roportajlar-nav {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.28);
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.roportajlar-swiper .roportajlar-nav::after {
  font-size: 0.9rem !important;
  font-weight: 700;
}

.roportajlar-swiper .swiper-button-prev.roportajlar-nav {
  left: 2px;
}

.roportajlar-swiper .swiper-button-next.roportajlar-nav {
  right: 2px;
}

.roportajlar-swiper .roportajlar-nav.swiper-button-disabled {
  opacity: 0.35;
}

/* —— Sayı detay: Bu Sayımızda Neler Var? (koyu grid) —— */
.sayimizda-section {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
}

.sayimizda-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding: 0 0.25rem;
}

.sayimizda-heading-line {
  flex: 1 1 2rem;
  min-width: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  max-width: 100%;
}

.sayimizda-heading-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  flex: 0 1 auto;
}

.sayimizda-card {
  color: rgba(255, 255, 255, 0.82);
  transition: opacity 0.2s ease;
}

.sayimizda-card:hover {
  opacity: 0.92;
  color: #fff;
}

.sayimizda-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.sayimizda-thumb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.sayimizda-desc {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.sayimizda-thumb--a {
  background: linear-gradient(145deg, #3d2a4a 0%, #1a1220 100%);
}

.sayimizda-thumb--b {
  background: linear-gradient(155deg, #2a4a3d 0%, #101a16 100%);
}

.sayimizda-thumb--c {
  background: linear-gradient(160deg, #4a3530 0%, #1c1412 100%);
}

.sayimizda-thumb--d {
  background: linear-gradient(150deg, #3a3548 0%, #15141c 100%);
}

.sayimizda-thumb--e {
  background: linear-gradient(165deg, #2f3d4a 0%, #121820 100%);
}

.sayimizda-thumb--f {
  background: linear-gradient(145deg, #4a3a32 0%, #1c1814 100%);
}

.sayimizda-thumb--g {
  background: linear-gradient(155deg, #35384a 0%, #14151f 100%);
}

.sayimizda-thumb--h {
  background: linear-gradient(160deg, #4a3240 0%, #1a1016 100%);
}

/* —— Sayı detay (kapak + yazarlar) —— */
.sayi-detail-main {
  overflow-x: hidden;
}

.sayi-detail-number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--okur-text);
}

.sayi-detail-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--okur-text);
}

.sayi-detail-cover-wrap {
  max-width: min(100%, 300px);
}

.sayi-detail-cover-wrap .issue-archive-cover {
  max-width: none;
  width: 100%;
  margin-bottom: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.sayi-detail-authors {
  max-width: 42rem;
  padding: 0 0.5rem;
}

.sayi-detail-authors-line {
  border: 0;
  border-top: 1px solid var(--okur-border);
  opacity: 1;
  margin: 0;
}

.sayi-detail-author-list {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--okur-muted);
  text-align: center;
  padding: 1rem 0;
}

.sayi-author-dot {
  display: inline;
  color: var(--okur-accent);
  font-weight: 700;
  padding: 0 0.35rem;
  user-select: none;
}

/* —— Kategoriler + Yazilar sayfalari —— */
.yazilar-page {
  background-color: var(--okur-bg);
  background-image: radial-gradient(
    var(--okur-border) 0.8px,
    transparent 0.8px
  );
  background-size: 14px 14px;
}

[data-theme="dark"] .yazilar-page {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.8px,
    transparent 0.8px
  );
}

.yazilar-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--okur-text);
}

.yazilar-title-rule {
  height: 5px;
  width: min(100%, 42rem);
  background: #2d4668;
  border-radius: 2px;
}

[data-theme="dark"] .yazilar-title-rule {
  background: #8fa8c4;
}

.kategori-panel {
  background: #0f1114;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 1.25rem 1rem;
}

.kategori-badge {
  margin: 0 auto 1.25rem;
  width: fit-content;
  min-width: min(100%, 320px);
  text-align: center;
  background: #000;
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  border-radius: 12px;
  padding: 0.45rem 1.35rem;
  letter-spacing: 0.01em;
}

.kategori-grid {
  row-gap: 1.35rem;
}

.kategori-tile {
  display: block;
  text-decoration: none;
  color: #121212;
}

.kategori-card-box {
  min-height: 160px;
  border: 4px solid #2f6868;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kategori-tile:hover .kategori-card-box {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.kategori-row-divider {
  height: 24px;
  border-radius: 12px;
  background: #000;
  margin: 1.4rem 0 1.15rem;
}

.kategori-c1 {
  background: #c9a595;
}
.kategori-c2 {
  background: #c58143;
}
.kategori-c3 {
  background: #c9c4cc;
}
.kategori-c4 {
  background: #d2bf67;
}
.kategori-c5 {
  background: #adc2cf;
}
.kategori-c6 {
  background: #5ca05a;
}
.kategori-c7 {
  background: #7a5aa3;
}
.kategori-c8 {
  background: #51b3b1;
}
.kategori-c9 {
  background: #ef4944;
}
.kategori-c10 {
  background: #608da2;
}

.kategori-note {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #c9ced4;
}

/* —— Kategoriler modern tasarım —— */
.kategoriler-modern-page {
  background-color: var(--okur-bg);
  background-image: radial-gradient(var(--okur-border) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
}

[data-theme="dark"] .kategoriler-modern-page {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px);
}

.kategoriler-modern-lead {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--okur-muted);
  max-width: 54ch;
}

.kategoriler-modern-grid {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.kategoriler-modern-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--okur-border);
  border-radius: 999px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--okur-muted);
}

.kategoriler-modern-card {
  display: block;
  height: 100%;
  text-decoration: none;
  border: 1px solid rgba(20, 30, 36, 0.2);
  border-radius: 18px;
  padding: 1rem 0.95rem;
  color: #1d2328;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.kategoriler-modern-card:hover {
  transform: translateY(-3px);
  filter: saturate(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 24px rgba(0, 0, 0, 0.22);
}

.kategoriler-modern-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(20, 30, 36, 0.18);
  color: #11161a;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.kategoriler-modern-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.kategoriler-modern-text {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(18, 24, 29, 0.82);
}

[data-theme="dark"] .kategoriler-modern-grid {
  background: rgba(19, 23, 27, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

/* —— Yazılar modern tasarım —— */
.yazilar-modern-page {
  background-color: var(--okur-bg);
  background-image: radial-gradient(var(--okur-border) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
}

[data-theme="dark"] .yazilar-modern-page {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px);
}

.yazilar-hero {
  padding: clamp(1rem, 1.8vw, 1.2rem) clamp(1rem, 2vw, 1.3rem);
  border: 1px solid var(--okur-border);
  border-radius: 16px;
  background: var(--okur-surface);
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--okur-muted);
}

.page-breadcrumb a {
  color: var(--okur-muted);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--okur-text);
}

.yazilar-hero-sub {
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--okur-muted);
}

.yazilar-hero-meta {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--okur-muted);
}

[data-theme="dark"] .yazilar-hero {
  background: rgba(19, 23, 27, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
}

.yazilar-grid-clean .row {
  row-gap: 1.05rem;
}

.yazilar-modern-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 14px;
  padding: 0.85rem 0.85rem 0.9rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yazilar-modern-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(20, 30, 36, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.yazilar-modern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.yazilar-modern-card:hover .yazilar-modern-media {
  filter: saturate(1.06);
}

[data-theme="dark"] .yazilar-modern-card {
  background: rgba(19, 23, 27, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

.yazilar-modern-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(20, 30, 36, 0.25);
  padding: 0.22rem 0.55rem;
  font-family: var(--font-nav);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #152028;
  margin-bottom: 0.65rem;
}

.yazilar-modern-title {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.25;
  color: var(--okur-text);
  margin-bottom: 0.45rem;
}

.yazilar-modern-text {
  font-family: var(--font-body);
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--okur-muted);
  margin-bottom: 0.7rem;
}

.yazilar-modern-meta {
  margin-top: auto;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--okur-muted);
}

.yazi-panel-title {
  margin: 0 auto 1.25rem;
  width: fit-content;
  min-width: min(100%, 440px);
  text-align: center;
  background: #000;
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.9rem);
  border-radius: 12px;
  padding: 0.45rem 1.35rem;
}

.yazi-grid-card {
  text-decoration: none;
  color: #e8edf1;
  display: block;
}

.yazi-grid-thumb {
  aspect-ratio: 3 / 4;
  border: 4px solid #2f6868;
  border-radius: 4px;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #111;
}

.yazi-grid-desc {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  line-height: 1.45;
  color: #d5dae0;
  margin-bottom: 0;
}

.yazilar-trigger-note {
  display: inline-block;
  background: #f7e373;
  color: #151515;
  border-radius: 10px;
  padding: 0.22rem 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.7vw, 1.85rem);
  box-shadow: inset 0 -2px 0 rgba(96, 61, 151, 0.55);
}

/* —— Yazarlar sayfasi —— */
.yazarlar-page {
  background-color: var(--okur-bg);
  background-image: radial-gradient(
    var(--okur-border) 0.8px,
    transparent 0.8px
  );
  background-size: 14px 14px;
}

[data-theme="dark"] .yazarlar-page {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.8px,
    transparent 0.8px
  );
}

.yazarlar-lead {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--okur-muted);
  max-width: 52ch;
}

.yazarlar-grid-card {
  height: 100%;
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 14px;
  padding: 1.2rem 1.1rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.yazarlar-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(61, 122, 122, 0.34);
}

.yazar-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.yazar-avatar--a {
  background: linear-gradient(150deg, #8c6e42, #274f4f);
}
.yazar-avatar--b {
  background: linear-gradient(150deg, #7a5aa3, #4c3567);
}
.yazar-avatar--c {
  background: linear-gradient(150deg, #b26a47, #6f3f29);
}
.yazar-avatar--d {
  background: linear-gradient(150deg, #5f8f54, #36522f);
}

.yazar-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--okur-text);
}

.yazar-role {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.yazar-bio {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--okur-muted);
}

.yazar-link {
  font-family: var(--font-nav);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--okur-text);
  text-decoration: none;
  border: 1px solid var(--okur-border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.yazar-link:hover {
  color: var(--okur-accent);
  border-color: var(--okur-accent);
}

/* —— Yazar detay sayfasi —— */
.yazar-detail-hero {
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 18px;
  padding: 1.25rem;
}

@media (min-width: 992px) {
  .yazar-detail-hero {
    padding: 1.6rem;
  }
}

.yazar-detail-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(150deg, #8c6e42, #274f4f);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.yazar-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05;
  color: var(--okur-text);
}

.yazar-detail-role {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.yazar-detail-bio {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--okur-text);
}

.yazar-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.yazar-meta-list li {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--okur-muted);
  border: 1px solid var(--okur-border);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.yazar-article-card {
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yazar-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.yazar-article-kicker {
  font-family: var(--font-nav);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.yazar-article-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.25;
  color: var(--okur-text);
}

.yazar-article-excerpt {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--okur-muted);
}

.yazar-article-link {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--okur-text);
  text-decoration: none;
}

.yazar-article-link:hover {
  color: var(--okur-accent);
}

/* —— Giris / Kayit sayfalari —— */
.auth-page {
  min-height: calc(100vh - 150px);
  background-color: var(--okur-bg);
  background-image: radial-gradient(
    var(--okur-border) 0.8px,
    transparent 0.8px
  );
  background-size: 14px 14px;
}

[data-theme="dark"] .auth-page {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.8px,
    transparent 0.8px
  );
}

.auth-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.auth-card {
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

[data-theme="dark"] .auth-card {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.auth-side {
  background: linear-gradient(
    145deg,
    rgba(196, 30, 58, 0.12) 0%,
    rgba(61, 122, 122, 0.14) 100%
  );
  border-right: 1px solid var(--okur-border);
  padding: 2rem 1.5rem;
}

[data-theme="dark"] .auth-side {
  background: linear-gradient(
    145deg,
    rgba(232, 93, 108, 0.18) 0%,
    rgba(61, 122, 122, 0.2) 100%
  );
}

.auth-kicker {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okur-accent);
}

.auth-side-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.45rem);
  line-height: 1.1;
  color: var(--okur-text);
}

.auth-side-text {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--okur-muted);
}

.auth-form-wrap {
  padding: 2rem 1.5rem;
}

@media (min-width: 992px) {
  .auth-form-wrap,
  .auth-side {
    padding: 2.35rem 2.1rem;
  }
}

.auth-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  color: var(--okur-text);
}

.auth-form-sub {
  font-family: var(--font-nav);
  font-size: 0.84rem;
  color: var(--okur-muted);
}

.auth-label {
  font-family: var(--font-nav);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--okur-text);
}

.auth-input {
  min-height: 45px;
  border-radius: 12px;
  border: 1px solid var(--okur-border);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-nav);
  font-size: 0.86rem;
}

[data-theme="dark"] .auth-input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--okur-text);
}

.auth-input:focus {
  border-color: rgba(61, 122, 122, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(61, 122, 122, 0.16);
}

.auth-btn {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-btn:hover {
  background: #252525;
  border-color: #252525;
  color: #fff;
}

.auth-link-row {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  color: var(--okur-muted);
}

.auth-link-row a {
  color: var(--okur-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.auth-link-row a:hover {
  color: var(--okur-accent);
  border-bottom-color: var(--okur-accent);
}

.kurumsal-page {
  background: var(--okur-bg);
}

.kurumsal-header {
  max-width: 56rem;
}

.kurumsal-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--okur-muted);
}

.kurumsal-card {
  background: var(--okur-surface);
  border: 1px solid var(--okur-border);
  border-radius: 20px;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.kurumsal-card-title {
  font-family: var(--font-nav);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: 0.015em;
  color: var(--okur-text);
}

.kurumsal-card p {
  color: var(--okur-text);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.kurumsal-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--okur-text);
  line-height: 1.7;
}

.kurumsal-list li + li {
  margin-top: 0.45rem;
}

.kurumsal-meta li {
  color: var(--okur-text);
  line-height: 1.7;
  margin-bottom: 0.45rem;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
}

.contact-info-list i {
  color: var(--okur-accent);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.contact-info-list strong {
  display: block;
  font-family: var(--font-nav);
  color: var(--okur-text);
}

.contact-info-list a,
.contact-info-list span {
  color: var(--okur-muted);
  text-decoration: none;
}

.contact-info-list a:hover {
  color: var(--okur-accent);
}

.kurumsal-label {
  color: var(--okur-text);
  font-family: var(--font-nav);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kurumsal-input {
  border-radius: 12px;
  border: 1px solid var(--okur-border);
  background: var(--okur-surface);
  color: var(--okur-text);
}

.kurumsal-input:focus {
  border-color: color-mix(in srgb, var(--okur-accent) 38%, var(--okur-border));
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--okur-accent) 22%, transparent);
}

.kurumsal-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.58rem 1.3rem;
  background: var(--okur-accent);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kurumsal-btn:hover {
  background: color-mix(in srgb, var(--okur-accent) 88%, #000);
  color: #fff;
}

[data-theme="dark"] .kurumsal-card {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

@media (max-width: 575.98px) {
  .kurumsal-page .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .kurumsal-header {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
}
