/* Sosyal Medya Sözlüğü — tema ile uyumlu bloklar */
.sm-sozluk {
  font-family: inherit;
  --smz-bg: #f3f4f8;
  --smz-hero: linear-gradient(135deg, #162a8e 0%, #0d1a5c 100%);
  --smz-card: #fff;
  --smz-muted: #6b7280;
  --smz-border: #e5e7eb;
  --smz-accent: #00c8ff;
  /* Tema birincil mavi (spe.css --primary ile uyumlu) */
  --smz-btn: var(--primary, #162a8e);
  --smz-btn-hover: var(--primary-dark, #0d1a5c);
  /*
   * Sabit header (extra.php .bold-header): üst bar + ana şerit.
   * .intro--page padding-top ile aynı mantık — hero header altında kalmaz.
   */
  padding-top: 160px;
}

@media (max-width: 1024px) {
  .sm-sozluk {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .sm-sozluk {
    /* Mobilde .bold-topbar gizli; yalnızca .bold-container 68px */
    padding-top: 92px;
  }
}

.sm-sozluk-hero {
  background: var(--smz-hero);
  color: #fff;
  padding: 2.5rem 0 2rem;
  margin-bottom: 0;
  /* Üstteki beyaz boşluğu kapatır (sabit header + .sm-sozluk padding-top fazlası) */
  margin-top: -60px !important;
}

.sm-sozluk-hero .sm-sozluk-crumb {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.sm-sozluk-hero .sm-sozluk-crumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.sm-sozluk-hero .sm-sozluk-crumb a:hover {
  text-decoration: underline;
}

.sm-sozluk-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.sm-sozluk-search-wrap {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.sm-sozluk-search-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  font-size: 1.25rem;
}

.sm-sozluk-search {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem 0.85rem 3rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.sm-sozluk-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.sm-sozluk-alpha a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sm-sozluk-alpha a:hover,
.sm-sozluk-alpha a.is-active {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
}

.sm-sozluk-body {
  
  padding: 2rem 0 3rem;
}

.sm-sozluk-letter-bar {
  background: #e8eaef;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
  margin: 0 0 1rem;
  border-radius: 6px;
}

/* Harf çubuğu her zaman section içinde ilk eleman; :first-child tüm bölümlerde üst boşluğu sıfırlıyordu. */
.sm-sozluk-section:not(:first-child) .sm-sozluk-letter-bar {
  margin-top: 2rem;
}

.sm-sozluk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .sm-sozluk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sm-sozluk-grid {
    grid-template-columns: 1fr;
  }
}

.sm-sozluk-card {
  background: var(--smz-card);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--smz-border);
  box-shadow: 0 2px 12px rgba(15, 20, 25, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sm-sozluk-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.sm-sozluk-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--smz-muted);
  line-height: 1.55;
  flex: 1;
}

.sm-sozluk-card .sm-sozluk-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--smz-border);
  color: #374151;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}

.sm-sozluk-card .sm-sozluk-more:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.sm-sozluk-card.is-hidden {
  display: none;
}

.sm-sozluk-section.is-empty {
  display: none;
}

/* Terim iç sayfa */
.sm-sozluk-term-hero {
  background: var(--smz-hero);
  color: #fff;
  padding: 2.25rem 0 1.75rem;
  margin-top: -60px !important;
}

.sm-sozluk-term-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  margin: 0 0 0.75rem;
}

.sm-sozluk-term-meta {
  font-size: 0.9rem;
  opacity: 0.92;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.sm-sozluk-term-layout {
 
  padding: 2rem 0 3rem;
}

.sm-sozluk-term-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 992px) {
  .sm-sozluk-term-grid {
    grid-template-columns: 1fr;
  }
}

.sm-sozluk-article {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--smz-border);
  box-shadow: 0 2px 12px rgba(15, 20, 25, 0.04);
}

.sm-sozluk-article .sm-sozluk-content {
  line-height: 1.75;
  color: #1f2937;
}

.sm-sozluk-article .sm-sozluk-content h2,
.sm-sozluk-article .sm-sozluk-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.sm-sozluk-meta-box {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: #f3f4f6;
  border-radius: 10px;
  border: 1px solid var(--smz-border);
}

.sm-sozluk-meta-box h4 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.sm-sozluk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sm-sozluk-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--smz-border);
}

.sm-sozluk-pill > i {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.sm-sozluk-pill-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sm-sozluk-pill-link:hover {
  border-color: var(--smz-btn, #162a8e);
  box-shadow: 0 2px 10px rgba(22, 42, 142, 0.1);
  color: #111827;
}

.sm-sozluk-pill-link .sm-sozluk-pill-badge {
  margin-left: 0.15rem;
  padding: 0.1rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 4px;
}

.sm-sozluk-linklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-sozluk-linklist li {
  margin-bottom: 0.35rem;
}

.sm-sozluk-linklist a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #162a8e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sm-sozluk-linklist a:hover {
  text-decoration: underline;
}

.sm-sozluk-share {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.sm-sozluk-share span {
  font-weight: 600;
  color: #374151;
}

.sm-sozluk-share a {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #1f2937;
  text-decoration: none;
}

.sm-sozluk-share a:hover {
  background: #d1d5db;
}

.sm-sozluk-sidecard {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--smz-border);
  margin-bottom: 1rem;
}

.sm-sozluk-sidecard h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.sm-sozluk-sidecard ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-sozluk-sidecard li a {
  display: block;
  padding: 0.35rem 0;
  color: #162a8e;
  text-decoration: none;
  font-size: 0.9rem;
}

.sm-sozluk-sidecard li a:hover {
  text-decoration: underline;
}

.sm-sozluk-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem;
  margin-top: 0.75rem;
  border-radius: 10px;
  background: #162a8e;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sm-sozluk-back:hover {
  opacity: 0.92;
  color: #fff !important;
}

.sm-sozluk-cta {
  text-align: center;
  padding: 1.25rem;
  font-family: inherit;
}

.sm-sozluk-cta-logo {
  display: block;
  max-height: 52px;
  width: auto;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.sm-sozluk-cta-text {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  color: var(--text, inherit);
}

.sm-sozluk-cta .sm-sozluk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--smz-btn);
  color: #fff !important;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: inherit;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.sm-sozluk-cta .sm-sozluk-cta-btn:hover {
  background: var(--smz-btn-hover);
  color: #fff !important;
  opacity: 0.95;
}

.sm-sozluk-letter-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #162a8e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
