:root {
  --rse-green: #2e8b68;
  --rse-green-dark: #246f54;
  --rse-blue: #15324b;
  --rse-text: #183046;
  --rse-muted: #667789;
  --rse-border: #d8e0dc;
  --rse-surface: #ffffff;
  --rse-bg: #f4f7f5;
  --rse-radius: 22px;
  --rse-radius-sm: 16px;
  --rse-shadow: 0 10px 30px rgba(21, 50, 75, 0.06);
}

* {
  box-sizing: border-box;
}

.rse-site-main,
.rse-container,
.rse-overview,
.rse-single {
  color: var(--rse-text);
}

.rse-site-main {
  background: var(--rse-bg);
  padding: 32px 0 48px;
}

.rse-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rse-page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--rse-blue);
  margin: 0 0 24px;
  font-weight: 700;
}

.rse-card {
  background: var(--rse-surface);
  border: 1px solid var(--rse-border);
  border-radius: var(--rse-radius);
  box-shadow: var(--rse-shadow);
}

.rse-card--table {
  overflow: hidden;
}

.rse-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rse-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.rse-table thead th {
  background: linear-gradient(180deg, var(--rse-green), var(--rse-green-dark));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  padding: 18px 16px;
  text-align: left;
  white-space: nowrap;
}

.rse-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--rse-border);
  vertical-align: top;
  background: #fff;
}

.rse-table tbody tr:last-child td {
  border-bottom: 0;
}

.rse-table tbody tr:hover td {
  background: #fbfcfb;
}

.rse-table a {
  color: var(--rse-green-dark);
  text-decoration: none;
  font-weight: 600;
}

.rse-table a:hover,
.rse-table a:focus {
  color: var(--rse-blue);
}

.rse-table-notes {
  padding: 18px 20px 24px;
  color: var(--rse-muted);
  font-size: 0.95rem;
}

.rse-table-notes p {
  margin: 0 0 6px;
}

.rse-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.rse-detail-content,
.rse-facts-card {
  padding: 28px;
}

.rse-section-title {
  font-size: 1.2rem;
  color: var(--rse-blue);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rse-border);
}

.rse-copy {
  font-size: 1.04rem;
  line-height: 1.75;
}

.rse-copy p {
  margin: 0 0 1rem;
}

.rse-copy p:last-child {
  margin-bottom: 0;
}

.rse-image-wrap {
  margin-top: 24px;
}

.rse-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.rse-facts-card {
  position: sticky;
  top: 24px;
}

.rse-facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.rse-facts-table th,
.rse-facts-table td {
  border-bottom: 1px solid var(--rse-border);
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
}

.rse-facts-table tr:last-child th,
.rse-facts-table tr:last-child td {
  border-bottom: 0;
}

.rse-facts-table th {
  width: 42%;
  color: var(--rse-blue);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .rse-detail-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
  }
}

@media (max-width: 920px) {
  .rse-detail-grid {
    grid-template-columns: 1fr;
  }

  .rse-facts-card {
    position: static;
  }
}

@media (max-width: 767px) {
  .rse-site-main {
    padding: 18px 0 34px;
  }

  .rse-container {
    width: min(100% - 18px, 1180px);
  }

  .rse-page-title {
    margin-bottom: 18px;
  }

  .rse-card,
  .rse-detail-content,
  .rse-facts-card {
    border-radius: var(--rse-radius-sm);
  }

  .rse-detail-content,
  .rse-facts-card,
  .rse-table-notes {
    padding: 18px;
  }

  .rse-table {
    min-width: 0;
  }

  .rse-table-wrap {
    overflow: visible;
  }

  .rse-table thead {
    display: none;
  }

  .rse-table,
  .rse-table tbody,
  .rse-table tr,
  .rse-table td {
    display: block;
    width: 100%;
  }

  .rse-table tbody {
    padding: 10px;
  }

  .rse-table tbody tr {
    background: #fff;
    border: 1px solid var(--rse-border);
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(21, 50, 75, 0.04);
    overflow: hidden;
  }

  .rse-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .rse-table tbody td {
    border-bottom: 1px solid var(--rse-border);
    padding: 12px 14px;
    min-height: 48px;
  }

  .rse-table tbody td:last-child {
    border-bottom: 0;
  }

  .rse-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rse-muted);
    font-weight: 700;
  }

  .rse-table tbody td:first-child {
    padding-top: 14px;
  }

  .rse-table tbody td:first-child a {
    font-size: 1.02rem;
  }

  .rse-section-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .rse-copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .rse-image {
    border-radius: 14px;
  }

  .rse-facts-table,
  .rse-facts-table tbody,
  .rse-facts-table tr,
  .rse-facts-table th,
  .rse-facts-table td {
    display: block;
    width: 100%;
  }

  .rse-facts-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--rse-border);
  }

  .rse-facts-table tr:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .rse-facts-table th,
  .rse-facts-table td {
    border: 0;
    padding: 0;
  }

  .rse-facts-table th {
    width: 100%;
    margin-bottom: 6px;
  }
}


.rse-impact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(46, 139, 104, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
  overflow: hidden;
}

.rse-impact-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 139, 104, 0.12);
  color: var(--rse-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rse-impact-title {
  margin: 0 0 12px;
  color: var(--rse-blue);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.rse-impact-text {
  margin: 0;
  max-width: 56ch;
  color: var(--rse-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.rse-impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
}

.rse-impact-metric {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--rse-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 50, 75, 0.05);
}

.rse-impact-number {
  display: block;
  margin-bottom: 8px;
  color: var(--rse-green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.rse-impact-label {
  display: block;
  color: var(--rse-blue);
  font-size: 0.98rem;
  font-weight: 600;
}

.rse-impact-actions {
  grid-column: 1 / -1;
}

.rse-impact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rse-green), var(--rse-green-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(36, 111, 84, 0.18);
}

.rse-impact-button:hover,
.rse-impact-button:focus {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .rse-impact-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .rse-impact-card {
    gap: 18px;
    padding: 20px;
    border-radius: var(--rse-radius-sm);
  }

  .rse-impact-text {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .rse-impact-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rse-impact-metric {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .rse-impact-button {
    width: 100%;
  }
}
