/* ═══════════════════════════════════════════
   Solea — Treatments Page (tpl-treatments.php)
   /trajtimet/ — Hero + Categories + Final CTA
═══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.tpl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-oak);
}

.tpl-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--tpl-hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.tpl-hero:hover .tpl-hero__bg { transform: scale(1); }

.tpl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(69,28,0,0.45) 0%,
    rgba(69,28,0,0.62) 60%,
    rgba(69,28,0,0.85) 100%
  );
}

.tpl-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 640px;
}

.tpl-hero__tag {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coral-blue, #A8DFFE);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.tpl-hero__tag::before,
.tpl-hero__tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 0.5px;
  background: var(--coral-blue, #A8DFFE);
  opacity: 0.6;
}

.tpl-hero__title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream, #FFF8D9);
  margin-bottom: 20px;
}
.tpl-hero__title em {
  font-style: italic;
  color: var(--gold-light, #B8936A);
}

.tpl-hero__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,248,217,0.65);
  font-weight: 300;
  text-transform: uppercase;
}

/* ── Anchor nav ── */
.tpl-anchor-nav {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(69,28,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 0.5px solid rgba(255,248,217,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.tpl-anchor-nav::-webkit-scrollbar { display: none; }

.tpl-anchor-nav__link {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 18px 20px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,248,217,0.6);
  border-right: 0.5px solid rgba(255,248,217,0.06);
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}
.tpl-anchor-nav__link:last-child { border-right: none; }
.tpl-anchor-nav__link:hover {
  color: var(--cream);
  background: rgba(184,147,106,0.15);
}

/* ─────────────────────────────────────────
   CATEGORIES INDEX GRID
───────────────────────────────────────── */
.tpl-cat-index {
  background: var(--warm-white);
  padding: 64px 80px 48px;
}
.tpl-cat-index__inner .section-tag { justify-content: center; margin-bottom: 32px; }

.tpl-cat-index__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tpl-cat-pill {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 16px;
  text-decoration: none;
}

.tpl-cat-pill__img {
  position: absolute;
  inset: 0;
  background-image: var(--pill-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.tpl-cat-pill:hover .tpl-cat-pill__img { transform: scale(1.06); }

.tpl-cat-pill__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69,28,0,0.75) 0%, rgba(69,28,0,0.1) 60%);
}

.tpl-cat-pill__art {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    hsl(var(--pill-hue, 28deg) 45% 30%) 0%,
    hsl(var(--pill-hue, 28deg) 35% 18%) 100%
  );
}

.tpl-cat-pill__num {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,248,217,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  line-height: 1;
}

.tpl-cat-pill__name {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .tpl-cat-index { padding: 48px 24px 32px; }
  .tpl-cat-index__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tpl-cat-index__grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   CATEGORY SECTIONS
───────────────────────────────────────── */
.tcat-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Flip: swap order so content left, media right */
.tcat-section--flip .tcat-media { order: 2; }
.tcat-section--flip .tcat-content { order: 1; }

/* ── Media panel ── */
.tcat-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.tcat-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.tcat-section:hover .tcat-media__img { transform: scale(1.04); }

/* CSS art fallback */
.tcat-media__art {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(var(--cat-hue, 28deg) 55% 78%) 0%,
    hsl(var(--cat-hue, 28deg) 40% 58%) 50%,
    hsl(var(--cat-hue, 28deg) 35% 44%) 100%
  );
}
.tcat-media__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,248,217,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(69,28,0,0.2) 0%, transparent 55%);
}

/* Number watermark */
.tcat-media__num {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255,248,217,0.09);
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

/* ── Content panel ── */
.tcat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--warm-white, #FFFDF5);
}

.tcat-section:nth-child(even) .tcat-content {
  background: #FAF5EE;
}

.tcat-tag {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold, #8B5E3C);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcat-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background: var(--gold);
}

.tcat-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-oak, #451C00);
  margin-bottom: 18px;
}

.tcat-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ── Services table ── */
.tcat-services {
  border: 0.5px solid var(--beige, #EDE4D8);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

.tcat-services__head {
  display: grid;
  grid-template-columns: 1fr 100px 110px 80px;
  padding: 10px 18px;
  background: var(--deep-oak, #451C00);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,248,217,0.55);
  gap: 8px;
}

.tcat-service-row {
  display: grid;
  grid-template-columns: 1fr 100px 110px 80px;
  padding: 13px 18px;
  gap: 8px;
  border-bottom: 0.5px solid var(--beige, #EDE4D8);
  align-items: center;
  transition: background 0.2s;
}
.tcat-service-row:last-child { border-bottom: none; }
.tcat-service-row:hover { background: rgba(184,147,106,0.06); }

.tcat-svc-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--deep-oak, #451C00);
}

.tcat-svc-dur {
  font-size: 11.5px;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
}

.tcat-svc-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold, #8B5E3C);
  text-align: right;
}

.tcat-svc-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: var(--deep-oak, #451C00);
  color: var(--milk-punch, #FFF8D9);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}
.tcat-svc-book:hover {
  background: #6b2c00;
  color: var(--milk-punch, #FFF8D9);
}

/* ── Action buttons ── */
.tcat-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tcat-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: var(--deep-oak, #451C00);
  color: var(--cream, #FFF8D9);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 0.5px solid var(--deep-oak);
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.tcat-btn-primary:hover {
  background: var(--gold, #8B5E3C);
  border-color: var(--gold);
}

.tcat-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  background: transparent;
  color: var(--deep-oak, #451C00);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 0.5px solid var(--sand, #D4C4B0);
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.tcat-btn-wa:hover {
  border-color: #25D366;
  color: #1a9248;
}
.tcat-btn-wa svg { flex-shrink: 0; }

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
.tpl-final-cta {
  background: var(--deep-oak, #451C00);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tpl-final-cta::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,106,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.tpl-final-cta .section-tag {
  color: var(--coral-blue, #A8DFFE);
  justify-content: center;
}
.tpl-final-cta .section-tag::before {
  background: var(--coral-blue, #A8DFFE);
  opacity: 0.5;
}

.tpl-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--cream, #FFF8D9);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.tpl-final-cta__sub {
  font-size: 14px;
  color: rgba(255,248,217,0.55);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.tpl-final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Override buttons inside dark CTA */
.tpl-final-cta .tcat-btn-primary {
  background: var(--gold, #8B5E3C);
  border-color: var(--gold);
  color: var(--cream);
}
.tpl-final-cta .tcat-btn-primary:hover {
  background: var(--gold-light, #B8936A);
  border-color: var(--gold-light);
}

.tpl-final-cta .tcat-btn-wa {
  border-color: rgba(255,248,217,0.2);
  color: rgba(255,248,217,0.7);
}
.tpl-final-cta .tcat-btn-wa:hover {
  border-color: #25D366;
  color: #5de68a;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .tcat-section,
  .tcat-section--flip {
    grid-template-columns: 1fr;
  }
  .tcat-section--flip .tcat-media { order: 1; }
  .tcat-section--flip .tcat-content { order: 2; }

  .tcat-media { min-height: 300px; }
  .tcat-content { padding: 48px 28px; }
  .tcat-desc { max-width: 100%; }

  .tpl-hero { min-height: 70vh; }
  .tpl-anchor-nav { position: static; }

  .tcat-services__head,
  .tcat-service-row {
    grid-template-columns: 1fr 90px 90px 72px;
    padding: 10px 14px;
  }
}

@media (max-width: 560px) {
  .tcat-services__head,
  .tcat-service-row {
    grid-template-columns: 1fr 80px 68px;
  }
  .tcat-services__head span:nth-child(2),
  .tcat-service-row .tcat-svc-dur { display: none; }

  .tcat-actions { flex-direction: column; align-items: stretch; }
  .tcat-btn-primary,
  .tcat-btn-wa { justify-content: center; }
}
@media (max-width: 480px) {
  .tpl-hero__title { font-size: 32px; }
  .tpl-hero__sub { font-size: 14px; }
  .tpl-hero { min-height: auto; padding: 70px 20px 80px; }
  .tcat-content { padding: 36px 20px; }
  .tcat-title { font-size: 24px; }
  .tcat-media { min-height: 240px; }
  .tcat-media__num { font-size: 80px; }
  .tcat-btn-primary, .tcat-btn-wa { font-size: 12px; padding: 13px 20px; }
  .tpl-final-cta__title { font-size: 26px; }
  .tpl-final-cta { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════
   TAXONOMY PAGE — kategoria_trajtimit
   /trajtimet/{slug}/
═══════════════════════════════════════════ */

/* Active anchor nav link */
.tpl-anchor-nav__link--active {
  color: var(--cream, #FFF8D9);
  background: rgba(196,149,106,0.2);
  position: relative;
}
.tpl-anchor-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--oak-light, #C4956A);
}

/* ─────────────────────────────────────────
   INTRO — 2-column
───────────────────────────────────────── */
.tcat-intro {
  background: var(--cream-bg, #F7F0E4);
  padding: 88px 80px;
}

.tcat-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tcat-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oak-light, #C4956A);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcat-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: var(--oak-light, #C4956A);
}

.tcat-intro__title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--oak, #451C00);
  margin-bottom: 20px;
}

.tcat-intro__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
  max-width: 460px;
}

/* Trust checklist */
.tcat-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tcat-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--oak, #451C00);
}
.tcat-trust-item svg { flex-shrink: 0; margin-top: 1px; }

/* WhatsApp CTA */
.tcat-intro__wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: #25D366;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
  white-space: nowrap;
}
.tcat-intro__wa:hover { background: #1da855; color: #fff; }
.tcat-intro__wa svg { flex-shrink: 0; }

/* ─────────────────────────────────────────
   MEDIA — Video or Feature Photo
───────────────────────────────────────── */
.tcat-media-section {
  background: var(--oak, #451C00);
}

.tcat-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.tcat-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tcat-photo-feature {
  position: relative;
  overflow: hidden;
  max-height: 560px;
}

.tcat-photo-feature__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.tcat-photo-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69,28,0,0.72) 0%, rgba(69,28,0,0.06) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 80px;
  gap: 10px;
}

.tcat-photo-feature__tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-blue, #A8DFFE);
}

.tcat-photo-feature__name {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--cream, #FFF8D9);
  line-height: 1.1;
}

/* ─────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────── */
.tcat-cards-section {
  background: var(--warm-white, #FFFDF5);
  padding: 88px 80px;
}

.tcat-cards-header {
  max-width: 1200px;
  margin: 0 auto 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.tcat-cards-header__left {}

.tcat-cards-title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--oak, #451C00);
  margin-top: 10px;
  line-height: 1.2;
}

.tcat-cards-note {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
  max-width: 300px;
  text-align: right;
}

/* Grid */
.tcat-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--beige, #EDE4D8);
  border: 1px solid var(--beige, #EDE4D8);
}

.tcat-card {
  background: var(--warm-white, #FFFDF5);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.tcat-card:hover { background: #FFFBF0; }

.tcat-card__num {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 11px;
  color: var(--oak-light, #C4956A);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  opacity: 0.65;
}

.tcat-card__name {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--oak, #451C00);
  margin-bottom: 10px;
}

.tcat-card__desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.tcat-card__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 0.5px solid var(--beige, #EDE4D8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.tcat-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tcat-card__dur {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted, #9A7B6A);
  font-weight: 300;
}
.tcat-card__dur svg { flex-shrink: 0; opacity: 0.55; }

.tcat-card__price {
  font-size: 12px;
  font-weight: 500;
  color: var(--oak-light, #C4956A);
  letter-spacing: 0.04em;
}

.tcat-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak, #451C00);
  border-bottom: 0.5px solid var(--oak-light, #C4956A);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.tcat-card__cta:hover {
  color: var(--oak-light, #C4956A);
}

/* Bottom actions */
.tcat-cards-actions {
  max-width: 1200px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Back link */
.tcat-back {
  background: var(--cream-bg, #F7F0E4);
  padding: 32px 80px;
}

.tcat-back__link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted, #9A7B6A);
  transition: color 0.25s;
}
.tcat-back__link:hover { color: var(--oak, #451C00); }

/* ─────────────────────────────────────────
   RESPONSIVE — Taxonomy page
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .tcat-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .tcat-intro { padding: 64px 32px; }
  .tcat-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .tcat-intro__body { max-width: 100%; }

  .tcat-photo-feature__overlay { padding: 36px 32px; }

  .tcat-cards-section { padding: 64px 28px; }
  .tcat-cards-header { flex-direction: column; align-items: flex-start; }
  .tcat-cards-note { text-align: left; max-width: 100%; }

  .tcat-back { padding: 28px 28px; }
}

@media (max-width: 600px) {
  .tcat-intro { padding: 56px 20px; }
  .tcat-cards-section { padding: 56px 20px; }
  .tcat-cards-grid { grid-template-columns: 1fr; }
  .tcat-card { padding: 28px 20px 22px; }
  .tcat-back { padding: 24px 20px; }
  .tcat-photo-feature__overlay { padding: 28px 20px; }
  .tcat-cards-actions { flex-direction: column; align-items: stretch; }
  .tcat-cards-actions .tcat-btn-primary,
  .tcat-cards-actions .tcat-btn-wa { justify-content: center; }
}
