/* Sprint Teknoloji — Plaka Tanıma Sistemi | Ana Stil Dosyası */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.skip-link{position:absolute;left:-9999px;top:0;background:#0A1930;color:#fff;padding:12px 18px;z-index:9999;border-radius:0 0 8px 0;font-weight:700;text-decoration:none;}
.skip-link:focus{left:0;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

:root {
  --navy: #0a1930;
  --navy-2: #0f2340;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #10b981;
  --amber: #f59e0b;
  --ink: #0f172a;
  --slate: #475569;
  --slate-light: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(10, 25, 48, 0.18);
  --maxw: 1180px;
  --font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
  color: var(--slate);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section-tight {
  padding: 56px 0;
}
.section-soft {
  background: var(--bg-soft);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 640px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.55);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 25, 48, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.87rem;
  white-space: nowrap;
  transition: 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1300px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .brand {
    font-size: 1rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 24px 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links a {
    padding: 14px 8px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle {
    display: block;
  }
  .nav-phone {
    display: none;
  }
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, #123259 0%, var(--navy) 55%),
    linear-gradient(180deg, rgba(8, 17, 38, 0.88), rgba(8, 17, 38, 0.94)),
    url("../images/parking-garage-hero.webp");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: #fff;
}
.hero .lead {
  color: #cbd5e1;
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-size: 1.9rem;
  color: #fff;
}
.hero-stat span {
  color: #94a3b8;
  font-size: 0.86rem;
}
.hero-visual {
  background: linear-gradient(160deg, #132c4e, #0c1e38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.plate-demo {
  background: #0b1b33;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.plate-badge {
  display: block;
  width: 100%;
  max-width: 270px;
}
.plate-badge img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}
.plate-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plate-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #94a3b8;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.plate-row b {
  color: #fff;
  font-weight: 600;
}
.plate-demo.is-fading {
  opacity: 0;
  transform: translateY(6px);
}
.plate-demo {
  transition: opacity 320ms ease, transform 320ms ease;
}
.pulse-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.8s infinite;
}
.pulse-dot.is-denied {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
.pulse-dot.is-full {
  background: #94a3b8;
  box-shadow: 0 0 0 0 rgba(148, 163, 184, 0.7);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.pulse-dot.is-denied {
  animation-name: pulse-denied;
}
.pulse-dot.is-full {
  animation-name: pulse-full;
}
@keyframes pulse-denied {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@keyframes pulse-full {
  0% { box-shadow: 0 0 0 0 rgba(148, 163, 184, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(148, 163, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(148, 163, 184, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .plate-demo {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 60px;
  }
}

/* Logo strip */
.trust-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.9rem;
}
.trust-item svg {
  flex-shrink: 0;
  color: var(--teal);
}

/* Grid cards */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.18s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: transparent;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #eff6ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.contact-card-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card h3 {
  font-size: 1.08rem;
}
.card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Segment cards (site vs ücretli) */
.segment-card {
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.segment-card:hover {
  box-shadow: var(--shadow), 0 0 0 10px rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.segment-card.site {
  background: linear-gradient(150deg, #123259, #0a1930);
}
.segment-card.paid {
  background: linear-gradient(150deg, #0f3d33, #0a1930);
}
.segment-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.segment-card h3 {
  color: #fff;
  font-size: 1.5rem;
}
.segment-card p {
  color: #cbd5e1;
}
.segment-list {
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.segment-list li {
  display: flex;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.92rem;
  align-items: flex-start;
}
.segment-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal);
}
.segment-card .btn {
  margin-top: auto;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1rem;
}
.step p {
  font-size: 0.9rem;
}

/* Stats band */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}
.stats-band .grid-4 {
  text-align: center;
}
.stat b {
  display: block;
  font-size: 2.3rem;
  color: #fff;
}
.stat span {
  color: #94a3b8;
  font-size: 0.88rem;
}

/* Testimonials / logos placeholder */
.quote-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.quote-card p {
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
}
.quote-by {
  font-size: 0.86rem;
  color: var(--slate-light);
  font-weight: 600;
  font-style: normal;
  margin-top: 14px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-q .plus {
  font-size: 1.4rem;
  color: var(--blue);
  transition: 0.2s;
  flex-shrink: 0;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a p {
  padding-top: 12px;
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 24px;
  padding: 56px;
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #dbeafe;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td svg {
  color: var(--teal);
}
.table-wrap {
  overflow-x: auto;
}

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 0.95rem;
  margin-bottom: 16px;
  background: #fff;
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--slate-light);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a {
  color: var(--slate-light);
  font-size: 0.86rem;
  font-weight: 600;
}
.breadcrumb span {
  color: var(--slate-light);
  margin: 0 6px;
}
.breadcrumb .current {
  color: var(--ink);
}

/* Page hero (inner pages) */
.page-hero {
  background-color: var(--navy);
  color: #fff;
  padding: 64px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.page-hero p {
  color: #cbd5e1;
  max-width: 680px;
}

/* Photo blocks */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-media {
    grid-template-columns: 1fr;
  }
}
.split-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}
.split-media.reverse {
  grid-template-columns: 1fr 1fr;
}
.split-media.reverse .split-media-img {
  order: 2;
}
@media (max-width: 900px) {
  .split-media.reverse .split-media-img {
    order: 0;
  }
}
.img-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 280px;
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 26px;
  background: linear-gradient(0deg, rgba(8, 17, 38, 0.88), rgba(8, 17, 38, 0));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-grid h3 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  font-size: 0.9rem;
  color: #94a3b8;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* Blog */
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.18s;
  height: 100%;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 180px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body .tag {
  align-self: flex-start;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.blog-card-body p {
  font-size: 0.92rem;
  flex: 1;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--slate-light);
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-read-more {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.88rem;
  margin-top: 14px;
  display: inline-block;
}

.article-hero {
  padding: 48px 0 0;
}
.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--slate-light);
  font-size: 0.88rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.article-cover {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 32px 0;
  height: 360px;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prose {
  max-width: none;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.2em;
}
.prose h3 {
  font-size: 1.18rem;
  margin-top: 1.8em;
}
.prose p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--slate);
}
.prose ul,
.prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
  color: var(--slate);
}
.prose li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}
.prose li::marker {
  color: var(--blue);
}
.prose strong {
  color: var(--ink);
}
.prose a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.prose blockquote {
  border-left: 4px solid var(--blue);
  margin: 1.8em 0;
  padding: 0.4em 0 0.4em 1.2em;
  font-size: 1.08rem;
  color: var(--ink);
  font-style: italic;
}
.author-box {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 56px;
  padding: 22px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

/* Utilities */
.mt-0 {
  margin-top: 0;
}
.text-center {
  text-align: center;
}
.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tag {
  background: #eff6ff;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.d-flex {
  display: flex !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-center {
  align-items: center !important;
}
