/* ==========================================================================
   seo-hizmet.css
   Unique styling for /seo/tr.html — specifically the "_seo_engine" showcase.
   Borrows the visual vocabulary of DMU's own kpi-wall design family
   (oversized numbers, tight horizontal data strips, dense factual hierarchy)
   as a self-referential proof point: this is how DMU actually designs
   its own regional/sector SEO pages.
   Scoped under .one-article so it inherits --article-bg/--article-ink/
   --article-muted/--article-line from dmu-one-articles.css, and reuses
   --primary / --font-primary from variables.css. No colors hardcoded.
   ========================================================================== */

.seo-engine-showcase {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--article-line);
}

.seo-engine-showcase__intro {
  max-width: 44rem;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  color: var(--article-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.seo-engine-showcase__intro code,
.one-definition__content code {
  padding: .1em .4em;
  border: 1px solid var(--article-line);
  border-radius: .3rem;
  color: var(--article-ink);
  background: rgba(204, 33, 20, .07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
}

/* --- KPI data strip: oversized numbers, tight horizontal rhythm --- */
.seo-engine-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
  border-block: 1px solid var(--article-line);
}

.seo-engine-stats__item {
  padding: 1.5rem 1.75rem;
  border-left: 1px solid var(--article-line);
}

.seo-engine-stats__item:first-child {
  border-left: 0;
}

.seo-engine-stats__item strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.seo-engine-stats__item span {
  display: block;
  margin-top: .6rem;
  color: var(--article-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- Structured-data code panel: a real, trimmed excerpt of the live
   FAQPage JSON-LD this site ships, framed as a code editor. --- */
.seo-schema-panel {
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: .85rem;
  background: #161411;
}

.seo-schema-panel__head {
  padding: .9rem 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
}

.seo-schema-panel__path {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, .5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .74rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.seo-schema-panel__code {
  overflow-x: auto;
  margin: 0;
  padding: 1.5rem 1.5rem 1.35rem;
  color: rgba(255, 255, 255, .82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  line-height: 1.7;
  tab-size: 2;
}

.seo-schema-panel__code code {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
}

.seo-schema-panel__link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 1.5rem 1.5rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--primary);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}

.seo-schema-panel__link span {
  color: var(--primary);
  transition: transform .25s ease;
}

.seo-schema-panel__link:hover span {
  transform: translateX(.3rem);
}

/* --- Responsive --- */
@media (max-width: 760px) {
  .seo-engine-stats {
    grid-template-columns: 1fr;
  }

  .seo-engine-stats__item {
    border-left: 0;
    border-top: 1px solid var(--article-line);
  }

  .seo-engine-stats__item:first-child {
    border-top: 0;
  }

  .seo-schema-panel__code {
    font-size: .76rem;
  }
}
