/* =========================================================
   Psihoterapie cu Anca — stylesheet principal
   Paletă: crem cald ivoriu + verde măsliniu + brun închis
   ========================================================= */

:root {
  --cream: #fbf1e1;
  --cream-soft: #f5e8d2;
  --cream-card: #fffcf7;
  --sage: #6f7f4c;
  --sage-dark: #57623a;
  --sage-light: #e6ead6;
  --moss: #4f5f3a;
  --moss-dark: #3d4a2c;
  --ink: #2a2620;
  --ink-soft: #5c5648;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(42, 38, 32, 0.12);
  --shadow-card: 0 6px 18px rgba(42, 38, 32, 0.08);
  --font-main: "Aleo", Georgia, serif;
  --font-heading: "Aleo", Georgia, serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sage-dark);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.section {
  padding: 88px 0;
  scroll-margin-top: 84px;
}

.section-alt {
  background: var(--cream-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-main);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: var(--sage-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}

.btn-secondary:hover {
  background: var(--sage-light);
}

.back-link {
  white-space: nowrap;
  flex-shrink: 0;
}

.back-link .back-short {
  display: none;
}

@media (max-width: 480px) {
  .back-link .back-full {
    display: none;
  }
  .back-link .back-short {
    display: inline;
  }
}

.btn-accent {
  background: var(--moss);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--moss-dark);
}

.btn-block {
  width: 100%;
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 241, 225, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 38, 32, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .logo-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: none;
  transform: translateY(-3px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-links a.active {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  border: 2px solid #697448;
  background: #697448;
  color: #fef6eb;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: #57603b;
  border-color: #57603b;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 12px 24px 24px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 12px 10px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-name {
  margin-bottom: 0.2em;
}

.hero-title {
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap .illustration {
  width: 100%;
  aspect-ratio: 1/1;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-image-wrap .illustration {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---------- Hero cu poză reală (folosit pe pagina Despre mine) ---------- */

.hero-image-wrap .img-slot {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  aspect-ratio: 4/5;
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 860px) {
  .hero-image-wrap .img-slot {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ---------- Topics strip (Acasă) ---------- */

.topics-section {
  padding: 0 0 88px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.topic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 12px;
  border-right: 1px solid var(--sage-light);
  text-align: center;
}

.topic-item:last-child {
  border-right: none;
}

.topic-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.topic-item span {
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 760px) {
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .topic-item {
    border-right: 1px solid var(--sage-light);
    border-bottom: 1px solid var(--sage-light);
  }
  .topic-item:nth-child(3n) {
    border-right: none;
  }
  .topic-item:nth-child(n + 4) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topic-item {
    border-right: 1px solid var(--sage-light);
  }
  .topic-item:nth-child(odd) {
    border-right: 1px solid var(--sage-light);
  }
  .topic-item:nth-child(even) {
    border-right: none;
  }
  .topic-item:nth-child(-n + 4) {
    border-bottom: 1px solid var(--sage-light);
  }
  .topic-item:nth-child(n + 5) {
    border-bottom: none;
  }
}

/* ---------- Placeholder badge ---------- */

.img-slot {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illustration {
  background: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(42, 38, 32, 0.16));
}

.quest-thumb.illustration {
  background: var(--sage-light);
}

.quest-thumb.illustration img {
  padding: 20px;
}

.img-slot .placeholder-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(42, 38, 32, 0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- About ---------- */

.about-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.about-block > * {
  min-width: 0;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block.reverse .about-photo {
  order: 2;
}

.about-photo {
  aspect-ratio: 4/3;
}

@media (max-width: 860px) {
  .about-block,
  .about-block.reverse {
    grid-template-columns: 1fr;
  }
  .about-block.reverse .about-photo {
    order: 0;
  }
}

/* ---------- Why CBT ---------- */

.section-cbt {
  background: #817b5d;
}

.section-cbt .eyebrow {
  background: var(--cream-card);
  color: #55523c;
}

.section-cbt .cbt-intro {
  color: #f4efe0;
}

.cbt-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.cbt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(42, 38, 32, 0.18));
}

@media (max-width: 760px) {
  .cbt-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- How I work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.work-grid > * {
  min-width: 0;
}

.work-photo {
  aspect-ratio: 4/3;
}

@media (max-width: 860px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-grid .work-photo {
    order: -1;
  }
}

/* ---------- Side Quests ---------- */

.quest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.quest-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.quest-thumb {
  aspect-ratio: 1/1;
}

.quest-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quest-body h3 {
  margin-bottom: 10px;
}

.quest-body p {
  color: var(--ink-soft);
  flex: 1;
}

.quest-lang-note {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--moss-dark);
  background: var(--sage-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.quest-card .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.quest-card.horizontal {
  flex-direction: row;
  align-items: stretch;
}

.quest-card.horizontal .quest-thumb {
  aspect-ratio: auto;
  width: 38%;
  flex-shrink: 0;
}

.quest-card.horizontal .quest-body {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quest-card.horizontal .quest-body .btn {
  align-self: center;
}

@media (max-width: 700px) {
  .quest-card.horizontal {
    flex-direction: column;
  }
  .quest-card.horizontal .quest-thumb {
    width: 100%;
    aspect-ratio: 1/1;
  }
}

/* ---------- Booking ---------- */

.section-booking {
  background: var(--cream);
}

.booking-embed {
  margin-bottom: 28px;
}

.calendly-inline-widget {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.booking-fallback {
  text-align: center;
}

/* ---------- Instagram ---------- */

.insta-embed {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
  min-height: 200px;
}

.insta-cta {
  text-align: center;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-form {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-light);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--ink);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-check input {
  margin-top: 4px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.contact-confirm {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact-confirm.show {
  display: block;
}

.contact-confirm .icon {
  display: block;
  margin-bottom: 10px;
}

.contact-side {
  padding-top: 8px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.contact-links a:hover {
  background: var(--sage-light);
}

.contact-illustration {
  width: 445px;
  max-width: 100%;
  aspect-ratio: 1/1;
  margin: -30px auto 0;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 26px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #f2ede8;
  padding: 48px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-name {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer-tagline {
  color: #d6cdb8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #f2ede8;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--moss);
}

.footer-bottom {
  border-top: 1px solid rgba(242, 237, 232, 0.15);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #a89a7c;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* =========================================================
   Pudge study article page
   ========================================================= */

.article-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.article-back:hover {
  text-decoration: underline;
}

.article-hero h1 {
  max-width: 780px;
  margin: 0 auto 16px;
}

.article-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.article-body h2 {
  margin-top: 2.2em;
  padding-top: 0.4em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h2::before {
  content: "";
  display: block;
  width: 70px;
  height: 30px;
  margin: 0 auto 16px;
  background: url('/assets/img/pudge/icon-chain.png') no-repeat center / contain;
}

.article-kicker {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--moss-dark);
  background: var(--sage-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin: 2em 0 0.8em;
}

.article-body p {
  font-size: 1.05rem;
  color: var(--ink);
}

.article-figure {
  margin: 2em 0;
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.article-figure svg,
.svg-figure-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  background: var(--cream-card);
}

.fig1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fig1-panel {
  background: var(--cream-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.fig1-panel svg {
  background: none;
}

@media (max-width: 640px) {
  .fig1-grid {
    grid-template-columns: 1fr;
  }
}

.article-figure figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.article-figure figcaption strong {
  color: var(--sage-dark);
}

.article-figure.intro-stats {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.stat-banner {
  display: flex;
  gap: 16px;
  margin: 1.8em 0;
}

.stat-card {
  flex: 1;
  min-width: 0;
  background: var(--cream-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--stat-accent, var(--sage));
  padding: 20px 12px 16px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.1;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 640px) {
  .stat-banner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .stat-card {
    flex: 1 1 calc(50% - 6px);
  }
  .stat-value {
    font-size: 1.4rem;
  }
}

.science-bit {
  background: var(--sage-light);
  border-left: 4px solid var(--sage-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 4px 20px;
  margin: 1.4em 0;
}

.science-bit summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sage-dark);
  padding: 14px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.science-bit summary::-webkit-details-marker {
  display: none;
}

.science-bit summary::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  background: url('/assets/img/pudge/icon-magnifier.png') no-repeat center / contain;
}

.science-bit summary::after {
  content: "▸";
  transition: transform 0.15s ease;
  font-size: 0.8em;
  margin-left: auto;
}

.science-bit[open] summary::after {
  transform: rotate(90deg);
}

.science-bit p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-bottom: 16px;
  margin: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 1.6em 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-card);
  font-size: 0.95rem;
  min-width: 420px;
}

.article-table th,
.article-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sage-light);
}

.article-table th {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 800;
}

@media (max-width: 640px) {
  .article-table-wrap {
    overflow-x: visible;
    box-shadow: none;
    border-radius: 0;
  }
  .article-table {
    min-width: 0;
  }
  .article-table thead {
    display: none;
  }
  .article-table,
  .article-table tbody,
  .article-table tr {
    display: block;
    width: 100%;
  }
  .article-table tr {
    background: var(--cream-card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    margin-bottom: 10px;
    overflow: hidden;
  }
  .article-table tr:last-child {
    margin-bottom: 0;
  }
  .article-table td {
    display: block;
    padding: 8px 14px;
    border-bottom: none;
  }
  .article-table td:first-child {
    font-weight: 700;
    color: var(--sage-dark);
    background: var(--sage-light);
    padding: 10px 14px;
  }
  .article-table td[data-label] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    border-top: 1px solid var(--sage-light);
  }
  .article-table td[data-label]::before {
    content: attr(data-label);
    color: var(--ink-soft);
    font-weight: 400;
    font-size: 0.85rem;
  }
}

.article-callout {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 2em 0;
  font-weight: 700;
  font-size: 1.08rem;
}

.finding-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2em 0 0.6em;
}

.finding-row::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: none;
  background: url('/assets/img/pudge/icon-hook.png') no-repeat center / contain;
}

.finding-tag {
  background: var(--moss);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.verdict-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.verdict-supported {
  background: #dcefe1;
  color: #2e7d4f;
}

.verdict-not-supported {
  background: #f6dede;
  color: #a13c3c;
}

.verdict-inconclusive {
  background: #f3e6cf;
  color: #91641c;
}

.article-footer-nav {
  text-align: center;
  padding: 40px 0 80px;
}

.article-meta {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 3em;
  padding-top: 1.6em;
  border-top: 1px solid var(--sage-light);
}
