/* =========================================================
   Команда позитивної психотерапії — спільні стилі
   Палітра: тепла природна (крем / теракота / шавлія)
   ========================================================= */

:root {
  /* Кольори — тепла нейтральна гама (крем · бежевий · мока · шоколад) */
  --cream:        #F7F1E8;
  --cream-2:      #EFE6D8;
  --cream-3:      #E3D6C4;
  --terracotta:   #A9835E;  /* мока — основний акцент */
  --terracotta-d: #856245;  /* глибока мока — наведення */
  --sage:         #BCA488;  /* тепла таупе — другорядний */
  --sage-d:       #7C6047;  /* коричневий — другорядний темний */
  --cocoa:        #43301F;  /* темний шоколад — контрастна смуга */
  --ink:          #3A2B20;  /* глибокий шоколад — текст */
  --ink-soft:     #7A6B5C;  /* приглушений коричневий */
  --white:        #FFFFFF;

  /* Типографіка */
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Розміри */
  --container: 1140px;
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 40px -22px rgba(59, 50, 43, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(59, 50, 43, 0.30);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Базове ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta-d); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

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

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--alt { background: var(--cream-2); }
.section--sage { background: var(--cocoa); color: var(--cream); }
.section--sage h2, .section--sage h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 16px;
}
.section--sage .eyebrow { color: var(--cream-2); }

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 64ch; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-d); color: var(--white); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--sage); }
.btn--outline:hover { background: var(--sage); color: var(--white); }
.btn--ghost { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--terracotta-d); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--white); color: var(--terracotta-d); }

/* ---------- Шапка ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(59, 50, 43, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--terracotta) 0%, var(--terracotta-d) 70%);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.28);
}
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing:.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .98rem; position: relative; white-space: nowrap; }
.nav__links a:hover { color: var(--terracotta-d); }
.nav__links a.is-active { color: var(--terracotta-d); }
.nav__links a.is-active::after {
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--terracotta); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
/* кнопка-заклик усередині списку — лише для мобільного меню; на десктопі ховаємо дубль */
.nav__links .nav__cta { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; height: 2px; width: 24px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links, .nav__cta--desktop { display: none; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--cream); padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(59,50,43,.08);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open li { width: 100%; }
  .nav__links.is-open .nav__cta { display: block; }
  .nav__links.is-open a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(59,50,43,.06); }
  .nav__links.is-open .btn { margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 104px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title { margin-bottom: 22px; }
.hero__title em { font-style: italic; color: var(--terracotta-d); }
.hero__sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 56ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__visual { position: relative; }
.hero__photo {
  border-radius: 30% 70% 62% 38% / 42% 38% 62% 58%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: var(--cream-3);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.blob {
  position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); opacity: .55;
}
.blob--1 { width: 320px; height: 320px; background: var(--cream-3); top: -40px; right: -40px; }
.blob--2 { width: 220px; height: 220px; background: rgba(188,164,136,.5); bottom: -30px; left: -30px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.hero__badge svg { color: var(--sage-d); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
}

/* ---------- Сітки / картки ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--terracotta-d);
  margin-bottom: 18px;
}
.section--sage .card { background: rgba(255,255,255,.10); color: var(--cream); backdrop-filter: blur(2px); }
.section--sage .card h3 { color: var(--white); }
.section--sage .card__icon { background: rgba(255,255,255,.16); color: var(--cream); }

/* ---------- Картки команди ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card__photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-3); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card--placeholder .team-card__photo {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  color: var(--sage-d);
}
.team-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.team-card__name { margin-bottom: 4px; }
.team-card__role { color: var(--terracotta-d); font-weight: 600; font-size: .92rem; margin-bottom: 14px; }
.team-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag {
  font-size: .8rem; font-weight: 500; color: var(--sage-d);
  background: var(--cream-2); padding: 5px 12px; border-radius: 999px;
}
.team-card__link { margin-top: auto; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.team-card__link svg { transition: transform .25s var(--ease); }
.team-card__link:hover svg { transform: translateX(4px); }

/* ---------- Кроки ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step__num {
  counter-increment: step;
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--terracotta); color: var(--white);
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }

/* ---------- Контакти ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list a, .contact-list span { display: inline-flex; align-items: center; gap: 14px; font-size: 1.06rem; color: var(--ink); }
.contact-list a:hover { color: var(--terracotta-d); }
.contact-ico {
  width: 46px; height: 46px; border-radius: 14px; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--cream-2); color: var(--terracotta-d);
}

.messenger-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.messenger-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--white); color: var(--ink); font-weight: 600; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.messenger-btn:hover { transform: translateY(-2px); color: var(--terracotta-d); }
.messenger-btn svg { flex: 0 0 auto; }

/* ---------- Профіль ---------- */
.profile-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(32px,4vw,48px); }
.profile-hero__grid { display: grid; grid-template-columns: 380px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.profile-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream-3); }
.profile-photo img { width:100%; height:100%; object-fit: cover; }
.profile-meta { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.profile-meta li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.profile-meta strong { color: var(--ink); font-weight: 600; min-width: 118px; flex: 0 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
@media (max-width: 820px) { .profile-hero__grid { grid-template-columns: 1fr; } .profile-photo { position: static; max-width: 360px; } }

/* ---------- Цитата ---------- */
.quote { max-width: 760px; text-align: center; margin-inline: auto; }
.quote p { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; line-height: 1.4; color: var(--ink); }
.section--sage .quote p { color: var(--white); }

/* ---------- CTA смуга ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin: 6px; }

/* ---------- Підвал ---------- */
.site-footer { background: var(--ink); color: var(--cream-2); padding: 64px 0 32px; }
.site-footer a { color: var(--cream-2); }
.site-footer a:hover { color: var(--terracotta); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.footer__grid p { color: rgba(242,235,224,.72); }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__bottom { border-top: 1px solid rgba(242,235,224,.14); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: rgba(242,235,224,.6); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Поява при скролі ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Дрібниці ---------- */
.placeholder-note {
  background: #FFF7E8; border: 1px dashed var(--terracotta);
  color: var(--terracotta-d); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: .86rem; font-weight: 500; display: inline-block;
}
.muted { color: var(--ink-soft); }
.center-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 48px; }

/* ---------- Hero: картка-команда (без виділення однієї людини) ---------- */
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 420px;
  margin-inline: auto;
}
.avatar-stack { display: flex; justify-content: center; margin-bottom: 18px; }
.avatar-stack img {
  width: 76px; height: 76px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--white);
  box-shadow: 0 4px 12px -4px rgba(59,50,43,.4);
  margin-left: -20px; background: var(--cream-3);
}
.avatar-stack img:first-child { margin-left: 0; }
.hero-card__title { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); margin: 0 0 4px; }
.hero-card__sub { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.hero-card__divider { height: 1px; background: var(--cream-3); margin: 22px 0; }
.hero-card blockquote { margin: 0; font-family: var(--font-head); font-style: italic; font-size: 1.12rem; color: var(--terracotta-d); line-height: 1.4; }
.hero-chip {
  position: absolute; z-index: 2;
  background: var(--white); color: var(--ink);
  font-size: .86rem; font-weight: 600;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-chip svg { color: var(--sage-d); }
.hero-chip--1 { top: -18px; left: 14px; }
.hero-chip--2 { bottom: -18px; right: 18px; }
@media (max-width: 520px) { .hero-chip { display: none; } }

/* ---------- Відгуки ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  height: 100%;
}
.testimonial__stars { color: var(--terracotta); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial__text { font-size: 1.05rem; color: var(--ink); line-height: 1.65; margin: 0; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--terracotta-d);
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.testimonial__name { font-weight: 600; color: var(--ink); line-height: 1.2; }
.testimonial__meta { font-size: .85rem; color: var(--ink-soft); }
.section--sage .testimonial { background: rgba(255,255,255,.95); }

/* ---------- Питання-відповіді (акордеон) ---------- */
.qa-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.qa-item {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(59,50,43,.06);
}
.qa-item__q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; font-family: var(--font-body);
  font-size: 1.08rem; font-weight: 600; color: var(--ink);
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.qa-item__q:hover { color: var(--terracotta-d); }
.qa-item__icon { flex: 0 0 auto; transition: transform .3s var(--ease); color: var(--terracotta-d); }
.qa-item.is-open .qa-item__icon { transform: rotate(45deg); }
.qa-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.qa-item__a-inner { padding: 0 24px 22px; color: var(--ink-soft); }
.qa-item__a-inner .qa-by { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: .85rem; font-weight: 600; color: var(--sage-d); }
.qa-meta { font-size: .82rem; color: var(--ink-soft); display: inline-flex; gap: 14px; padding: 0 24px 14px; flex-wrap: wrap; }
.qa-tag { background: var(--cream-2); color: var(--sage-d); padding: 3px 10px; border-radius: 999px; font-weight: 600; }

/* ---------- Форми ---------- */
.form { display: grid; gap: 18px; }
.form .field { display: grid; gap: 7px; }
.form label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--cream-3);
  border-radius: 12px; padding: 13px 16px; width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--sage); background: var(--white);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .hint { font-size: .82rem; color: var(--ink-soft); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-success {
  background: var(--white); border: 1.5px solid var(--sage);
  border-left: 5px solid var(--sage-d);
  border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow-sm); color: var(--ink); font-size: 1.06rem;
}
.form-success strong { color: var(--sage-d); }

/* ---------- Блог ---------- */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-chip {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--ink-soft); background: var(--white);
  border: 1.5px solid var(--cream-3); border-radius: 999px;
  padding: 9px 20px; cursor: pointer; transition: all .2s var(--ease);
}
.filter-chip:hover { color: var(--terracotta-d); border-color: var(--sage); }
.filter-chip.is-active { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }

.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card__cover {
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  color: var(--terracotta-d); position: relative;
}
.blog-card__cover svg { opacity: .55; }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--terracotta-d);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px;
}
.blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: .82rem; color: var(--ink-soft); margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-card__title { font-size: 1.28rem; margin-bottom: 10px; }
.blog-card__excerpt { color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.blog-card__link { margin-top: auto; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.blog-card__link svg { transition: transform .25s var(--ease); }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }

/* Стаття */
.article { max-width: 760px; margin-inline: auto; }
.article__cover {
  aspect-ratio: 21 / 9; border-radius: var(--radius); margin-bottom: 32px;
  display: grid; place-items: center; color: var(--terracotta-d);
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
}
.article__cat { color: var(--terracotta-d); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.article__title { margin: 12px 0 16px; }
.article__byline { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--cream-3); border-bottom: 1px solid var(--cream-3); margin-bottom: 32px; }
.article__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; background: var(--cream-3); }
.article__author { font-weight: 600; color: var(--ink); }
.article__date { font-size: .86rem; color: var(--ink-soft); }
.article-cta { background: var(--cream-2); border-radius: var(--radius); padding: 30px; margin-top: 40px; text-align: center; }

/* банер-нотатка для нереалізованого бекенда */
.info-banner {
  background: #FFF7E8; border: 1px dashed var(--terracotta);
  color: var(--terracotta-d); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: .9rem; line-height: 1.6;
}
