.home-section {
  position: relative;
  padding-top: 108px;
  padding-bottom: 108px;
}

.home-section--tight {
  padding-top: 88px;
  padding-bottom: 88px;
}

.home-section--hero-gap {
  padding-top: 0;
  padding-bottom: 0;
}

.home-section + .home-section {
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.home-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-reveal--delay-1 {
  transition-delay: 0.08s;
}

.home-reveal--delay-2 {
  transition-delay: 0.16s;
}

.home-reveal--delay-3 {
  transition-delay: 0.24s;
}

.home-hero__content > * {
  animation: homeFadeUp 0.85s ease both;
}

.home-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.home-hero__content > *:nth-child(2) { animation-delay: 0.12s; }
.home-hero__content > *:nth-child(3) { animation-delay: 0.19s; }
.home-hero__content > *:nth-child(4) { animation-delay: 0.26s; }
.home-hero__content > *:nth-child(5) { animation-delay: 0.33s; }

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  background-color: #0f172a;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero__bg picture,
.home-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__bg img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.50) 0%, rgba(2, 6, 23, 0.36) 28%, rgba(2, 6, 23, 0.64) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  display: flex;
  align-items: center;
}

.home-hero__content {
  width: 100%;
  max-width: 980px;
  padding-top: 126px;
  padding-bottom: 92px;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.14);
}

.home-hero__eyebrow-badge {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #059669;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 auto;
}

.home-hero__title {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 900px;
  text-wrap: balance;
}

.home-hero__desc {
  margin-top: 16px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  font-weight: 500;
}

.home-hero__highlight {
  color: #fde68a;
  position: relative;
  display: inline;
}

.home-hero__proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.home-hero__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.home-hero__proof-item iconify-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  color: #86efac;
  flex: 0 0 auto;
}

.home-hero__tabs {
  margin-top: 24px;
}

.home-hero__tabs-shell {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.home-hero__tab {
  border: 0;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.home-hero__tab--active {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
}

.home-hero__tab--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.home-hero__search-wrap {
  margin-top: 22px;
  max-width: 920px;
}

.home-hero__search-shell {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
  max-width: 760px;
}

.home-hero__search-input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.home-hero__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
  color: #0f172a;
}

.home-hero__search-icon iconify-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.home-hero__search-input {
  width: 100%;
  height: 58px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 16px 0 52px;
  font-size: 18px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__search-input:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.home-hero__search-submit {
  flex: 0 0 auto;
  min-width: 128px;
  height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: #dc2626;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-hero__search-submit:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.home-hero__meta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
  max-width: 620px;
}

.home-hero__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.home-hero__chips-label {
  font-weight: 700;
}

.home-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-hero__chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.home-hero__cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.home-hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.home-hero__cta-link:hover {
  color: #fff;
  text-decoration: none;
}

.home-hero__cta-link-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.home-hero__cta-link-badge iconify-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.home-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-hero__secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 34px;
}

.home-section-head__text {
  max-width: 700px;
}

.home-section-head__eyebrow {
  margin: 0 0 8px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section-head__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home-section-head__desc {
  margin: 14px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.72;
  max-width: 620px;
}

.home-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-link-arrow:hover {
  color: #dc2626;
  text-decoration: none;
}

.home-link-arrow iconify-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.home-link-arrow:hover iconify-icon {
  transform: translateX(3px);
}

.home-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid #0f172a;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-btn-outline-dark:hover {
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
}

.home-trust-card {
  height: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.home-trust-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 18px;
}

.home-trust-card__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.home-trust-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.home-trust-card__desc {
  margin: 10px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.home-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border-radius: 26px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-type-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.home-type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #dc2626;
}

.home-type-card__icon iconify-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.home-type-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.home-type-card__desc {
  margin: 10px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.72;
}

.home-type-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.home-type-card__meta iconify-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.home-building-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-building-card:hover {
  text-decoration: none;
  color: inherit;
}

.home-building-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

.home-building-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.home-building-card:hover .home-building-card__image img {
  transform: scale(1.06);
}

.home-building-card__badges {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.home-building-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.home-building-card__badge--light {
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
}

.home-building-card__badge--dark {
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
}

.home-building-card__body {
  padding-top: 14px;
}

.home-building-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.home-building-card__location {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.home-building-card__location iconify-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: #dc2626;
  flex: 0 0 auto;
}

.home-process-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.home-process-card__step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-process-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.home-process-card__desc {
  margin: 10px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.home-cta-panel {
  border-radius: 30px;
  background: #0f172a;
  padding: 48px 38px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.home-cta-panel__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.home-cta-panel__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-cta-panel__desc {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
  max-width: 720px;
}

.home-cta-panel__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-btn-primary:hover {
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-1px);
}

.home-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-btn-secondary:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

/* =========================
   Home mobile optimizations
========================= */
.home-mobile-hide {
  display: initial;
}

.home-buildings-slider {
  display: grid;
}

@media (max-width: 767.98px) {
  .home-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-section--tight {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__inner {
    min-height: auto;
  }

  .home-hero__content {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .home-hero__title {
    margin-top: 14px;
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.02;
    max-width: 100%;
  }

  .home-hero__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.52;
    max-width: 100%;
  }

  .home-hero__tabs {
    margin-top: 14px;
  }

  .home-hero__tabs-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__tab {
    justify-content: center;
    min-height: 48px;
  }

  .home-hero__search-wrap {
    margin-top: 16px;
  }

  .home-hero__search-shell {
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    max-width: 100%;
  }

  .home-hero__search-input {
    height: 52px;
    padding: 0 14px 0 46px;
    font-size: 16px;
  }

  .home-hero__search-submit {
    width: auto;
    min-width: 110px;
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  .home-hero__meta {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .home-hero__cta-row {
    margin-top: 16px;
    gap: 10px;
  }

  .home-hero__cta-link {
    font-size: 15px;
  }

  .home-mobile-hide {
    display: none !important;
  }

  .home-section-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  .home-section-head__text {
    max-width: 100%;
  }

  .home-section-head__eyebrow {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .home-section-head__title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.08;
  }

  .home-section-head__desc {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }

  .home-link-arrow {
    font-size: 15px;
  }

  .home-grid-2-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .home-grid-2-mobile__full {
    grid-column: 1 / -1;
  }

  .home-trust-card,
  .home-process-card {
    border-radius: 20px;
    padding: 18px 16px;
  }

  .home-type-card {
    border-radius: 20px;
    padding: 14px 12px 12px;
    min-height: 100%;
  }

  .home-trust-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .home-type-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .home-trust-card__title,
  .home-process-card__title {
    font-size: 18px;
    line-height: 1.3;
  }

  .home-type-card__title {
    font-size: 15px;
    line-height: 1.22;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-trust-card__desc,
  .home-process-card__desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  .home-type-card__desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-type-card__meta {
    margin-top: auto;
    padding-top: 10px;
    font-size: 12px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 34px;
  }

  .home-type-card__meta iconify-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  .home-hero__eyebrow {
    display: inline-flex !important;
    max-width: calc(100vw - 32px);
    padding: 8px 12px;
    gap: 8px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .home-hero__eyebrow-badge {
    width: 16px;
    height: 16px;
    font-size: 11px;
  }

  .home-hero__search-icon {
    left: 14px;
  }

  .home-hero__search-icon iconify-icon {
    width: 20px;
    height: 20px;
  }

  .home-process-card__step {
    margin-bottom: 12px;
  }

  .home-buildings-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .home-buildings-slider::-webkit-scrollbar {
    display: none;
  }

  .home-buildings-slider__item {
    flex: 0 0 86%;
    min-width: 86%;
    scroll-snap-align: start;
  }

  .home-building-card__title {
    font-size: 18px;
    line-height: 1.25;
  }

  .home-building-card__location {
    font-size: 14px;
    line-height: 1.5;
  }
}
