/* Sprint A1.2 – Production link/assets stabilization */
:root {
  --bg: #f7fbf9;
  --text: #12332a;
  --muted: #5f746d;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --card: #ffffff;
  --border: #d9e7e2;
  --soft: #e9f5f1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  direction: rtl;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header,
nav,
main,
section,
footer {
  width: 100%;
}

header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

nav,
.navbar,
.header-inner,
.container,
main > section,
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
}

nav ul,
.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav a,
.nav-links a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
}

nav a:hover,
.nav-links a:hover {
  background: var(--soft);
  text-decoration: none;
}

.logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img,
.brand img {
  width: 76px;
  height: auto;
  border-radius: 12px;
}

.hero,
.card,
.policy-card,
.article-card,
.service-card,
.faq-item,
section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin: 18px auto;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(18, 51, 42, 0.05);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #edf8f4 100%);
}

h1, h2, h3 {
  line-height: 1.35;
  margin-top: 0;
  color: var(--text);
}

p {
  margin: 0 0 14px;
}

.btn,
.button,
.cta,
.whatsapp-button,
a[href*="wa.me"] {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  margin: 6px 0;
}

.btn:hover,
.button:hover,
.cta:hover,
.whatsapp-button:hover,
a[href*="wa.me"]:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 24px 20px;
  margin-top: 36px;
}

footer a {
  color: var(--brand-dark);
}

.disclaimer,
small {
  color: var(--muted);
  font-size: 0.95rem;
}

ul, ol {
  padding-right: 22px;
}

li {
  margin-bottom: 8px;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 720px) {
  nav ul,
  .nav-links {
    display: block;
  }

  nav a,
  .nav-links a {
    display: block;
    margin: 4px 0;
  }

  .hero,
  .card,
  .policy-card,
  .article-card,
  .service-card,
  .faq-item,
  section {
    padding: 18px;
    border-radius: 14px;
  }
}

/* Sprint B2 – Performance & UX polish */
img {
  display: block;
}

main,
section,
.card,
.article-card,
.service-card,
.policy-card,
.faq-item {
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.hero,
.site-header,
header,
footer,
nav {
  content-visibility: visible;
}

.cta,
button,
input,
textarea,
select {
  touch-action: manipulation;
}

.cta,
.btn,
button,
nav a,
.nav-links a {
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.cta:hover,
.btn:hover,
button:hover {
  transform: translateY(-1px);
}

.cta:active,
.btn:active,
button:active {
  transform: translateY(0);
}

@media (max-width: 760px) {
  nav,
  .navbar,
  .header-inner,
  .container,
  main > section,
  main {
    padding: 14px 16px;
  }

  nav ul,
  .nav-links {
    gap: 8px;
  }

  nav a,
  .nav-links a {
    padding: 9px 10px;
  }

  .hero,
  .card,
  .policy-card,
  .article-card,
  .service-card,
  .faq-item,
  section {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* Sprint B3 – Accessibility & Trust polish */
.skip-link {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10000;
  background: #ffffff;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: 10px;
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #0f766e;
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 3px;
  border-radius: 10px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[aria-current="page"] {
  background: var(--soft);
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-note,
.accessibility-note {
  background: #f0f8f5;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 18px 0;
}

form .form-help {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: -6px;
  margin-bottom: 12px;
}

@media (prefers-contrast: more) {
  :root {
    --brand: #075f58;
    --brand-dark: #064e48;
    --text: #08231d;
    --muted: #334c44;
    --border: #78958d;
  }

  a {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}


/* v3.0.1 Quality Recovery Patch – policies, skip link, professional content */
.skip-link {
  position: absolute;
  top: -48px;
  right: 16px;
  z-index: 9999;
  background: #ffffff;
  color: var(--brand-dark);
  border: 2px solid var(--brand);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(18, 51, 42, 0.16);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid rgba(15, 118, 110, .25);
}

.policy-hero {
  background: linear-gradient(180deg, #ffffff 0%, #edf8f4 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 42px);
  margin: 22px auto;
}

.policy-meta {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
}

.policy-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 10px 30px rgba(18, 51, 42, 0.05);
}

.policy-content section {
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 0 28px;
  background: transparent;
}

.policy-content h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.policy-toc {
  position: sticky;
  top: 110px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(18, 51, 42, 0.04);
}

.policy-toc h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.policy-toc a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid #edf3f1;
  font-weight: 600;
}

.policy-cross-links {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  margin-top: 28px;
}

.policy-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.policy-links-grid a {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  text-align: center;
}

.notice-box {
  background: #fff8e6;
  border: 1px solid #ead7a3;
  color: #4f3b08;
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0;
}

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

  .policy-toc {
    position: static;
  }

  .policy-links-grid {
    grid-template-columns: 1fr;
  }
}


/* Version 4.0 Phase 4.1 – Knowledge Center Foundation */
.knowledge-hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(26px, 5vw, 54px);
  margin: 24px auto;
}
.knowledge-hero .eyebrow,
.category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.knowledge-paths,
.knowledge-grid,
.category-grid,
.resource-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.knowledge-card,
.category-card,
.resource-card,
.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(18, 51, 42, 0.05);
  min-height: 100%;
}
.knowledge-card:hover,
.category-card:hover,
.resource-card:hover,
.related-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 51, 42, 0.08);
}
.knowledge-card h2,
.category-card h2,
.resource-card h2,
.related-card h3 {
  margin-bottom: 8px;
}
.knowledge-card p,
.category-card p,
.resource-card p,
.related-card p {
  color: var(--muted);
}
.knowledge-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.knowledge-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  margin: 18px auto;
}
.knowledge-toc ul {
  columns: 2;
  column-gap: 34px;
  margin-bottom: 0;
}
.breadcrumbs {
  font-size: .95rem;
  color: var(--muted);
}
.breadcrumbs a { font-weight: 700; }
.breadcrumb-separator { margin: 0 8px; color: var(--muted); }
.article-template-note {
  background: #f8fbfa;
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 18px;
}
.status-badge {
  display: inline-flex;
  background: #fff8e6;
  border: 1px solid #ead7a3;
  color: #6f5200;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .9rem;
  font-weight: 800;
}
@media (max-width: 900px) {
  .knowledge-paths,
  .knowledge-grid,
  .category-grid,
  .resource-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .knowledge-toc ul { columns: 1; }
}
@media (max-width: 620px) {
  .knowledge-paths,
  .knowledge-grid,
  .category-grid,
  .resource-grid,
  .related-grid { grid-template-columns: 1fr; }
  .knowledge-section-title { display: block; }
}

/* ===== v4.1.1 Article Pages Polish ===== */
.article-hero-v411 {
  width: min(1120px, calc(100% - 36px));
  margin: 18px auto 18px;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 4vw, 54px);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(8, 38, 59, .14);
  background: radial-gradient(circle at 34% 30%, rgba(39, 202, 188, .20), transparent 34%), linear-gradient(135deg, #031d31 0%, #083959 58%, #04243a 100%);
  color: #fff;
  text-align: center;
  content-visibility: visible;
}
.article-hero-v411 h1 {
  color: #ffffff;
  font-size: clamp(2.25rem, 4.2vw, 4.1rem);
  line-height: 1.18;
  margin: 10px auto 16px;
  max-width: 920px;
  text-wrap: balance;
}
.article-kicker-v411 {
  color: #34d7c8;
  font-weight: 900;
  margin: 0 auto 10px;
  letter-spacing: .01em;
}
.article-subtitle-v411,
.article-meta-v411 {
  color: rgba(255,255,255,.90);
  max-width: 760px;
  margin: 0 auto 10px;
  font-weight: 700;
  line-height: 1.7;
}
.article-meta-v411 {
  color: rgba(255,255,255,.78);
  font-size: .98rem;
}
.article-breadcrumbs-v411 {
  width: min(1120px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 0 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.article-body-v411 {
  width: min(880px, calc(100% - 36px));
  margin: 18px auto;
  padding: clamp(24px, 4vw, 44px);
  font-size: 1.08rem;
  line-height: 1.9;
}
.article-body-v411 h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}
.article-body-v411 p,
.article-body-v411 li {
  line-height: 1.9;
}
.article-after-v411 {
  width: min(880px, calc(100% - 36px));
  margin: 18px auto 28px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  content-visibility: visible;
}
.article-nav-grid-v411 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.article-nav-card-v411 {
  display: block;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 51, 42, .06);
}
.article-nav-card-v411 span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 8px;
}
.article-nav-card-v411 strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.45;
}
.article-cta-v411 {
  background: linear-gradient(180deg, #ffffff 0%, #edf8f4 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  box-shadow: 0 14px 34px rgba(18, 51, 42, .07);
}
.article-cta-v411 h2 { margin-bottom: 10px; }
.article-cta-v411 p { max-width: 680px; margin-inline: auto; }

@media (max-width: 920px) {
  .article-hero-v411 {
    width: 100% !important;
    margin: 0 auto 16px !important;
    border-radius: 0 !important;
    padding: 34px 18px 36px !important;
  }
  .article-hero-v411 h1 {
    font-size: clamp(2rem, 8vw, 2.85rem) !important;
    line-height: 1.25 !important;
  }
  .article-subtitle-v411,
  .article-meta-v411 {
    font-size: 1rem !important;
  }
  .article-body-v411,
  .article-after-v411 {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .article-body-v411 {
    padding: 24px 18px !important;
    font-size: 1rem !important;
    line-height: 1.85 !important;
  }
  .article-nav-grid-v411 {
    grid-template-columns: 1fr !important;
  }
}


/* ===== v4.1.5 Clean Visual QA Fix ===== */
.hero-v6 .hero-content-v6 h1,
.hero-v6 .hero-main-title {
  color: var(--text) !important;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem) !important;
  line-height: 1.16 !important;
  margin: 12px 0 18px !important;
  font-weight: 900 !important;
}
.hero-v6 .hero-subtitle-main {
  color: var(--brand-dark) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem) !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}
@media (min-width: 921px) {
  .hero-v6 .hero-portrait-v6 {
    transform: translateY(-22px) !important;
  }
}

.page-title,
.knowledge-hero,
.article-hero-v411 {
  background: linear-gradient(180deg, #ffffff 0%, #edf8f4 100%) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 34px rgba(18, 51, 42, 0.07) !important;
  color: var(--text) !important;
  text-align: center !important;
}
.page-title h1,
.knowledge-hero h1,
.article-hero-v411 h1 {
  color: var(--text) !important;
}
.page-title p,
.knowledge-hero p,
.article-subtitle-v411,
.article-meta-v411 {
  color: var(--muted) !important;
}
.article-kicker-v411,
.knowledge-hero .eyebrow,
.category-label {
  color: var(--brand-dark) !important;
  background: var(--soft) !important;
  border: 1px solid var(--border) !important;
}
.article-hero-v411 {
  width: min(1120px, calc(100% - 36px)) !important;
  margin-top: 18px !important;
}
.article-hero-v411 h1 {
  font-size: clamp(2.15rem, 4vw, 3.7rem) !important;
}
.site-header nav a[aria-current="page"] {
  background: var(--soft);
}
footer[role="contentinfo"] {
  max-width: none;
}
@media (max-width: 920px) {
  .article-hero-v411,
  .page-title,
  .knowledge-hero {
    width: calc(100% - 28px) !important;
    border-radius: 18px !important;
    margin-top: 14px !important;
  }
  .hero-v6 .hero-content-v6 h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem) !important;
  }
}

/* ===== Homepage warm professional mockup ===== */
.warm-home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 7vw, 92px) clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  grid-template-areas:
    "copy portrait"
    "trust portrait";
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  direction: rtl;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 13% 22%, rgba(202, 224, 210, .62), transparent 26%),
    radial-gradient(circle at 86% 86%, rgba(232, 211, 174, .34), transparent 30%),
    linear-gradient(135deg, #fbf8f1 0%, #f4f7f0 52%, #edf5ef 100%);
  content-visibility: visible;
}

.warm-hero-copy {
  grid-area: copy;
  max-width: 710px;
  justify-self: end;
}

.warm-hero-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 93, 77, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #47685c;
  font-size: .96rem;
  font-weight: 800;
}

.warm-home-hero h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #173b32;
  font-size: clamp(3.2rem, 5.7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.warm-hero-lead {
  max-width: 680px;
  margin: 0 0 16px;
  color: #294c42;
  font-size: clamp(1.2rem, 1.75vw, 1.52rem);
  font-weight: 700;
  line-height: 1.65;
}

.warm-hero-note {
  max-width: 620px;
  margin: 0 0 15px;
  color: #65776f;
  font-size: 1rem;
  line-height: 1.7;
}

.warm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.warm-hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #47685c;
}

.warm-hero-promises li {
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.5;
}

.warm-hero-promises li::before {
  content: "✓";
  margin-left: 7px;
  color: #2b8069;
  font-weight: 900;
}

.warm-home-hero a.warm-hero-btn {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 23px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.warm-home-hero a.warm-hero-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.warm-home-hero a.warm-hero-btn-primary {
  background: #246f5c;
  color: #fff;
  box-shadow: 0 13px 28px rgba(36, 111, 92, .2);
}

.warm-home-hero a.warm-hero-btn-primary:hover {
  background: #185a4a;
  color: #fff;
}

.warm-home-hero a.warm-hero-btn-secondary {
  border-color: rgba(36, 82, 69, .24);
  background: rgba(255, 255, 255, .76);
  color: #214f42;
}

.warm-home-hero a.warm-hero-btn-secondary:hover {
  background: #fff;
  color: #173b32;
}

.warm-hero-trust {
  grid-area: trust;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(46, 82, 70, .16);
}

.warm-hero-trust > div {
  min-width: 0;
  padding: 0 17px;
  border-left: 1px solid rgba(46, 82, 70, .14);
}

.warm-hero-trust > div:first-child {
  padding-right: 0;
}

.warm-hero-trust > div:last-child {
  border-left: 0;
  padding-left: 0;
}

.warm-hero-trust strong,
.warm-hero-trust span {
  display: block;
}

.warm-hero-trust strong {
  margin-bottom: 4px;
  color: #254b40;
  font-size: .96rem;
  line-height: 1.45;
}

.warm-hero-trust span {
  color: #74837d;
  font-size: .85rem;
  line-height: 1.45;
}

.warm-hero-portrait {
  grid-area: portrait;
  align-self: center;
  width: min(100%, 470px);
  margin: 0;
  justify-self: start;
  position: relative;
}

.warm-hero-portrait::before {
  content: "";
  position: absolute;
  inset: 28px -24px -22px 32px;
  z-index: 0;
  border-radius: 36px;
  background: #dcebe0;
  transform: rotate(-2deg);
}

.warm-hero-image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .88);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(37, 72, 60, .18);
}

.warm-hero-image-wrap img {
  width: 100%;
  aspect-ratio: 591 / 775;
  object-fit: cover;
  object-position: center top;
}

.warm-hero-portrait figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  margin: -30px auto 0;
  padding: 15px 20px;
  border: 1px solid rgba(46, 82, 70, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(37, 72, 60, .12);
  text-align: center;
}

.warm-hero-portrait figcaption strong,
.warm-hero-portrait figcaption span {
  display: block;
}

.warm-hero-portrait figcaption strong {
  color: #173b32;
  font-size: 1.04rem;
}

.warm-hero-portrait figcaption span {
  margin-top: 2px;
  color: #6c7b75;
  font-size: .88rem;
  line-height: 1.45;
}
