body.real-estate-ia-ready,
body.real-estate-ia-ready .strategy-main {
  background: #06111d;
  color: #fff;
}

body.real-estate-ia-ready .strategy-main,
body.real-estate-ia-ready .strategy-main * {
  box-sizing: border-box;
}

.re2-site {
  --ink: #06111d;
  --ink-2: #0d1d2c;
  --panel: rgba(9, 18, 29, 0.78);
  --panel-strong: rgba(7, 17, 28, 0.94);
  --line: rgba(255, 255, 255, 0.18);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: rgba(6, 17, 29, 0.68);
  --pink: #ff0f4f;
  --pink-2: #ff2e66;
  --paper: #ffffff;
  --mist: #f3f6f7;
  --cyan: #65d8e2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  overflow-x: clip;
}

.re2-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 clamp(20px, 4vw, 64px);
  width: 100%;
}

.re2-kicker {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.re2-local-nav {
  background: #fff;
  border-bottom: 1px solid rgba(6, 17, 29, 0.08);
  padding: 6px 0;
  position: sticky;
  top: 82px;
  z-index: 50;
}

.re2-local-nav nav {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.re2-nav-link {
  align-items: center;
  background: #0d1d2c;
  border: 1px solid rgba(6, 17, 29, 0.16);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 48px;
  padding: 8px 10px;
  text-decoration: none;
}

.re2-nav-link span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--pink);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.re2-nav-link strong {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.re2-nav-link small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 750;
  grid-column: 2;
  line-height: 1.3;
}

.re2-nav-link:hover,
.re2-nav-link:focus-visible,
.re2-nav-link.is-active {
  background:
    linear-gradient(135deg, rgba(255, 15, 79, 0.26), rgba(101, 216, 226, 0.09)),
    #111c2b;
  border-color: var(--pink);
  outline: none;
}

.re2-nav-link.is-active span {
  background: var(--pink);
  color: #fff;
}

.re2-hero {
  min-height: calc(100svh - 82px);
  overflow: hidden;
  position: relative;
}

.re2-site--topic .re2-hero {
  min-height: calc(100svh - 82px);
}

.re2-hero-bg,
.re2-hero-bg img,
.re2-section-bg,
.re2-section-bg img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.re2-hero-bg img,
.re2-section-bg img {
  display: block;
  filter: saturate(1.05) contrast(1.04);
  object-fit: cover;
}

.re2-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(7, 17, 29, 0.78) 50%, rgba(7, 17, 29, 0.42) 100%),
    radial-gradient(circle at 76% 42%, rgba(255, 15, 79, 0.1), transparent 32%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.re2-hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.54fr);
  min-height: inherit;
  padding-bottom: clamp(52px, 6vw, 84px);
  padding-top: clamp(52px, 6vw, 84px);
  position: relative;
  z-index: 2;
}

.re2-hero-copy {
  max-width: 760px;
  min-width: 0;
}

.re2-hero h1 {
  color: #fff;
  font-size: clamp(2.75rem, 4.6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
  white-space: normal;
}

.re2-hero h1 span {
  display: block;
}

.re2-hero h1 span:first-child {
  color: #fff;
}

.re2-hero-copy > p:not(.re2-kicker) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 580;
  line-height: 1.62;
  margin: 24px 0 0;
  max-width: 720px;
}

.re2-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.re2-btn {
  align-items: center;
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.re2-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.re2-hero-board {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  backdrop-filter: blur(16px);
}

.re2-hero-nav-card {
  background:
    linear-gradient(180deg, rgba(8, 23, 36, 0.9), rgba(8, 23, 36, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  color: #fff;
  overflow: hidden;
  padding: clamp(20px, 2.3vw, 28px);
  backdrop-filter: blur(18px);
}

.re2-hero-nav-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

.re2-hero-nav-head h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.re2-hero-nav-head p:not(.re2-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  margin: 12px 0 0;
}

.re2-hero-nav-head p:not(.re2-kicker) strong {
  color: #fff;
}

.re2-hero-nav-list {
  counter-reset: re2-hero-nav;
  display: grid;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.re2-hero-nav-list li {
  margin: 0;
}

.re2-hero-nav-link {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 12px 0;
  position: relative;
  text-decoration: none;
}

.re2-hero-nav-list li:last-child .re2-hero-nav-link {
  border-bottom: 0;
}

.re2-hero-nav-link::before {
  background: transparent;
  border-radius: 999px;
  content: "";
  height: calc(100% - 18px);
  left: -14px;
  position: absolute;
  top: 9px;
  width: 3px;
}

.re2-nav-index {
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.re2-nav-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.re2-nav-copy strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.12;
}

.re2-nav-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.re2-nav-status {
  border: 1px solid rgba(255, 15, 79, 0.36);
  border-radius: 999px;
  color: #ff8cab;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  padding: 6px 8px;
  text-transform: uppercase;
}

.re2-hero-nav-link:hover,
.re2-hero-nav-link:focus-visible,
.re2-hero-nav-link.is-active {
  outline: none;
}

.re2-hero-nav-link:hover .re2-nav-copy strong,
.re2-hero-nav-link:focus-visible .re2-nav-copy strong {
  color: #ff8cab;
}

.re2-hero-nav-link.is-active::before {
  background: var(--pink);
}

.re2-hero-nav-link.is-active .re2-nav-copy strong {
  color: #fff;
}

.re2-hero-mosaic {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.25fr 0.85fr;
}

.re2-hero-mosaic img {
  aspect-ratio: 1.2 / 0.82;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: block;
  height: 100%;
  min-height: 108px;
  object-fit: cover;
  width: 100%;
}

.re2-hero-mosaic img:first-child {
  grid-row: span 2;
}

.re2-hero-insights {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.re2-hero-insight {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 11px 12px;
}

.re2-hero-insight span {
  color: var(--pink);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.re2-hero-insight p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.42;
  margin: 5px 0 0;
}

.re2-hero-context {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #06111d 0%, #0c2438 100%);
  background-size: 68px 68px, 68px 68px, auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: clamp(38px, 4vw, 58px) 0;
}

.re2-hero-context-layout {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3vw, 40px);
  grid-template-columns: minmax(210px, 0.42fr) minmax(260px, 0.52fr) minmax(320px, 0.72fr);
}

.re2-hero-context-copy h2 {
  color: #fff;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.re2-hero-context .re2-hero-mosaic {
  margin: 0;
}

.re2-hero-context .re2-hero-mosaic img {
  min-height: 92px;
}

.re2-hero-context .re2-hero-insights {
  margin-top: 0;
}

.re2-section {
  padding: clamp(58px, 7vw, 92px) 0;
  position: relative;
}

.re2-section--compact {
  padding: clamp(42px, 5vw, 70px) 0;
}

.re2-section--white {
  background: #fff;
  color: var(--ink);
}

.re2-section--dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 15, 79, 0.16), transparent 28%),
    linear-gradient(135deg, #06111d 0%, #0d2433 100%);
  color: #fff;
}

.re2-section--image {
  background: #06111d;
  color: #fff;
  overflow: hidden;
}

.re2-section--image::after {
  background: linear-gradient(90deg, rgba(3, 10, 18, 0.92), rgba(6, 17, 29, 0.74));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.re2-section--image .re2-shell {
  position: relative;
  z-index: 2;
}

.re2-split {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.88fr);
}

.re2-split--dark {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
}

.re2-section-head {
  position: sticky;
  top: 220px;
}

.re2-section-head--wide {
  max-width: 780px;
  position: static;
}

.re2-section-head h2 {
  color: inherit;
  font-size: clamp(1.95rem, 3.35vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.re2-section-head p:not(.re2-kicker) {
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.16vw, 1.13rem);
  font-weight: 560;
  line-height: 1.68;
  margin: 22px 0 0;
}

.re2-core-flow {
  display: grid;
  gap: clamp(24px, 3.4vw, 42px);
}

.re2-core-flow .re2-section-head {
  position: static;
}

.re2-core-body {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.86fr);
}

.re2-fund-nav-card {
  background:
    linear-gradient(180deg, rgba(8, 23, 36, 0.98), rgba(8, 23, 36, 0.9));
  border: 1px solid rgba(6, 17, 29, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(6, 17, 29, 0.16);
  color: #fff;
  padding: clamp(20px, 2.3vw, 28px);
  position: sticky;
  top: 150px;
}

.re2-fund-nav-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

.re2-fund-nav-head h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.re2-fund-nav-head p:not(.re2-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  margin: 12px 0 0;
}

.re2-fund-nav-head p:not(.re2-kicker) strong {
  color: #fff;
}

.re2-fund-nav-list {
  display: grid;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.re2-fund-nav-list li {
  min-width: 0;
}

.re2-fund-nav-link {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 12px 0;
  position: relative;
  text-decoration: none;
}

.re2-fund-nav-list li:last-child .re2-fund-nav-link {
  border-bottom: 0;
}

.re2-fund-nav-link::before {
  background: transparent;
  border-radius: 999px;
  content: "";
  height: calc(100% - 18px);
  left: -14px;
  position: absolute;
  top: 9px;
  width: 3px;
}

.re2-fund-nav-link .re2-nav-status {
  justify-self: start;
}

.re2-fund-nav-link:hover,
.re2-fund-nav-link:focus-visible,
.re2-fund-nav-link.is-active {
  outline: none;
}

.re2-fund-nav-link:hover .re2-nav-copy strong,
.re2-fund-nav-link:focus-visible .re2-nav-copy strong {
  color: #ff8cab;
}

.re2-fund-nav-link.is-active::before {
  background: var(--pink);
}

.re2-fund-nav-link.is-active .re2-nav-index {
  align-items: center;
  background: var(--pink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.re2-section--dark .re2-section-head p:not(.re2-kicker),
.re2-section--image .re2-section-head p:not(.re2-kicker) {
  color: var(--muted);
}

.re2-tabs {
  min-width: 0;
}

.re2-tab-list {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.re2-tab-list::-webkit-scrollbar {
  display: none;
}

.re2-tab {
  background: #101d2b;
  border: 1px solid rgba(6, 17, 29, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 48px;
  padding: 0 16px;
}

.re2-tab span {
  color: var(--pink);
  margin-right: 8px;
}

.re2-tab.is-active,
.re2-tab:hover,
.re2-tab:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  outline: none;
}

.re2-tab.is-active span,
.re2-tab:hover span,
.re2-tab:focus-visible span {
  color: #fff;
}

.re2-panel-frame {
  background: #fff;
  border: 1px solid rgba(6, 17, 29, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(6, 17, 29, 0.15);
  color: var(--ink);
  min-height: 0;
  overflow: hidden;
}

.re2-panel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.re2-panel[hidden] {
  display: none;
}

.re2-panel-media {
  position: relative;
}

.re2-panel-media::after {
  background: linear-gradient(180deg, transparent, rgba(6, 17, 29, 0.55));
  content: "";
  inset: 0;
  position: absolute;
}

.re2-panel-media img {
  aspect-ratio: 16 / 6.2;
  display: block;
  height: auto;
  max-height: 320px;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.re2-panel-copy {
  align-self: start;
  padding: clamp(28px, 3.6vw, 46px);
}

.re2-panel-copy h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.re2-panel-copy p:not(.re2-kicker) {
  color: rgba(6, 17, 29, 0.74);
  font-size: 1rem;
  font-weight: 580;
  line-height: 1.58;
  margin: 16px 0 0;
}

.re2-panel-copy ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.re2-panel-copy li {
  background: #f4f7f8;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 8px;
  color: rgba(6, 17, 29, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 11px 13px;
}

.re2-detail-stack {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 22px;
}

.re2-detail-card {
  background: #f7f9fa;
  border: 1px solid rgba(6, 17, 29, 0.09);
  border-radius: 8px;
  min-width: 0;
  padding: 14px;
}

.re2-detail-card h4 {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.re2-detail-card h4::before {
  background: var(--pink);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 9px;
  vertical-align: 0.08em;
  width: 7px;
}

.re2-detail-card p {
  color: rgba(6, 17, 29, 0.68);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.52;
  margin: 10px 0 0;
}

.re2-stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.re2-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  min-height: 172px;
  padding: 24px;
}

.re2-stat strong {
  color: #fff;
  display: block;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.re2-stat p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
  margin: 16px 0 0;
}

.re2-visual-map {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 18px;
}

.re2-visual-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  display: grid;
  min-height: 286px;
  overflow: hidden;
}

.re2-visual-card img {
  aspect-ratio: 1 / 0.72;
  display: block;
  height: 100%;
  max-height: 150px;
  object-fit: cover;
  width: 100%;
}

.re2-visual-card div {
  align-self: start;
  padding: 18px;
}

.re2-visual-card span {
  color: var(--pink);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.re2-visual-card h3 {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 10px 0 0;
}

.re2-proof-stack {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.re2-proof-stat-panel {
  display: grid;
  gap: 14px;
}

.re2-proof-stat-main,
.re2-proof-stat-rail {
  display: grid;
  gap: 14px;
}

.re2-proof-stat-main {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.re2-proof-stat-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.re2-proof-stat {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  min-height: 134px;
  padding: 22px;
}

.re2-proof-stat--hero {
  min-height: 214px;
  padding: 28px;
}

.re2-proof-stat strong {
  color: #fff;
  display: block;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.re2-proof-stat:not(.re2-proof-stat--hero) strong {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.re2-proof-stat p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
  margin: 18px 0 0;
}

.re2-proof-visual-system {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.38fr);
}

.re2-proof-visual-feature,
.re2-proof-visual-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}

.re2-proof-visual-feature {
  display: grid;
  min-height: 454px;
}

.re2-proof-visual-feature img,
.re2-proof-visual-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.re2-proof-visual-feature img {
  aspect-ratio: 1 / 0.74;
  max-height: 292px;
}

.re2-proof-visual-feature div {
  align-self: end;
  padding: 24px;
}

.re2-proof-visual-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.re2-proof-visual-card {
  display: grid;
  grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
  min-height: 138px;
}

.re2-proof-visual-card div {
  align-self: center;
  padding: 18px;
}

.re2-proof-visual-feature span,
.re2-proof-visual-card span {
  color: var(--pink);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.re2-proof-visual-feature h3,
.re2-proof-visual-card h3 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  margin: 10px 0 0;
}

.re2-proof-visual-feature h3 {
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 0.96;
}

.re2-proof-visual-card h3 {
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.06;
}

.re2-chapter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.re2-split .re2-chapter-grid {
  margin-top: 0;
}

.re2-chapter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  color: #fff;
  display: grid;
  overflow: hidden;
  text-decoration: none;
}

.re2-chapter.is-active,
.re2-chapter:hover,
.re2-chapter:focus-visible {
  border-color: var(--pink);
  outline: none;
}

.re2-chapter img {
  aspect-ratio: 1 / 0.72;
  display: block;
  object-fit: cover;
  width: 100%;
}

.re2-chapter span,
.re2-chapter h3,
.re2-chapter p {
  margin-left: 18px;
  margin-right: 18px;
}

.re2-chapter span {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  margin-top: 18px;
}

.re2-chapter h3 {
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0;
  margin-top: 12px;
}

.re2-chapter p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  margin-bottom: 20px;
  margin-top: 12px;
}

.re2-asset-groups {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.re2-asset-group h3 {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 12px;
}

.re2-asset-rail {
  display: grid;
  gap: 12px;
  grid-auto-columns: minmax(176px, 212px);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.re2-asset-card {
  background: #f6f8f9;
  border: 1px solid rgba(6, 17, 29, 0.1);
  border-radius: 8px;
  color: var(--ink);
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  scroll-snap-align: start;
}

.re2-asset-card img {
  aspect-ratio: 1 / 0.68;
  background: #dfe6ea;
  display: block;
  object-fit: cover;
  width: 100%;
}

.re2-asset-card figcaption {
  padding: 14px;
}

.re2-asset-card span {
  color: var(--pink);
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.re2-asset-card strong {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.28;
  margin-top: 8px;
}

@media (max-width: 1370px) {
  .re2-local-nav {
    top: 126px;
  }
}

@media (max-width: 1180px) {
  .re2-hero-layout,
  .re2-hero-context-layout,
  .re2-core-body,
  .re2-split,
  .re2-split--dark {
    grid-template-columns: 1fr;
  }

  .re2-hero-nav-card {
    max-width: 720px;
  }

  .re2-hero-context .re2-hero-mosaic {
    max-width: 620px;
  }

  .re2-section-head {
    max-width: 780px;
    position: static;
  }

  .re2-fund-nav-card {
    max-width: 720px;
    position: static;
  }

  .re2-local-nav nav,
  .re2-stat-grid,
  .re2-visual-map,
  .re2-chapter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .re2-proof-visual-system {
    grid-template-columns: 1fr;
  }

  .re2-proof-visual-feature {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
    min-height: 0;
  }

  .re2-proof-visual-feature img {
    aspect-ratio: 1 / 0.7;
    max-height: none;
  }
}

@media (max-width: 760px) {
  .re2-local-nav {
    position: relative;
    top: auto;
  }

  .re2-local-nav nav {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .re2-local-nav nav::-webkit-scrollbar {
    display: none;
  }

  .re2-nav-link {
    flex: 0 0 150px;
    min-height: 54px;
    scroll-snap-align: start;
  }

  .re2-hero {
    min-height: calc(100svh - 82px);
  }

  .re2-hero-layout {
    padding-bottom: 54px;
    padding-top: 58px;
  }

  .re2-hero h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 0.98;
    text-wrap: initial;
  }

  .re2-hero-board {
    border-radius: 18px;
    padding: 18px;
  }

  .re2-hero-nav-card {
    padding: 20px;
    border-radius: 18px;
  }

  .re2-hero-nav-link {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 54px;
  }

  .re2-nav-status {
    display: none;
  }

  .re2-hero-context {
    padding: 42px 0;
  }

  .re2-action-row {
    margin-top: 24px;
  }

  .re2-btn {
    width: 100%;
  }

  .re2-section {
    padding: 62px 0;
  }

  .re2-section--compact {
    padding: 48px 0;
  }

  .re2-section-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .re2-panel,
  .re2-stat-grid,
  .re2-detail-stack,
  .re2-chapter-grid {
    grid-template-columns: 1fr;
  }

  .re2-proof-stat-main,
  .re2-proof-stat-rail,
  .re2-proof-visual-grid,
  .re2-proof-visual-feature,
  .re2-proof-visual-card {
    grid-template-columns: 1fr;
  }

  .re2-proof-stat,
  .re2-proof-stat--hero {
    min-height: 0;
    padding: 22px;
  }

  .re2-proof-visual-feature img,
  .re2-proof-visual-card img {
    aspect-ratio: 1 / 0.58;
    height: auto;
    max-height: none;
  }

  .re2-proof-visual-feature div,
  .re2-proof-visual-card div {
    padding: 20px;
  }

  .re2-visual-map,
  .re2-chapter-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .re2-visual-map::-webkit-scrollbar,
  .re2-chapter-grid::-webkit-scrollbar {
    display: none;
  }

  .re2-visual-card {
    flex: 0 0 252px;
    scroll-snap-align: start;
  }

  .re2-chapter {
    flex: 0 0 276px;
    scroll-snap-align: start;
  }

  .re2-asset-rail {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .re2-visual-card {
    min-height: 0;
  }

  .re2-panel-frame,
  .re2-panel {
    min-height: 0;
  }

  .re2-panel-media img {
    aspect-ratio: 1 / 0.68;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .re2-shell {
    padding: 0 18px;
  }

  .re2-hero h1 {
    font-size: clamp(1.82rem, 8.1vw, 2.1rem);
  }

  .re2-hero-copy > p:not(.re2-kicker),
  .re2-section-head p:not(.re2-kicker),
  .re2-panel-copy p:not(.re2-kicker) {
    font-size: 0.96rem;
  }

  .re2-tab {
    font-size: 0.76rem;
    padding: 0 12px;
  }

  .re2-panel-copy {
    padding: 26px 20px;
  }

  .re2-panel-copy h3 {
    font-size: 1.75rem;
  }

  .re2-hero-nav-head h2 {
    font-size: 1.5rem;
  }

  .re2-nav-copy strong {
    font-size: 0.9rem;
  }

  .re2-hero-context-copy h2 {
    font-size: 1.4rem;
  }
}

/* Finance-reference polish for the chapter overview and readable footer contrast. */
.re2-section--image {
  display: flex;
  align-items: center;
  min-height: min(740px, calc(100svh - 82px));
  padding: clamp(92px, 8vw, 128px) 0 clamp(76px, 7vw, 112px);
  scroll-margin-top: 170px;
}

.re2-section--image::after {
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(5, 16, 27, 0.84) 46%, rgba(7, 21, 34, 0.66) 100%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.18) 0%, rgba(3, 10, 18, 0.72) 100%);
}

.re2-section--image .re2-split--dark {
  grid-template-columns: minmax(420px, 0.52fr) minmax(0, 0.74fr);
  align-items: center;
  gap: clamp(48px, 5vw, 76px);
}

.re2-section--image .re2-section-head {
  min-width: 0;
  position: static;
  max-width: 580px;
}

.re2-section--image .re2-section-head h2 {
  font-size: clamp(2.35rem, 3.2vw, 3.65rem);
  line-height: 0.96;
  overflow-wrap: normal;
}

.re2-section--image .re2-section-head p:not(.re2-kicker) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.62;
}

.re2-section--image .re2-chapter-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.re2-section--image .re2-chapter {
  min-height: 188px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.re2-section--image .re2-chapter:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 150px;
}

.re2-section--image .re2-chapter img {
  display: none;
}

.re2-section--image .re2-chapter span,
.re2-section--image .re2-chapter h3,
.re2-section--image .re2-chapter p {
  margin-left: 0;
  margin-right: 0;
}

.re2-section--image .re2-chapter span {
  margin-top: 0;
  margin-bottom: 10px;
}

.re2-section--image .re2-chapter h3 {
  font-size: clamp(1.04rem, 1.18vw, 1.3rem);
  line-height: 1.06;
  margin-top: 0;
}

.re2-section--image .re2-chapter p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.48;
  margin-bottom: 0;
}

body.real-estate-ia-ready .strategy-footer {
  padding-top: 34px;
  background: #081725;
  color: #fff;
}

body.real-estate-ia-ready .strategy-footer-top,
body.real-estate-ia-ready .strategy-footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
}

body.real-estate-ia-ready .strategy-footer-nav a,
body.real-estate-ia-ready .strategy-footer-legal a,
body.real-estate-ia-ready .strategy-footer-social a {
  color: rgba(255, 255, 255, 0.82);
}

body.real-estate-ia-ready .strategy-footer-nav a:hover,
body.real-estate-ia-ready .strategy-footer-legal a:hover,
body.real-estate-ia-ready .strategy-footer-social a:hover {
  color: #ff2f63;
}

body.real-estate-ia-ready .strategy-footer-credit {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1180px) {
  .re2-section--image {
    min-height: auto;
  }

  .re2-section--image .re2-split--dark {
    grid-template-columns: 1fr;
  }

  .re2-section--image .re2-chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .re2-section--image .re2-chapter-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .re2-section--image .re2-chapter {
    flex: auto;
    min-height: 0;
    scroll-snap-align: none;
  }

  .re2-section--image .re2-chapter:nth-child(5) {
    grid-column: auto;
  }
}

/* Page-local Crays.org typography pass. Kept scoped to the Real Estate fund shell. */
.re2-site {
  --re2-page-heading: "Krona One", "Kronaone", Montserrat, Arial, sans-serif;
  --re2-page-copy: Montserrat, Arial, sans-serif;
}

.re2-site .re2-hero h1 {
  font-family: var(--re2-page-heading) !important;
  font-size: clamp(44px, 3.2vw, 60px) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.re2-site :is(.re2-section-head h2, .re2-section--image .re2-section-head h2) {
  font-family: var(--re2-page-heading) !important;
  font-size: clamp(34px, 2.55vw, 48px) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

.re2-site :is(.re2-hero-context-copy h2, .re2-hero-nav-head h2, .re2-fund-nav-head h3, .re2-panel-copy h3, .re2-chapter h3) {
  font-family: var(--re2-page-heading) !important;
  font-size: clamp(18px, 1.15vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.re2-site h3 {
  font-family: var(--re2-page-heading) !important;
  font-size: clamp(18px, 1.15vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.re2-site :is(.re2-hero-copy > p:not(.re2-kicker), .re2-section-head p, .re2-panel-copy p, .re2-chapter p, .re2-asset-group p, .re2-hero-context-copy p, .re2-card p, .re2-copy, li) {
  font-family: var(--re2-page-copy) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.62 !important;
  letter-spacing: 0 !important;
}

.re2-site p:not(.re2-kicker):not(.re2-card-kicker):not(.re2-eyebrow):not(.re2-pill),
.re2-site li {
  font-family: var(--re2-page-copy) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.62 !important;
  letter-spacing: 0 !important;
}

.re2-site .re2-visual-card p {
  font-family: var(--re2-page-copy) !important;
  font-size: clamp(12.5px, 0.78vw, 14px) !important;
  font-weight: 650 !important;
  line-height: 1.42 !important;
}

.re2-site .re2-hero-insight p {
  font-family: var(--re2-page-copy) !important;
  font-size: clamp(12.5px, 0.78vw, 14px) !important;
  font-weight: 650 !important;
  line-height: 1.42 !important;
}

.re2-site.re2-site .re2-hero .re2-hero-board .re2-hero-insights .re2-hero-insight p,
.re2-site.re2-site .re2-hero .re2-hero-visual .re2-visual-card p {
  font-family: var(--re2-page-copy) !important;
  font-size: clamp(12.5px, 0.78vw, 14px) !important;
  font-weight: 650 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  .re2-site .re2-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .re2-site :is(.re2-section-head h2, .re2-section--image .re2-section-head h2) {
    font-size: clamp(30px, 9vw, 38px) !important;
  }
}

/* Real Estate chapter navigation and tab-detail image cards. */
.re2-site .re2-fund-nav-card {
  min-height: clamp(660px, 66vh, 760px);
  padding: clamp(28px, 2.4vw, 34px);
}

.re2-site .re2-fund-nav-head {
  padding-bottom: 24px;
}

.re2-site .re2-fund-nav-head .re2-kicker {
  font-size: clamp(12px, 0.78vw, 14px) !important;
  margin-bottom: 16px;
}

.re2-site .re2-fund-nav-head h3 {
  font-size: clamp(30px, 2.35vw, 40px) !important;
  line-height: 0.98 !important;
}

.re2-site .re2-fund-nav-head p:not(.re2-kicker) {
  font-size: clamp(16px, 1.08vw, 18px) !important;
  line-height: 1.35 !important;
}

.re2-site .re2-fund-nav-list {
  margin-top: 12px;
}

.re2-site .re2-fund-nav-link {
  min-height: 68px;
  padding: 14px 0;
}

.re2-site .re2-fund-nav-link.is-active .re2-nav-index {
  height: 34px;
  width: 34px;
}

.re2-site .re2-fund-nav-card .re2-nav-index {
  font-size: 0.82rem;
}

.re2-site .re2-fund-nav-card .re2-nav-copy {
  gap: 5px;
}

.re2-site .re2-fund-nav-card .re2-nav-copy strong {
  font-size: clamp(16px, 1vw, 18px) !important;
  line-height: 1.08 !important;
}

.re2-site .re2-fund-nav-card .re2-nav-copy small {
  font-size: clamp(12px, 0.78vw, 13px);
  line-height: 1.2;
}

.re2-site .re2-detail-card {
  position: relative;
  min-height: clamp(230px, 18vw, 300px);
  overflow: hidden;
  padding: clamp(20px, 1.9vw, 26px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(5, 13, 22, 0.88) 0%, rgba(5, 13, 22, 0.66) 44%, rgba(5, 13, 22, 0.9) 100%),
    var(--re2-card-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 54px rgba(6, 17, 29, 0.18);
  color: #fff;
}

.re2-site .re2-detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 8%, rgba(255, 15, 79, 0.28), transparent 30%);
  pointer-events: none;
}

.re2-site .re2-detail-card h4,
.re2-site .re2-detail-card p {
  position: relative;
  z-index: 1;
}

.re2-site .re2-detail-card h4 {
  color: #fff !important;
  font-size: clamp(15px, 0.95vw, 18px) !important;
  line-height: 1.16 !important;
}

.re2-site .re2-detail-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(15px, 0.98vw, 17px) !important;
  font-weight: 650 !important;
  line-height: 1.48 !important;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1180px) {
  .re2-site .re2-fund-nav-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .re2-site .re2-fund-nav-card {
    padding: 24px;
  }

  .re2-site .re2-fund-nav-head h3 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .re2-site .re2-detail-card {
    min-height: 230px;
  }
}

/* Real Estate proof stack: mixed editorial cards keep evidence and imagery in one reading rhythm. */
.re2-proof-stack--editorial {
  margin-top: 40px;
}

.re2-proof-story-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.re2-proof-story-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  color: #fff;
  display: flex;
  grid-column: span 2;
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.re2-proof-story-card--lead {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 716px;
}

.re2-proof-story-card--wide,
.re2-proof-story-card.is-text-only {
  grid-column: span 3;
}

.re2-proof-story-media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.re2-proof-story-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  width: 100%;
}

.re2-proof-story-card.has-image::before {
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.08) 0%, rgba(5, 13, 22, 0.38) 34%, rgba(5, 13, 22, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 13, 22, 0.88), rgba(5, 13, 22, 0.24) 54%, rgba(5, 13, 22, 0.72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.re2-proof-story-card.is-text-only::before {
  background:
    linear-gradient(90deg, var(--pink), rgba(255, 15, 79, 0));
  content: "";
  height: 3px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 22px;
}

.re2-proof-story-copy {
  align-self: flex-end;
  padding: 24px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.re2-proof-story-card--lead .re2-proof-story-copy {
  padding: 30px;
}

.re2-proof-story-label {
  color: var(--pink);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.re2-proof-story-copy h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
  max-width: 11.6em;
}

.re2-proof-story-card--lead .re2-proof-story-copy h3 {
  font-size: 2.45rem;
  line-height: 0.98;
  max-width: 10.8em;
}

.re2-proof-story-copy strong {
  color: #fff;
  display: block;
  font-size: 3.05rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  margin-top: 18px;
}

.re2-proof-story-card--lead .re2-proof-story-copy strong {
  font-size: 5.05rem;
}

.re2-proof-story-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.48;
  margin: 16px 0 0;
  max-width: 34rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.re2-proof-story-card.is-text-only .re2-proof-story-copy {
  align-self: center;
  padding-top: 44px;
}

.re2-proof-story-card.is-text-only .re2-proof-story-copy strong {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .re2-proof-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .re2-proof-story-card,
  .re2-proof-story-card--lead,
  .re2-proof-story-card--wide,
  .re2-proof-story-card.is-text-only {
    grid-column: span 1;
    grid-row: auto;
    min-height: 380px;
  }

  .re2-proof-story-card--lead {
    grid-column: span 2;
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .re2-proof-story-grid {
    grid-template-columns: 1fr;
  }

  .re2-proof-story-card,
  .re2-proof-story-card--lead,
  .re2-proof-story-card--wide,
  .re2-proof-story-card.is-text-only {
    grid-column: 1;
    min-height: 360px;
  }

  .re2-proof-story-card--lead {
    min-height: 460px;
  }

  .re2-proof-story-copy,
  .re2-proof-story-card--lead .re2-proof-story-copy {
    padding: 22px;
  }

  .re2-proof-story-copy h3,
  .re2-proof-story-card--lead .re2-proof-story-copy h3 {
    font-size: 1.65rem;
    line-height: 1.02;
  }

  .re2-proof-story-copy strong,
  .re2-proof-story-card--lead .re2-proof-story-copy strong {
    font-size: 3rem;
  }
}
