/* single-family-housing — scoped to .sfh-page ,HMO & pbsa  */

.sfh-page {
  --sfh-navy: #1a1a2e;
  --sfh-red: #cb5d90;
  --sfh-warm: #f5f0ea;
  --sfh-card-bg: #f4f4f5;
  --sfh-text: #2c2c2c;
  --sfh-mute: #6b6b6b;
  --sfh-ink: #000;
  --sfh-green: #1f5c3a;
  --sfh-green-light: #edf6f0;
  --sfh-serif: "Work Sans", sans-serif;
}

/* ── HERO ── */
.sfh-page .sfh-hero {
  overflow: hidden;
}

.sfh-page .sfh-hero > .container-fluid > .row {
  min-height: auto;
}

.sfh-page .sfh-hero-img {
  min-height: 320px;
  overflow: hidden;
}

.sfh-page .sfh-hero-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .sfh-page .sfh-hero-img,
  .sfh-page .sfh-hero-img img {
    min-height: clamp(420px, 42vw, 680px);
    max-height: 720px;
  }
}

.sfh-page .sfh-hero-content {
  background: #f7f7f6;
}

.sfh-page .sfh-hero-content .hero-h1 {
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 300;
  color: #131212;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.sfh-page .sfh-hero-content .hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sfh-red);
}

.sfh-page .sfh-hero-content .hero-blurb {
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(33, 32, 32, 0.96);
  margin-bottom: 0;
}

.sfh-page .sfh-hero-content .hero-ctas {
  margin-top: 28px;
}

.sfh-page .sfh-hero-content .label {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}

.sfh-page .sfh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.92rem;
  transition: all 0.25s;
  width: fit-content;
}

.sfh-page .sfh-btn-red {
  background: var(--sfh-red);
  color: var(--sfh-ink);
}

.sfh-page .sfh-btn-red:hover {
  background: #a83820;
  color: var(--sfh-ink);
}

.sfh-page .sfh-btn-ghost {
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 4px;
  border-radius: 0;
  margin-top: 18px;
  font-size: 0.9rem;
}

.sfh-page .sfh-btn-ghost:hover {
  color: #fff;
}

/* ── PROOF BAR / STATS ── */
.sfh-page .proof-bar {
  background: var(--sfh-red);
}

.sfh-page .proof-stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.sfh-page .proof-stat:last-child {
  border-right: none;
}

@media (min-width: 992px) {
  .sfh-page .proof-stat .stat-number {
    font-size: clamp(1.25rem, 1.6vw, 32px);
  }

  .sfh-page .proof-stat .stat-label {
    font-size: clamp(0.65rem, 0.85vw, 12px);
  }
}

.sfh-page .proof-stat .stat-number {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.sfh-page .proof-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 5px;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .sfh-page .proof-bar .proof-stat {
    padding: 0.75rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-right: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 767.98px) {
  .sfh-page .proof-bar {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .sfh-page .proof-stat .stat-number {
    font-size: 1.375rem;
  }

  .sfh-page .proof-stat .stat-label {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }
}

/* ── INTRO SPLIT ── */
.sfh-page .intro-text {
  background: var(--sfh-warm);
}

.sfh-page .intro-split > .container-fluid > .row {
  min-height: auto;
}

@media (min-width: 992px) {
  .sfh-page .intro-img,
  .sfh-page .intro-img img {
    min-height: 100%;
    height: 100%;
    max-height: none;
  }
}

.sfh-page .intro-text .label {
  margin-bottom: 18px;
}

.sfh-page .intro-text h2 {
  color: var(--sfh-navy);
  margin-bottom: 22px;
}

.sfh-page .intro-text p {
  /* max-width: 440px; */
  margin-bottom: 14px;
}
section.market-section.py-5 {
    background-color: #f0edec;
}

.sfh-page .intro-text blockquote {
  margin-top: 32px;
  padding-left: 18px;
  border-left: 3px solid var(--sfh-red);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--sfh-navy);
}

.sfh-page .intro-quote-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.sfh-page .intro-img {
  min-height: 320px;
  overflow: hidden;
}

.sfh-page .intro-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ── WHAT FAMILIES NEED ── */
.sfh-page .needs-section {
  background: #ffffffff;
}

.sfh-page .needs-header {
  align-items: center !important;
}

.sfh-page .needs-header h2 {
  color: #000;
  margin-bottom: 0;
}

.sfh-page .needs-header p {
  font-size: 1.05rem;
}

.sfh-page .need-card {
  overflow: hidden;
  background: var(--sfh-card-bg);
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.06);
  border-right: 4px solid transparent;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sfh-page .need-card:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.1);
  transform: translateY(-4px);
  border-right-color: var(--sfh-red);
  background: rgba(203, 93, 144, 0.06);
}

.sfh-page .need-icon {
  display: block;
  font-size: 1.75rem;
  color: var(--sfh-red);
  margin-bottom: 16px;
}

.sfh-page .need-img {
  height: 220px;
  overflow: hidden;
}

.sfh-page .need-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sfh-page .need-card:hover .need-img img {
  transform: scale(1.05);
}

.sfh-page .need-body {
  padding: 28px;
}

.sfh-page .need-body h3 {
  color: var(--sfh-navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sfh-page .need-body p {
  color: #000;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.sfh-page .needs-section .market-tile.matter-tile,
.sfh-page .market-section .market-tile.matter-tile {
  border-radius: 10px;
  background: var(--sfh-card-bg);
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.06);
  overflow: hidden;
  border-right: 4px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sfh-page .needs-section .market-tile.matter-tile {
  padding: 28px;
}

.sfh-page .needs-section .market-tile.matter-tile:hover,
.sfh-page .market-section .market-tile.matter-tile:hover {
  background: rgba(203, 93, 144, 0.06);
  border-right-color: var(--sfh-red);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.1);
  transform: translateY(-4px);
}

.sfh-page .needs-section .market-tile.matter-tile h3 {
  color: var(--sfh-navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sfh-page .needs-section .market-tile.matter-tile p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.sfh-page .needs-data {
  background: #fff;
  margin-top: 2px;
}

.sfh-page .needs-data .src {
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.sfh-page .needs-data .stat {
  color: var(--sfh-ink);
}

.sfh-page .needs-data .stat strong {
  font-size: 1.5rem;
  color: var(--sfh-red);
  margin-right: 8px;
}

.sfh-page .needs-data .stat span {
  font-size: 14px;
}

.sfh-page .needs-data-cta,
.sfh-page .market-tile-quote .col-md-4:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


/* ── SUSTAINABILITY ── */
.sfh-page .esg-section {
  position: relative;
  /* padding: 100px 32px; */
  background-color: var(--sfh-green);
  background-image: url("https://d3mit689r2l6gm.cloudfront.net/isd_uk/staging/shutterstock_2455685795.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.sfh-page .esg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 38, 24, 0.78);
  z-index: 0;
}

.sfh-page .esg-section > .container {
  position: relative;
  z-index: 1;
}

.sfh-page .esg-left .label {
  display: block;
  /* font-size: 0.68rem; */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.sfh-page .esg-left h2 {
  color: #fff;
  margin-bottom: 22px;
}

.sfh-page .esg-left p {
  color: rgba(255, 255, 255, 0.78);
  /* font-size: 0.98rem; */
  line-height: 1.85;
  margin-bottom: 32px;
}

.sfh-page .esg-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sfh-page .esg-left p:last-of-type {
  margin-bottom: 28px;
}

.sfh-page .esg-pledge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 6px;
  border-left: 4px solid var(--sfh-green);
  margin-top: auto;
}

.sfh-page .esg-pledge strong {
  display: block;
  /* font-size: 0.9rem; */
  color: var(--sfh-navy);
}

.sfh-page .esg-pledge span {
  display: block;
  /* font-size: 0.8rem; */
  color: var(--sfh-mute);
}

.sfh-page .esg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.sfh-page .esg-stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 36px 32px;
}

.sfh-page .esg-stat .en {
  font-family: var(--sfh-serif);
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.sfh-page .esg-stat h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 6px;
}

.sfh-page .esg-stat p {
  /* font-size: 0.8rem; */
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 0;
}

.sfh-page .esg-section .icon-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.sfh-page .esg-section .icon-card:hover {
  transform: translateY(-10px);
}

.sfh-page .esg-section .icon-circle {
  width: 70px;
  height: 70px;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sfh-page .esg-section .icon-circle img {
  width: 60px;
  filter: invert(3) brightness(10.5);
}

.sfh-page .esg-section .icon-card:hover .icon-circle img {
  filter: none;
}

.sfh-page .esg-section .icon-card:hover .icon-circle {
  background: rgba(255, 255, 255, 0.922);
  transform: scale(1.05);
}

.sfh-page .esg-section .icon-text {
  color: white;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}

.sfh-page .esg-full {
  margin-top: auto;
  background: rgba(31, 92, 58, 0.92);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sfh-page .esg-section .esg-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 28px;
}

.sfh-page .esg-full p {
  color: rgba(255, 255, 255, 0.85);
  /* font-size: 0.88rem; */
  margin-bottom: 0;
}

.sfh-page .esg-full a {
  color: #fff;
  font-weight: 400;
  /* font-size: 0.88rem; */
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  flex-shrink: 0;
}

.sfh-page .esg-full a:hover {
  color: #fff;
  border-bottom-color: #fff;
}


/* ── WHY CHOOSE ── */
.sfh-page .why-choose-section {
  background: var(--sfh-warm);
}

.sfh-page .why-choose-section > .container > h2,
.sfh-page .why-choose-header h2 {
  color: var(--sfh-navy);
}

.sfh-page .why-choose-header .label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sfh-red);
  margin-bottom: 12px;
}

.sfh-page .why-tile {
  background: var(--sfh-card-bg);
  padding: 32px 28px;
  border-radius: 10px;
  border-right: 4px solid transparent;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sfh-page .why-tile .num {
  font-family: var(--sfh-serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--sfh-red);
  margin-bottom: 14px;
}

.sfh-page .why-tile:hover {
  background: rgba(203, 93, 144, 0.06);
  border-right-color: var(--sfh-red);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.1);
  transform: translateY(-4px);
}

.sfh-page .why-tile .process-icon {
  margin-bottom: 14px;
}

.sfh-page .why-tile .process-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.sfh-page .why-tile h3 {
  color: var(--sfh-navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sfh-page .why-tile p {
  color: var(--sfh-text);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.sfh-page .why-tile p.smText {
  color: var(--sfh-mute);
  font-size: 0.78rem;
  margin-top: 8px;
}
/* ── MARKET INSIGHT ── */
.sfh-page .market-header .label {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.sfh-page .market-header h2 {
  color: var(--sfh-ink);
  max-width: 700px;
  margin: 0 auto;
}

.sfh-page .market-tile {
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s;
}

.sfh-page .market-tile-quote {
  background: rgba(255, 255, 255, 0.06);
}

.sfh-page .market-tile-quote p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  font-size: 0.95rem;
}

.sfh-page .market-tile:not(.matter-tile):hover {
  background: rgba(255, 255, 255, 0.07);
}

.sfh-page .market-tile .big {
    font-size: 35px;
    color: var(--sfh-red);
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 400;
}

.sfh-page .market-tile h3 {
  color: var(--sfh-ink);
  font-size: 1rem;
  margin-bottom: 10px;
}

.sfh-page .market-tile p {
  color: #000;
  font-size: 0.85rem;
}

/* ── WHAT MATTERS MOST (shared accent tiles — PBSA, HMO, SFH market sections) ── */
.sfh-page .matter-tile {
  border-right: 4px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sfh-page .matter-tile:hover {
  background: rgba(203, 93, 144, 0.06);
  border-right-color: var(--sfh-red);
}

.sfh-page .matter-tile-icon {
  display: block;
  font-size: 1.75rem;
  color: var(--sfh-red);
  margin-bottom: 14px;
}

.sfh-page .market-source {
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.03);
}

.sfh-page .market-source p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.sfh-page .market-source span {
  color: rgba(255, 255, 255, 0.6);
}

/* ── BTR VS SFH ── */
.sfh-page .compare-section {
  background: var(--sfh-warm);
}

.sfh-page .compare-header .label {
  margin-bottom: 14px;
}

.sfh-page .compare-header h2 {
  color: var(--sfh-navy);
  margin: 0 auto 16px;
}

.sfh-page .compare-header p {
  margin: 0 auto;
}

.sfh-page .compare-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.sfh-page .col-head {
  padding: 20px 28px;
  text-align: center;
}

.sfh-page .col-head.btr {
  background: rgba(26, 26, 46, 0.08);
  border-radius: 8px 8px 0 0;
}

.sfh-page .col-head.sfh {
  background: var(--sfh-red);
  border-radius: 8px 8px 0 0;
}

.sfh-page .col-head .lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.sfh-page .col-head.btr .lbl {
  color: var(--sfh-navy);
}

.sfh-page .col-head.sfh .lbl {
  color: #000;
}

.sfh-page .col-head h3 {
  font-size: 1.15rem;
}

.sfh-page .col-head.btr h3 {
  color: var(--sfh-navy);
}

.sfh-page .col-head.sfh h3 {
  color: var(--sfh-ink);
}

.sfh-page .c-cell {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
}

.sfh-page .c-cell > i {
  line-height: 1.35;
  margin-top: 1px;
}

.sfh-page .c-cell.btr-c {
  background: rgba(26, 26, 46, 0.04);
}

.sfh-page .c-cell.sfh-c {
  background: rgba(200, 70, 43, 0.07);
}

.sfh-page .c-cell .ct strong {
  display: block;
  font-size: 0.86rem;
  color: var(--sfh-navy);
  margin-bottom: 2px;
}

.sfh-page .c-cell .ct span {
  font-size: 0.76rem;
  color: #000;
}

.sfh-page .compare-row {
  align-items: stretch;
}

@media (min-width: 768px) {
  .sfh-page .compare-wrap .c-mid {
    flex: 0 0 52px !important;
    width: 52px !important;
    max-width: 52px !important;
  }

  .sfh-page .compare-wrap .compare-row > .col-md-5 {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
  }

  .sfh-page .compare-wrap > .row.d-none.d-md-flex > .col-md-5 {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
  }

  .sfh-page .compare-wrap > .row.d-none.d-md-flex > .col-md-2 {
    flex: 0 0 52px !important;
    width: 52px !important;
    max-width: 52px !important;
  }
}

.sfh-page .c-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  flex: 0 0 52px;
  width: 52px;
  max-width: 52px;
  min-width: 52px;
  padding: 12px 0;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 1;
}

.sfh-page .c-mid .ml {
  font-size: 12px;
  font-weight: 500;
  color: var(--sfh-navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  line-height: 1;
  display: block;
  max-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sfh-page .compare-src {
  font-size: 0.75rem;
  color: #000;
}

/* ── WHAT'S DIFFERENT ── */
.sfh-page .diff-img-wrap {
  position: relative;
}

.sfh-page .diff-img {
  width: 100%;
  height: 520px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.sfh-page .diff-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--sfh-red);
  color: #fff;
  padding: 26px 30px;
  border-radius: 4px;
  text-align: center;
}

.sfh-page .diff-badge .big {
  font-size: 2.6rem;
}

.sfh-page .diff-badge .sm {
  font-size: 0.74rem;
}

.sfh-page .diff-content .label {
  margin-bottom: 18px;
}

.sfh-page .diff-content h2 {
  color: var(--sfh-navy);
  margin-bottom: 22px;
}

.sfh-page .diff-content > p {
  margin-bottom: 32px;
}

.sfh-page .diff-pt .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sfh-red);
  flex-shrink: 0;
  margin-top: 6px;
}

.sfh-page .diff-pt div h3 {
  font-size: 0.98rem;
  color: var(--sfh-navy);
  margin-bottom: 4px;
}

.sfh-page .diff-pt div p {
  font-size: 0.88rem;
}

/* ── SERVICES ── */
.sfh-page .services-section {
  background: var(--sfh-warm);
}

.sfh-page .services-header .label {
  margin-bottom: 14px;
}

.sfh-page .services-header h2 {
  color: var(--sfh-navy);
  margin-bottom: 16px;
}

.sfh-page .svc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sfh-page .svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
}

.sfh-page .svc-img {
  height: 200px;
  overflow: hidden;
}

.sfh-page .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sfh-page .svc-body {
  padding: 28px 28px 32px;
}

.sfh-page .svc-body h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.sfh-page .svc-body p {
  font-size: 14px;
  color: #000;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .sfh-page .sfh-hero-img,
  .sfh-page .sfh-hero-img img,
  .sfh-page .intro-img,
  .sfh-page .intro-img img {
    min-height: 320px;
    max-height: none;
  }
}

@media (max-width: 960px) {
  .sfh-page .diff-badge {
    display: none;
  }

  .sfh-page .c-cell.btr-c {
    border-radius: 6px 6px 0 0;
  }

  .sfh-page .c-cell.sfh-c {
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 767px) {
  .sfh-page .diff-img {
    height: 360px;
  }

  .sfh-page .esg-section {
    padding: 64px 20px;
  }

  .sfh-page .esg-stats {
    grid-template-columns: 1fr;
  }

  .sfh-page .esg-stat {
    padding: 28px 24px;
  }

  .sfh-page .esg-section .icon-circle {
    width: 90px;
    height: 90px;
  }

  .sfh-page .esg-section .icon-circle img {
    width: 48px;
  }

  .sfh-page .esg-full {
    flex-direction: column;
    align-items: flex-start;
  }
}