:root {
  --cream: #f8f9f3;
  --plum: #591c4e;
  --plum-dark: #46163e;
  --plum-light: #af3799;
  --magenta: #ec008b;
  --teal: #1f4254;
  --mint: #bfe4dd;
  --mint-dark: #8fcabd;
  --gold: #ffca0c;
  --tan: #ac9684;
  --tan-light: #e3ddd0;
  --plum-pale: #f3e9f1;
  --ink: #2a2a28;
  --white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-w: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
sup { font-size: 0.65em; }
a { color: inherit; }

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.15;
  margin: 0 0 16px;
}
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }
p { line-height: 1.6; margin: 0 0 14px; color: #3c4a4f; }
em { font-style: italic; }

.section { padding: 72px 0; }
.evidence { padding-bottom: 36px; }
.outcomes { padding-top: 36px; }

/* ---------- logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 243, 0.97);
  border-bottom: 1px solid rgba(89, 28, 78, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.header-inner .logo-img { height: 44px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover { color: var(--plum); }
.nav-link.is-active { color: var(--plum); border-bottom-color: var(--plum); }
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; row-gap: 12px; }
  .main-nav { order: 3; width: 100%; justify-content: center; gap: 20px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .main-nav { gap: 12px 18px; }
  .nav-link { font-size: 0.85rem; }
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-solid {
  border: 1.5px solid var(--plum);
  background: var(--plum);
  color: var(--gold);
}
.btn-solid:hover { background: var(--plum-dark); }
.header-cta { white-space: nowrap; }

/* ---------- HCP gate ---------- */
.hcp-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(42, 42, 40, 0.55);
  backdrop-filter: blur(2px);
}
#app.gate-active .hcp-gate { display: flex; }
#app.gate-active #site-content {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.hcp-gate-card {
  background: var(--white);
  border: 1px solid rgba(89, 28, 78, 0.12);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  padding: 40px 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(42, 42, 40, 0.25);
}
.hcp-gate-card h2 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hcp-gate-card p { font-size: 0.95rem; margin-bottom: 16px; }
.hcp-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}
.hcp-gate-actions .btn { font-weight: 700; padding: 12px 28px; }

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 80px;
  border-top: 4px solid var(--plum);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 400px) 1fr;
  column-gap: 56px;
  row-gap: 28px;
  align-items: center;
}
.hero-header { grid-column: 2; grid-row: 1; }
.hero-image { grid-column: 1; grid-row: 1 / span 2; }
.hero-inner { grid-column: 2; grid-row: 2; }
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--plum-light);
  margin-bottom: 12px;
}
.hero-title { font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem); margin-bottom: 20px; }
.hero-lede { font-size: 1.05rem; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.badge {
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.hero-tagline p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--plum);
  margin: 0;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-header { grid-column: 1; grid-row: auto; order: 1; }
  .hero-image { grid-column: 1; grid-row: auto; order: 2; max-width: 260px; margin: 0 auto; }
  .hero-inner { grid-column: 1; grid-row: auto; order: 3; }
}

/* ---------- approach / features ---------- */
.approach { background: var(--teal); }
.approach h2 { color: var(--white); }
.approach-text p { color: rgba(255, 255, 255, 0.82); }
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.approach-image img {
  margin: 0 auto;
  max-width: 224px;
  width: 100%;
}
.feature-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--tan-light);
  border-radius: 4px;
  padding: 20px 28px;
}
.feature-icon {
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width: 80%; height: 80%; object-fit: contain; }
.feature-list h3 { margin-bottom: 4px; font-size: 1.05rem; color: var(--plum); font-family: var(--font-sans); font-weight: 700; }
.feature-list p { font-size: 0.9rem; margin: 0; color: #3c4a4f; }

@media (max-width: 760px) {
  .approach-grid { grid-template-columns: 1fr; gap: 28px; }
  .approach-image { order: -1; }
  .feature-list li { flex-direction: column; text-align: center; }
}

/* ---------- patients ---------- */
.patients-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.patients-image img { border-radius: 20px; width: 95%; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  line-height: 1.55;
  color: #3c4a4f;
}
.check-list-tight li { margin-bottom: 4px; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint-dark);
}
.footnote-mini { display: block; font-size: 0.78rem; color: #7a8589; margin-top: 4px; }

@media (max-width: 760px) {
  .patients-grid { grid-template-columns: 1fr; gap: 24px; }
  .patients-image { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- mechanism ---------- */
.mechanism { background: var(--mint); }
.mechanism-intro { max-width: 760px; }
.mechanism-highlight { max-width: 760px; font-size: 1.05rem; color: var(--teal); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.step { text-align: left; }
.step-icon {
  display: block;
  width: 83px;
  height: 83px;
  margin-bottom: 14px;
}
.step-icon img { width: 100%; height: 100%; object-fit: contain; }
.step h3 { color: var(--teal); text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.4px; font-family: var(--font-sans); font-weight: 700; }
.step p { font-size: 0.9rem; }

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step { display: flex; align-items: flex-start; gap: 16px; }
  .step-icon { flex: none; margin-bottom: 0; width: 64px; height: 64px; }
}

/* ---------- evidence / charts ---------- */
.section-lede { font-weight: 600; color: var(--teal); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.6px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.chart-card, .risk-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 18px rgba(31,66,84,0.06);
}
.risk-card { margin-top: 28px; }
.chart-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--plum-light);
  margin-bottom: 8px;
}
.chart-card h3, .risk-card h3, .chart-row-text h3 { font-size: 1.1rem; margin-bottom: 10px; }
.chart-card p, .risk-card p, .chart-row-text p { font-size: 0.9rem; }
.chart-wrap { width: 100%; margin-top: 14px; }
.chart-wrap img { width: 100%; height: auto; display: block; }
.chart-wrap-wide { overflow-x: auto; }
.chart-wrap-wide img { min-width: 640px; }
.chart-wrap-donut { max-width: 260px; margin-left: auto; margin-right: auto; }
.evidence-link { text-align: center; margin-top: 8px; font-weight: 600; }
.evidence-link a { color: var(--plum); text-decoration: underline; }

.evidence-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.chart-row {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 18px rgba(31, 66, 84, 0.06);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.chart-row .chart-wrap { margin-top: 0; }

@media (max-width: 860px) {
  .chart-row { grid-template-columns: 1fr; gap: 20px; }
}

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

/* ---------- onboarding ---------- */
.onboarding { background: var(--plum); color: var(--white); }
.onboarding h2 { color: var(--white); }
.onboarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.numbered-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.numbered-list li { display: flex; gap: 16px; align-items: flex-start; }
.numbered-list .num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #efd2ea;
  color: var(--plum);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
}
.numbered-list div { line-height: 1.55; padding-top: 4px; }
.onboarding-image { position: relative; }
.onboarding-image img:not(.decor-dots) { border-radius: 20px; position: relative; z-index: 2; }
.onboarding-image .decor-dots {
  position: absolute;
  z-index: 1;
  top: -10%;
  left: -14%;
  width: 55%;
  height: auto;
  pointer-events: none;
}

@media (max-width: 760px) {
  .onboarding-grid { grid-template-columns: 1fr; gap: 24px; }
  .onboarding-image { order: -1; }
  .onboarding-image .decor-dots { display: none; }
}

/* ---------- quote ---------- */
.quote-section { background: var(--white); }
.quote-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.quote-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--plum-light);
  margin-bottom: 18px;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  color: var(--teal);
  margin: 0 0 28px;
  line-height: 1.4;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 700; margin: 0; text-align: left; }
.author-role { font-size: 0.85rem; color: #7a8589; margin: 2px 0 0; text-align: left; }

/* ---------- contact ---------- */
.contact { background: var(--plum); color: var(--white); text-align: center; }
.contact p { color: var(--white); }
.contact-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-qr { border-radius: 12px; }
.contact-visit { font-weight: 600; }
.contact-visit a { color: var(--white); text-decoration: underline; }
.contact-tagline { font-family: var(--font-serif); font-size: 1.2rem; margin: 4px 0 0; }
.contact-email { margin-top: 8px; }
.contact-email a { color: var(--white); text-decoration: underline; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
  font-size: 0.75rem;
  line-height: 1.6;
}
.site-footer p { color: inherit; }
.footnotes { margin-top: 14px; font-size: 0.68rem; opacity: 0.75; }
.mrk { margin-top: 14px; opacity: 0.6; font-size: 0.68rem; }

/* ---------- page hero (content pages) ---------- */
.page-hero {
  padding: 56px 0 64px;
  border-top: 4px solid var(--plum);
}
.page-hero-inner { max-width: 720px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 400px) 1fr;
  gap: 56px;
  align-items: center;
}
.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.page-hero h1.eyebrow { margin-bottom: 14px; }
.page-hero-lede { font-family: var(--font-serif); font-size: 1.6rem; color: var(--teal); max-width: 560px; margin: 0; }

@media (max-width: 760px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-image { max-width: 320px; margin: 0 auto; order: -1; }
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 48px;
  align-items: center;
}

@media (max-width: 760px) {
  .mechanism-grid { grid-template-columns: 1fr; gap: 24px; }
  .mechanism-grid .page-hero-image { max-width: 320px; margin: 0 auto; }
}

/* ---------- source links ---------- */
.source-links {
  display: block;
  font-size: 0.78rem;
  color: #7a8589;
  margin-top: 4px;
}
.source-links a { color: var(--plum); text-decoration: underline; }
.source-links .sep { margin: 0 4px; }
.source-links-spaced { margin-top: 16px; }

/* ---------- info tables ---------- */
.table-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(31,66,84,0.06);
  overflow: hidden;
  margin: 20px 0 28px;
}
.info-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.info-table thead th {
  background: var(--plum);
  color: var(--white);
  text-align: left;
  font-weight: 700;
  padding: 14px 22px;
  font-family: var(--font-sans);
}
.info-table td {
  padding: 12px 22px;
  border-bottom: 1px solid rgba(89,28,78,0.08);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--tan-light); }
.info-table td:last-child { text-align: right; font-weight: 600; color: var(--plum); }
.info-table tr.is-match td { background: var(--plum); color: var(--white); }
.info-table tr.is-match td:last-child { color: var(--gold); }
.table-card-wrap { overflow-x: auto; }

/* ---------- options grid (treatment panels) ---------- */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.option-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 18px rgba(31,66,84,0.06);
  display: flex;
  flex-direction: column;
}
.option-card h3 { margin-bottom: 6px; }
.option-card-highlight { border: 2px solid var(--gold); }
.option-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--teal);
  margin-bottom: 10px;
}
.option-card p { font-size: 0.92rem; }
.option-card .check-list li { font-size: 0.92rem; }
.option-card .video-embed { margin: 10px 0; }
.option-card .source-links { margin-top: auto; padding-top: 14px; }

.options-grid-bottom {
  grid-template-columns: repeat(2, 1fr);
  width: calc(66.666% - 8px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .options-grid { grid-template-columns: 1fr 1fr; }
  .options-grid-bottom { width: 100%; }
}
@media (max-width: 620px) {
  .options-grid { grid-template-columns: 1fr; }
  .options-grid-bottom { width: 100%; }
}

/* ---------- video embed ---------- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed.video-embed-link {
  display: block;
  background-size: cover;
  background-position: center;
}
.video-embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(42, 42, 40, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.video-embed-link:hover .video-embed-play {
  background: var(--plum);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-embed-play svg { width: 28px; height: 28px; fill: var(--white); margin-left: 4px; }

/* ---------- notice / disclaimer section ---------- */
.notice-section {
  background: var(--plum-dark);
  padding: 40px 0;
}
.notice-section h3 { color: var(--white); margin-bottom: 12px; }
.notice-section p { font-size: 0.75rem; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.notice-section p:last-child { margin-bottom: 0; }

.placeholder-link {
  color: #9aa3a6;
  text-decoration: underline dotted;
  cursor: not-allowed;
}

/* ---------- simple footer ---------- */
.simple-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #7a8589;
  border-top: 1px solid rgba(89,28,78,0.1);
}
.simple-footer a { color: var(--plum); text-decoration: underline; }
.simple-footer .sep { margin: 0 8px; }

/* ---------- legal / policy page ---------- */
.policy-content h2 { margin-top: 40px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content ul { margin: 0 0 14px; padding-left: 22px; }
.policy-content li { margin-bottom: 6px; line-height: 1.6; color: #3c4a4f; }

/* ---------- BMI kalkulátor (barvy dle referenčního webu epitomee.de) ---------- */
.bmi-calc-section {
  background: var(--white);
  --bmi-accent: #e07d5a;
  --bmi-heading: #7d5ea8;
  --bmi-box-bg: #f5f0fa;
  --bmi-dark: #2c2826;
}
.bmi-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.bmi-calc-form {
  background: var(--bmi-box-bg);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.bmi-calc-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.bmi-calc-form input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(125,94,168,0.25);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.bmi-calc-form input:focus {
  outline: none;
  border-color: var(--bmi-heading);
}
.bmi-calc-btn { width: 100%; text-align: center; border: none; cursor: pointer; }
.bmi-calc-error { color: var(--magenta); font-size: 0.85rem; margin: 14px 0 0; }
.bmi-calc-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  text-align: center;
}
.bmi-calc-result-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.1;
}
.bmi-calc-result-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.bmi-categories h3 { margin-bottom: 16px; }
.bmi-calc-section .info-table tr:nth-child(even) td { background: var(--bmi-box-bg); }
.bmi-calc-section .info-table td:last-child { color: var(--bmi-heading); }
.bmi-calc-section .info-table thead th { background: var(--bmi-heading); }
.bmi-calc-section .info-table tr.is-match td { background: var(--plum); color: var(--white); }
.bmi-calc-section .info-table tr.is-match td:last-child { color: var(--gold); }

#waist-table thead th { background: var(--bmi-box-bg); color: var(--ink); font-weight: 700; }
#waist-table tbody tr td { background: var(--white); }
#waist-table tbody tr td:last-child { color: var(--bmi-heading); }

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

/* ---------- Homepage (rozcestník) ---------- */
.hub-hero { padding-top: 56px; padding-bottom: 40px; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hub-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 18px rgba(31,66,84,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(31,66,84,0.14); }
.hub-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.hub-card-image img { width: 100%; height: 100%; object-fit: cover; }
.hub-card-image-product img { object-fit: contain; padding: 20px; }
.hub-card-body { padding: 24px 26px 28px; }
.hub-card-body h3 { margin-bottom: 8px; }
.hub-card-body p { font-size: 0.92rem; margin-bottom: 18px; }
.hub-card-cta { font-weight: 700; color: var(--plum); font-size: 0.9rem; }

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