/* ===================================================================
   Real Estate Page
   Path: /in/css/realestate.css
   Breakpoints: 1200px / 920px / 768px
   =================================================================== */

:root {
  --realestate-bg: #ffffff;
  --realestate-fg: #18212d;
  --realestate-sub: #5e6875;
  --realestate-navy: #173654;
  --realestate-blue: #24689a;
  --realestate-slate: #657180;
  --realestate-green: #2f7254;
  --realestate-sand: #b49a6a;
  --realestate-soft: #f3f5f6;
  --realestate-line: #dbe1e6;
  --realestate-dark: #17212b;
  --realestate-white: #ffffff;
  --realestate-shadow: 0 14px 36px rgba(23, 54, 84, 0.09);
  --realestate-radius: 20px;
  --realestate-wrap: min(1120px, 92vw);
  --realestate-focus: 0 0 0 3px rgba(36, 104, 154, 0.3);
}

* {
  box-sizing: border-box;
}

.realestate-page {
  color: var(--realestate-fg);
  background-color: var(--realestate-bg);
}

.realestate-main {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;

  overflow-x: hidden;
  overflow-y: visible;
}

.realestate-main img {
  display: block;

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

.realestate-main a {
  text-decoration-line: none;
}

.realestate-main a:focus-visible,
.realestate-main summary:focus-visible {
  outline: none;
  box-shadow: var(--realestate-focus);
}

/* -------------------------------------------------
   Hero
   ------------------------------------------------- */
.realestate-hero {
  position: relative;
  isolation: isolate;

  min-height: clamp(580px, 76vh, 820px);

  color: var(--realestate-white);
}

.realestate-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;

  overflow-x: hidden;
  overflow-y: hidden;
}

.realestate-hero__media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  filter: saturate(0.7);
  transform: scale(1.03);
}

.realestate-hero::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    linear-gradient(90deg, rgba(12, 30, 48, 0.91) 0%, rgba(12, 30, 48, 0.72) 50%, rgba(12, 30, 48, 0.32) 100%),
    linear-gradient(0deg, rgba(10, 25, 40, 0.44), rgba(10, 25, 40, 0));
}

.realestate-hero__overlay {
  min-height: inherit;

  display: grid;
  align-items: center;

  padding-top: clamp(90px, 12vw, 150px);
  padding-right: 0;
  padding-bottom: clamp(70px, 10vw, 120px);
  padding-left: 0;
}

.realestate-hero__overlay .container,
.realestate-section .container,
.realestate-cta .container {
  width: var(--realestate-wrap);
}

.realestate-hero__eyebrow,
.realestate-section__eyebrow,
.realestate-cta__eyebrow {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 14px;
  margin-left: 0;

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.realestate-hero__eyebrow {
  color: #d5e4f0;
}

.realestate-hero__title {
  max-width: 900px;

  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;

  color: var(--realestate-white);

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.realestate-hero__lead {
  max-width: 780px;

  margin-top: 0;
  margin-right: 0;
  margin-bottom: 34px;
  margin-left: 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.9;
}

.realestate-hero__actions,
.realestate-cta__actions {
  display: flex;
  flex-wrap: wrap;

  row-gap: 14px;
  column-gap: 14px;
}

/* -------------------------------------------------
   Buttons
   ------------------------------------------------- */
.realestate-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding-top: 12px;
  padding-right: 22px;
  padding-bottom: 12px;
  padding-left: 22px;

  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;

  font-weight: 800;

  transition-property: transform, background-color, color, border-color, box-shadow;
  transition-duration: 0.2s, 0.2s, 0.2s, 0.2s, 0.2s;
  transition-timing-function: ease, ease, ease, ease, ease;
}

.realestate-btn:hover {
  transform: translateY(-2px);
}

.realestate-btn--primary {
  color: var(--realestate-white);
  background-color: var(--realestate-blue);
  border-top-color: var(--realestate-blue);
  border-right-color: var(--realestate-blue);
  border-bottom-color: var(--realestate-blue);
  border-left-color: var(--realestate-blue);
}

.realestate-btn--light {
  color: var(--realestate-dark);
  background-color: var(--realestate-white);
  border-top-color: var(--realestate-white);
  border-right-color: var(--realestate-white);
  border-bottom-color: var(--realestate-white);
  border-left-color: var(--realestate-white);
}

.realestate-btn--dark {
  color: var(--realestate-white);
  background-color: var(--realestate-dark);
  border-top-color: var(--realestate-dark);
  border-right-color: var(--realestate-dark);
  border-bottom-color: var(--realestate-dark);
  border-left-color: var(--realestate-dark);
}

.realestate-btn--outline {
  color: var(--realestate-dark);
  background-color: transparent;
  border-top-color: var(--realestate-dark);
  border-right-color: var(--realestate-dark);
  border-bottom-color: var(--realestate-dark);
  border-left-color: var(--realestate-dark);
}

/* -------------------------------------------------
   Common sections
   ------------------------------------------------- */
.realestate-section {
  padding-top: clamp(74px, 9vw, 120px);
  padding-right: 0;
  padding-bottom: clamp(74px, 9vw, 120px);
  padding-left: 0;
}

.realestate-section--tint {
  background-color: var(--realestate-soft);
}

.realestate-section__eyebrow {
  color: var(--realestate-blue);
}

.realestate-section__title {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;

  color: var(--realestate-navy);

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.realestate-heading {
  max-width: 880px;

  margin-top: 0;
  margin-right: 0;
  margin-bottom: 48px;
  margin-left: 0;
}

.realestate-heading--split {
  max-width: none;

  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);

  row-gap: 30px;
  column-gap: clamp(48px, 7vw, 90px);

  align-items: end;
}

.realestate-heading__lead {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  color: var(--realestate-sub);

  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.95;
}

/* -------------------------------------------------
   Introduction
   ------------------------------------------------- */
.realestate-intro__grid,
.realestate-carbon__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);

  row-gap: 36px;
  column-gap: clamp(52px, 7vw, 100px);

  align-items: start;
}

.realestate-intro__copy p,
.realestate-land__copy p,
.realestate-carbon__body > p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;

  color: var(--realestate-sub);

  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 2;
}

/* -------------------------------------------------
   Strengths
   ------------------------------------------------- */
.realestate-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  row-gap: 22px;
  column-gap: 22px;
}

.realestate-strength-card {
  padding-top: 32px;
  padding-right: 28px;
  padding-bottom: 34px;
  padding-left: 28px;

  background-color: var(--realestate-white);

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-color: var(--realestate-line);
  border-right-color: var(--realestate-line);
  border-bottom-color: var(--realestate-line);
  border-left-color: var(--realestate-line);

  border-top-left-radius: var(--realestate-radius);
  border-top-right-radius: var(--realestate-radius);
  border-bottom-right-radius: var(--realestate-radius);
  border-bottom-left-radius: var(--realestate-radius);

  box-shadow: var(--realestate-shadow);
}

.realestate-strength-card > span,
.realestate-theme-grid article > span {
  display: block;

  margin-bottom: 18px;

  color: var(--realestate-blue);

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.realestate-strength-card h3,
.realestate-theme-grid h3 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 12px;
  margin-left: 0;

  color: var(--realestate-navy);

  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.45;
}

.realestate-strength-card p,
.realestate-theme-grid p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  color: var(--realestate-sub);

  line-height: 1.9;
}

/* -------------------------------------------------
   Buildings
   ------------------------------------------------- */
.realestate-building-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  row-gap: 22px;
  column-gap: 22px;
}

.realestate-building-card {
  min-height: 290px;

  display: flex;

  background-color: var(--realestate-white);

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-color: var(--realestate-line);
  border-right-color: var(--realestate-line);
  border-bottom-color: var(--realestate-line);
  border-left-color: var(--realestate-line);

  border-top-left-radius: var(--realestate-radius);
  border-top-right-radius: var(--realestate-radius);
  border-bottom-right-radius: var(--realestate-radius);
  border-bottom-left-radius: var(--realestate-radius);

  box-shadow: var(--realestate-shadow);
}

.realestate-building-card--featured {
  grid-column-start: 1;
  grid-column-end: -1;

  min-height: 330px;

  color: var(--realestate-white);
  background-color: var(--realestate-navy);
  background-image:
    radial-gradient(700px 340px at 100% 0%, rgba(75, 141, 190, 0.28), transparent 68%);
}

.realestate-building-card__body {
  width: 100%;

  display: flex;
  flex-direction: column;

  padding-top: 34px;
  padding-right: 34px;
  padding-bottom: 34px;
  padding-left: 34px;
}

.realestate-building-card--featured .realestate-building-card__body {
  justify-content: center;

  padding-top: 48px;
  padding-right: clamp(36px, 6vw, 74px);
  padding-bottom: 48px;
  padding-left: clamp(36px, 6vw, 74px);
}

.realestate-building-card__area {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: 0;

  color: var(--realestate-blue);

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.realestate-building-card--featured .realestate-building-card__area {
  color: #a9cce5;
}

.realestate-building-card h3 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 14px;
  margin-left: 0;

  color: var(--realestate-navy);

  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
}

.realestate-building-card--featured h3 {
  color: var(--realestate-white);

  font-size: clamp(32px, 4vw, 52px);
}

.realestate-building-card address {
  margin-bottom: 20px;

  color: var(--realestate-sub);

  font-style: normal;
  line-height: 1.75;
}

.realestate-building-card--featured address,
.realestate-building-card--featured p {
  color: rgba(255, 255, 255, 0.82);
}

.realestate-building-card__body > p:not(.realestate-building-card__area) {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;

  color: var(--realestate-sub);

  line-height: 1.85;
}

.realestate-building-card__map,
.realestate-building-card__links {
  margin-top: auto;
}

.realestate-building-card__map,
.realestate-building-card__links a {
  display: inline-flex;

  color: var(--realestate-blue);

  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.realestate-building-card__links {
  display: flex;
  flex-wrap: wrap;

  row-gap: 10px;
  column-gap: 20px;
}

.realestate-building-card--featured .realestate-building-card__links a {
  color: #d4e9f7;
}

.realestate-buildings-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  row-gap: 24px;
  column-gap: 36px;

  margin-top: 32px;

  padding-top: 28px;
  padding-right: 30px;
  padding-bottom: 28px;
  padding-left: 30px;

  background-color: var(--realestate-soft);

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.realestate-buildings-cta h3 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 6px;
  margin-left: 0;

  color: var(--realestate-navy);

  font-size: 22px;
}

.realestate-buildings-cta p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  color: var(--realestate-sub);
}

/* -------------------------------------------------
   Land portfolio
   ------------------------------------------------- */
.realestate-land {
  color: var(--realestate-white);
  background-color: var(--realestate-dark);
  background-image:
    radial-gradient(720px 420px at 100% 0%, rgba(47, 114, 84, 0.32), transparent 68%);
}

.realestate-land__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);

  row-gap: 36px;
  column-gap: clamp(52px, 7vw, 100px);

  align-items: start;
}

.realestate-land .realestate-section__eyebrow {
  color: #96c1aa;
}

.realestate-land .realestate-section__title {
  color: var(--realestate-white);
}

.realestate-land__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.realestate-land-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  row-gap: 1px;
  column-gap: 1px;

  margin-top: 52px;

  overflow-x: hidden;
  overflow-y: hidden;

  background-color: rgba(255, 255, 255, 0.15);

  border-top-left-radius: var(--realestate-radius);
  border-top-right-radius: var(--realestate-radius);
  border-bottom-right-radius: var(--realestate-radius);
  border-bottom-left-radius: var(--realestate-radius);
}

.realestate-land-types > div {
  min-height: 230px;

  padding-top: 32px;
  padding-right: 28px;
  padding-bottom: 32px;
  padding-left: 28px;

  background-color: rgba(255, 255, 255, 0.05);
}

.realestate-land-types span {
  display: block;

  margin-bottom: 14px;

  color: #91c2a8;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.realestate-land-types h3 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 14px;
  margin-left: 0;

  color: var(--realestate-white);

  font-size: 26px;
}

.realestate-land-types p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.85;
}

/* -------------------------------------------------
   Proposal themes
   ------------------------------------------------- */
.realestate-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  row-gap: 18px;
  column-gap: 18px;
}

.realestate-theme-grid article {
  padding-top: 26px;
  padding-right: 24px;
  padding-bottom: 28px;
  padding-left: 24px;

  background-color: var(--realestate-white);

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-color: var(--realestate-line);
  border-right-color: var(--realestate-line);
  border-bottom-color: var(--realestate-line);
  border-left-color: var(--realestate-line);

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.realestate-proposal-note {
  margin-top: 26px;

  padding-top: 22px;
  padding-right: 24px;
  padding-bottom: 22px;
  padding-left: 24px;

  color: var(--realestate-sub);
  background-color: #e9edef;

  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: var(--realestate-blue);
}

.realestate-proposal-note strong {
  display: block;

  margin-bottom: 6px;

  color: var(--realestate-navy);
}

.realestate-proposal-note p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  line-height: 1.85;
}

/* -------------------------------------------------
   Carbon and forest
   ------------------------------------------------- */
.realestate-carbon {
  background-color: #f7faf8;
}

.realestate-carbon .realestate-section__eyebrow {
  color: var(--realestate-green);
}

.realestate-carbon__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  row-gap: 12px;
  column-gap: 12px;

  margin-top: 30px;
  margin-bottom: 26px;
}

.realestate-carbon__steps > div {
  display: flex;
  align-items: center;

  column-gap: 14px;

  padding-top: 16px;
  padding-right: 18px;
  padding-bottom: 16px;
  padding-left: 18px;

  background-color: var(--realestate-white);

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-color: #dce7e0;
  border-right-color: #dce7e0;
  border-bottom-color: #dce7e0;
  border-left-color: #dce7e0;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.realestate-carbon__steps span {
  color: var(--realestate-green);

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.realestate-carbon__steps p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  color: var(--realestate-navy);

  font-weight: 700;
}

.realestate-carbon__note {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;

  padding-top: 16px;
  padding-right: 18px;
  padding-bottom: 16px;
  padding-left: 18px;

  color: #647068;
  background-color: #eef3ef;

  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: var(--realestate-green);

  font-size: 12px;
  line-height: 1.85;
}

.realestate-text-link {
  display: inline-flex;

  color: var(--realestate-green);

  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

/* -------------------------------------------------
   Partners
   ------------------------------------------------- */
.realestate-partners {
  background-color: var(--realestate-white);
}

.realestate-partner-list {
  list-style-type: none;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  row-gap: 12px;
  column-gap: 12px;

  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;

  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.realestate-partner-list li {
  min-height: 92px;

  display: grid;
  place-items: center;

  padding-top: 16px;
  padding-right: 14px;
  padding-bottom: 16px;
  padding-left: 14px;

  color: var(--realestate-navy);
  background-color: var(--realestate-soft);

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;

  font-weight: 800;
  text-align: center;
}

/* -------------------------------------------------
   FAQ
   ------------------------------------------------- */
.realestate-faq {
  max-width: 920px;
}

.realestate-faq details {
  background-color: var(--realestate-white);

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;

  border-top-color: var(--realestate-line);
  border-right-color: var(--realestate-line);
  border-bottom-color: var(--realestate-line);
  border-left-color: var(--realestate-line);

  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.realestate-faq details + details {
  margin-top: 14px;
}

.realestate-faq summary {
  cursor: pointer;
  list-style-type: none;

  position: relative;

  padding-top: 22px;
  padding-right: 58px;
  padding-bottom: 22px;
  padding-left: 24px;

  color: var(--realestate-navy);

  font-size: 17px;
  font-weight: 800;
}

.realestate-faq summary::-webkit-details-marker {
  display: none;
}

.realestate-faq summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 24px;

  transform: translateY(-50%);

  color: var(--realestate-blue);

  font-size: 28px;
}

.realestate-faq details[open] summary::after {
  content: "−";
}

.realestate-faq details p {
  margin-top: 0;
  margin-right: 24px;
  margin-bottom: 24px;
  margin-left: 24px;

  padding-top: 20px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;

  color: var(--realestate-sub);

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: var(--realestate-line);

  line-height: 1.9;
}

/* -------------------------------------------------
   CTA
   ------------------------------------------------- */
.realestate-cta {
  padding-top: clamp(78px, 10vw, 126px);
  padding-right: 0;
  padding-bottom: clamp(78px, 10vw, 126px);
  padding-left: 0;

  text-align: center;

  background-color: #dfe7ed;
  background-image:
    radial-gradient(700px 320px at 0% 100%, rgba(36, 104, 154, 0.15), transparent 70%),
    radial-gradient(700px 320px at 100% 0%, rgba(180, 154, 106, 0.15), transparent 70%);
}

.realestate-cta__eyebrow {
  color: var(--realestate-blue);
}

.realestate-cta h2 {
  max-width: 900px;

  margin-top: 0;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;

  color: var(--realestate-navy);

  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.3;
}

.realestate-cta > .container > p:not(.realestate-cta__eyebrow) {
  max-width: 760px;

  margin-top: 0;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;

  color: var(--realestate-sub);

  line-height: 1.9;
}

.realestate-cta__actions {
  justify-content: center;
}

/* -------------------------------------------------
   Responsive
   ------------------------------------------------- */
@media (max-width: 1200px) {
  .realestate-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .realestate-partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .realestate-intro__grid,
  .realestate-heading--split,
  .realestate-land__grid,
  .realestate-carbon__grid {
    grid-template-columns: 1fr;

    column-gap: 0;
  }

  .realestate-strength-grid,
  .realestate-land-types {
    grid-template-columns: 1fr;
  }

  .realestate-building-grid {
    grid-template-columns: 1fr;
  }

  .realestate-building-card--featured {
    grid-column-start: auto;
    grid-column-end: auto;
  }

  .realestate-buildings-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .realestate-hero {
    min-height: 650px;
  }

  .realestate-hero::after {
    background-image:
      linear-gradient(0deg, rgba(12, 30, 48, 0.9) 0%, rgba(12, 30, 48, 0.62) 75%, rgba(12, 30, 48, 0.32) 100%);
  }

  .realestate-hero__overlay {
    align-items: end;

    padding-top: 100px;
    padding-right: 0;
    padding-bottom: 54px;
    padding-left: 0;
  }

  .realestate-hero__title {
    font-size: clamp(39px, 12vw, 58px);
  }

  .realestate-pc-only {
    display: none;
  }

  .realestate-hero__actions,
  .realestate-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .realestate-btn {
    width: 100%;
  }

  .realestate-strength-grid,
  .realestate-theme-grid,
  .realestate-carbon__steps,
  .realestate-partner-list {
    grid-template-columns: 1fr;
  }

  .realestate-building-card__body,
  .realestate-building-card--featured .realestate-building-card__body {
    padding-top: 26px;
    padding-right: 22px;
    padding-bottom: 28px;
    padding-left: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .realestate-btn {
    transition-property: none;
    transition-duration: 0s;
  }

  .realestate-btn:hover {
    transform: none;
  }
}
