/* ================================================================
   apart wellness — Produkt-Kacheln
   Wechsellayout: Bild-Slider links/rechts + Daten-Panel
   Orientiert am ProvenExpert-Widget-Stil
================================================================ */


/* ================================================================
   PORSCHE-STYLE PRODUCT CARDS (.pw-grid / .pw-card)
   Vollbild-Hintergrundbild, Modellname oben-zentriert,
   Badge + Beschreibung unten-links, Pfeil unten-rechts
================================================================ */

.pw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 16px;
}

/* 3-spaltig für die letzten 3 kleineren Kategorien */
.pw-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
/* Schmalere Kacheln bekommen etwas mehr Höhe */
.pw-grid--3 .pw-card {
  aspect-ratio: 4 / 5;
}

/* 1-spaltig für eine einzelne vollbreite Kachel */
.pw-grid--1 {
  grid-template-columns: 1fr;
  container-type: inline-size; /* Bezugsgröße für cqw der Wide-Kachel */
}
/* Vollbreite Kachel: exakt gleiche Höhe wie die 2-spaltigen Kacheln.
   Höhe der Standard-Kachel = ((100% − 16px Gap) / 2) × 10/16.
   Doppelte Klasse für höhere Spezifität gegenüber .pw-card (16/10). */
.pw-card.pw-card--wide {
  aspect-ratio: auto;
  height: calc((100cqw - 16px) / 2 * 10 / 16);
}

/* ── Einzelne Kachel ── */
.pw-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  text-decoration: none;
  cursor: pointer;
}

/* Höhere Variante für die beiden Top-Kacheln (SAUNA -PRIVAT- / SAUNA -PROFI-),
   um ihnen mehr optisches Gewicht als Einstiegs-Duo zu geben. */
.pw-card.pw-card--tall {
  aspect-ratio: 4 / 3.6;
}

/* Bild — füllt gesamte Kachel */
.pw-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.pw-card:hover .pw-card__img {
  transform: scale(1.04);
}

/* Dunkler Gradient-Overlay: oben + unten */
.pw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 38%),
    linear-gradient(to top,    rgba(0,0,0,0.65) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

/* ── Modellname: oben zentriert, fett & groß ── */
.pw-card__title {
  position: absolute;
  top: 22px;
  left: 0; right: 0;
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  z-index: 3;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  font-family: var(--font-head, 'Quicksand', -apple-system, sans-serif);
}

/* ── Unterer Bereich: Badge links, Pfeil rechts ── */
.pw-card__foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  gap: 12px;
}

/* Badge — Pill-Form, semi-transparent dunkler Hintergrund */
.pw-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pfeil-Button: Kreis, rechts unten */
.pw-card__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.pw-card:hover .pw-card__arrow {
  background: rgba(141, 3, 3, 0.85);
  transform: translateX(3px);
}

/* ── Sektion-Überschrift oberhalb des Grids ── */
.pw-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.pw-section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light, #aaa);
  margin-bottom: 8px;
}
.pw-section-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pw-card__title { font-size: clamp(22px, 3vw, 40px); }
}

@media (max-width: 900px) {
  .pw-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pw-grid--3 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pw-grid--1 {
    grid-template-columns: 1fr;
  }
  .pw-grid--3 .pw-card {
    aspect-ratio: 16 / 10; /* Zurück auf breite Form bei 2-spaltig */
  }
  .pw-card.pw-card--wide {
    /* Gleiche Höhe wie die 2-spaltigen Kacheln (Gap 12px) */
    height: calc((100cqw - 12px) / 2 * 10 / 16);
  }
}

@media (max-width: 580px) {
  .pw-grid,
  .pw-grid--3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pw-card,
  .pw-grid--3 .pw-card,
  .pw-card.pw-card--wide {
    aspect-ratio: 4 / 3;
    height: auto; /* Wide-Kachel: feste Höhe aufheben, 1-spaltig wie alle */
    border-radius: 14px;
  }
  .pw-card__title { font-size: 30px; top: 16px; }
  .pw-card__foot  { padding: 0 16px 16px; }
  .pw-card__desc  { font-size: 11px; }
  .pw-card__badge { font-size: 9px; padding: 4px 10px; }
}

/* ── Sektion ── */
.products-sec {
  padding: var(--section-py) 0;
  padding-top: 100px;
  background: var(--off-white);
}

/* ================================================================
   KACHEL — 2-spaltig: Slider (groß) + Panel (schmal, ~340px)
================================================================ */
.product-tile {
  display: grid;
  grid-template-columns: 1fr 340px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 100px;
  overflow: hidden;
  border-radius: 12px;
  transition: box-shadow 0.4s var(--ease-out);
}
.product-tile:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,0.11);
}

/* Reversed: Panel links, Slider rechts */
.product-tile--reverse {
  grid-template-columns: 340px 1fr;
}
.product-tile--reverse .pt-slider { order: 2; }
.product-tile--reverse .pt-panel  {
  order: 1;
  border-right: 1px solid var(--border);
  border-left: none;
}

/* ================================================================
   BILD-SLIDER
================================================================ */
.pt-slider {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #1a1a1a;
}

/* Header-Bar über dem Slider */
.pt-slider-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(20,20,20,0.90);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pt-slider-title {
  font-size: 19px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pt-slider-title em {
  color: var(--brand-light);
  font-style: normal;
}
.pt-slider-cta {
  flex-shrink: 0;
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pt-slider-cta:hover { background: var(--brand-dark); }

/* Slides */
.pt-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.pt-slide.active { opacity: 1; }
.pt-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slider Pfeile */
.pt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  backdrop-filter: blur(4px);
}
.pt-arrow:hover { background: rgba(255,255,255,0.28); }
.pt-arrow--prev { left: 14px; }
.pt-arrow--next { right: 14px; }

/* Pagination Dots */
.pt-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 7px;
  align-items: center;
}
.pt-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.pt-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* ================================================================
   DATEN-PANEL  — ProvenExpert-inspiriert
   Struktur von oben nach unten:
   1. .pt-panel-hero  — dunkler Header mit großem Produkttitel
   2. .pt-panel-body  — weißes Feld mit Produkt-Kennzahlen (Höhe, Breite …)
   3. .pt-review       — grauer Review-Snippet
   4. .pt-panel-foot  — goldener CTA-Button
================================================================ */
.pt-panel {
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: var(--white);
  min-height: 440px;
}

/* ── 1. Dunkler Hero-Header ── */
.pt-panel-hero {
  background: var(--dark);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.pt-panel-hero-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pt-panel-hero-title {
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pt-panel-hero-title strong {
  font-weight: 600;
  color: var(--brand-light);
}
.pt-panel-hero-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
/* Badge in der Hero-Leiste */
.pt-panel-badge {
  align-self: flex-start;
  background: var(--brand);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 11px;
}

/* ── 2. Heller Produkt-Daten-Bereich ── */
.pt-panel-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Kompakt-Stats: 2 große Kennzahlen nebeneinander */
.pt-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.pt-stat-item {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.pt-stat-item:last-child { border-right: none; }
.pt-stat-num {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pt-stat-num em {
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0;
  margin-left: 2px;
}
.pt-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
}

/* Technische Daten — Zeilen-Tabelle */
.pt-specs {
  padding: 16px 22px 12px;
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.pt-specs-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 12px;
}
.pt-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 12px;
}
.pt-spec-row:last-child { border-bottom: none; }
.pt-spec-key {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey);
  white-space: nowrap;
  flex-shrink: 0;
}
.pt-spec-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}
.pt-spec-val--placeholder {
  color: #bbb;
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
}

/* ── 3. Review-Snippet (grauer Hintergrund) ── */
.pt-review {
  padding: 14px 22px;
  background: #f7f7f5;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pt-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  gap: 8px;
}
.pt-review-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}
.pt-review-date {
  font-size: 10px;
  color: var(--grey-light);
  white-space: nowrap;
}
.pt-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.pt-review-stars i { font-size: 10px; color: #e8a000; }
.pt-review-text {
  font-size: 11px;
  line-height: 1.6;
  color: var(--grey);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── 4. Goldener CTA-Button unten ── */
.pt-panel-foot {
  padding: 16px 22px;
  flex-shrink: 0;
}
.pt-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #c9a96e;           /* Gold */
  border: 1px solid #b8945a;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.pt-panel-btn:hover {
  background: #b8945a;
  box-shadow: 0 4px 16px rgba(185,148,90,0.35);
}
.pt-panel-btn i { font-size: 11px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .product-tile,
  .product-tile--reverse {
    grid-template-columns: 1fr 300px;
  }
  .product-tile--reverse {
    grid-template-columns: 300px 1fr;
  }
  .pt-panel-hero-title { font-size: 19px; }
  .pt-stat-num { font-size: 20px; }
}

@media (max-width: 900px) {
  .product-tile,
  .product-tile--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .product-tile--reverse .pt-slider { order: 1; }
  .product-tile--reverse .pt-panel  {
    order: 2;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .pt-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: auto;
  }
  .pt-slider { min-height: 340px; }
  .pt-stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .pt-slider        { min-height: 260px; }
  .pt-slider-head   { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pt-slider-title  { font-size: 16px; }
  .pt-slider-cta    { font-size: 9px; padding: 9px 14px; }
  .pt-stats-row     { grid-template-columns: 1fr 1fr; }
  .pt-panel-hero    { padding: 22px 20px 18px; }
  .pt-panel-hero-title { font-size: 18px; }
  .pt-specs, .pt-review, .pt-stat-item, .pt-panel-foot { padding-left: 18px; padding-right: 18px; }
}


/* ================================================================
   PORSCHE-SPEC-TILE  — Sauna auf index.html
   Layout: Kennzahlen links (40%) | Produktbild rechts (60%)
   Inspiriert vom Porsche 911 Konfigurator-Stil
================================================================ */

.prs-tile {
  display: grid;
  grid-template-columns: 42% 1fr;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 100px;
  overflow: hidden;
  min-height: 480px;
  transition: box-shadow 0.4s var(--ease-out);
}
.prs-tile:hover {
  box-shadow: none;
}

/* ── LINKE SPALTE: Kennzahlen ── */
.prs-specs {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-right: none;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Eyebrow: Marke + Badge */
.prs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.prs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light, #aaa);
}
.prs-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand, #c9a96e);
  color: #fff;
  padding: 3px 10px;
}

/* Produktname */
.prs-title {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #111;
  margin: 0 0 40px;
}

/* KPI-Liste */
.prs-kpi-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}
.prs-kpi {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.prs-kpi:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

/* Großer Zahlenwert */
.prs-kpi-value {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #111;
  font-family: var(--font-head, inherit);
}
.prs-kpi-value em {
  font-style: normal;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #111;
  margin-left: 3px;
}

/* Beschreibungszeile */
.prs-kpi-desc {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Footer-Buttons */
.prs-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.prs-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: #f0f0ee;
  border: 1px solid #ddd;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-radius: 2px;
}
.prs-btn:hover {
  background: #e4e4e2;
  border-color: #bbb;
}
.prs-btn i { font-size: 10px; }

.prs-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--brand, #c9a96e);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
  padding-bottom: 1px;
}
.prs-link:hover { border-color: var(--brand, #c9a96e); }

/* ── RECHTE SPALTE: Produktbild ── */
.prs-visual {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Weicher Übergang von links (weiß der Datenspalte) ins Bild */
.prs-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 32%;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.prs-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.prs-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  transition: transform 0.7s var(--ease-out, cubic-bezier(0.22,1,0.36,1));
}
.prs-tile:hover .prs-visual-inner img {
  transform: scale(1.04);
}

/* Kleiner Badge über dem Bild */
.prs-visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── REVERSED: Bild links, Daten rechts ── */
.prs-tile--reverse {
  grid-template-columns: 1fr 42%;
}
.prs-tile--reverse .prs-visual { order: 1; }
.prs-tile--reverse .prs-specs  { order: 2; }

/* Gradient spiegeln: von rechts (weiß der Datenspalte) nach links ins Bild */
.prs-tile--reverse .prs-visual::before {
  left: auto;
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .prs-specs { padding: 44px 40px 40px; }
  .prs-title { font-size: 34px; margin-bottom: 32px; }
  .prs-kpi-value { font-size: 42px; }
  .prs-kpi-value em { font-size: 18px; }
}
@media (max-width: 860px) {
  .prs-tile,
  .prs-tile--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* Bild immer oben, Daten unten */
  .prs-tile--reverse .prs-visual { order: 1; }
  .prs-tile--reverse .prs-specs  { order: 2; }
  .prs-specs {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 28px 36px;
    gap: 0;
  }
  .prs-visual {
    min-height: 320px;
  }
  /* Gradient immer von unten (wo Daten folgen) */
  .prs-visual::before,
  .prs-tile--reverse .prs-visual::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  }
  .prs-kpi-value { font-size: 38px; }
  .prs-title { font-size: 30px; margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .prs-specs { padding: 32px 22px 28px; }
  .prs-title { font-size: 26px; margin-bottom: 24px; }
  .prs-kpi-value { font-size: 32px; }
  .prs-kpi-value em { font-size: 15px; }
  .prs-foot { gap: 16px; }
  .prs-btn { padding: 11px 18px; font-size: 10px; }
}
