.wgt-geo-report-rows {
  margin-bottom: var(--gap-section-120);
}

.wgt-geo-report-rows .home-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl-42);
}

.wgt-geo-report-rows .home-section-head {
  align-items: center;
  width: 100%;
}

.wgt-geo-report-rows .home-section-text {
  gap: var(--gap-md-12);
  align-items: center;
}

/* Section title: 26px → 38px (375→1920) */
.wgt-geo-report-rows .geo-report-rows-title,
.wgt-geo-report-rows .geo-report-rows-title :is(h1, h2, h3, h4, h5, h6, p) {
  max-width: 808px;
  margin: 0 auto;
  color: var(--text-title);
  font-size: clamp(1.625rem, 1.443rem + 0.7767vw, 2.375rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-display);
  text-align: center;
}

/* Section description: 14px → 16px (375→1920) */
.wgt-geo-report-rows .geo-report-rows-description,
.wgt-geo-report-rows .geo-report-rows-description p {
  max-width: 678px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  text-align: center;
}

.geo-report-rows-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-3xl-60);
  width: 100%;
}

.geo-report-row {
  display: flex;
  gap: var(--gap-lg2-28);
  align-items: center;
  width: 100%;
  padding: var(--padding-2lg-28) 0;
  border-radius: var(--radius-sm);
}

.geo-report-row:nth-child(even) {
  flex-direction: row-reverse;
}

.geo-report-row-content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: var(--gap-xl-32);
  align-items: flex-start;
  min-width: 0;
  padding-top: var(--padding-sm-12);
}

.geo-report-row-tagbar {
  display: flex;
  align-items: center;
}

.geo-report-row-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md-12);
  align-items: flex-start;
  width: 100%;
}

/* Row title: 24px → 23px (375→1920) */
.geo-report-row-title,
.geo-report-row-title :is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0;
  color: var(--neutral-color-03);
  font-size: clamp(1.4375rem, calc(1.5152rem - 0.0647vw), 1.5rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

/* Row body: 14px → 16px (375→1920) */
.geo-report-row-description {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm-8);
  width: 100%;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

.geo-report-row-description p {
  margin: 0;
}

.geo-report-row-description :is(b, strong),
.geo-report-row-list-heading {
  color: var(--text-title);
  font-weight: var(--font-weight-medium);
}

.geo-report-row-list-heading {
  margin: 0;
}

.geo-report-row-description ul,
.geo-report-row-description ol {
  margin: 0;
  padding-left: var(--gap-lg-24);
  list-style-position: outside;
}

.geo-report-row-description ul {
  list-style-type: disc;
}

.geo-report-row-description ol {
  list-style-type: decimal;
}

.geo-report-row-description li {
  display: list-item;
  margin: 0;
  color: var(--text-body);
  font-size: inherit;
  font-weight: var(--font-weight-regular);
  line-height: inherit;
}

.geo-report-row-link {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-start;
  color: var(--primary-color-02);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  text-decoration: none;
}

.geo-report-row-link:hover,
.geo-report-row-link:focus-visible {
  color: var(--primary-color-02);
}

.geo-report-row-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}

.geo-report-row-link:hover::after,
.geo-report-row-link:focus-visible::after {
  width: 50%;
}

.geo-report-row-media {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  max-width: 590px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--background-gray);
  padding: var(--padding-2xl-48) var(--padding-3xl-60);
}

.geo-report-row-media img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  /* .wgt-home remaps --gap-2xl-42 to 32px; Figma mobile row gap stays 42px */
  .wgt-geo-report-rows {
    --gap-2xl-42: 42px;
  }

  .geo-report-rows-list {
    gap: var(--gap-2xl-42);
  }

  .geo-report-row,
  .geo-report-row:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-lg-24);
    padding: 0;
  }

  .geo-report-row-content {
    gap: var(--gap-md-18);
    padding-top: 0;
  }

  .geo-report-row-title,
  .geo-report-row-title :is(h1, h2, h3, h4, h5, h6, p) {
    color: var(--text-title);
    line-height: var(--line-height-display);
  }

  .geo-report-row-description {
    line-height: var(--line-height-caption);
  }

  .geo-report-row-description li + li {
    margin-top: var(--padding-xs-6);
  }

  .geo-report-row-media {
    flex: none;
    width: 100%;
    max-width: none;
    height: 242px;
    padding: var(--padding-xl-32) var(--padding-lg-24);
  }

  .geo-report-row-media img {
    max-width: 273px;
    max-height: 100%;
  }
}

@media (max-width: 768px) {
  .wgt-geo-report-rows {
    padding-left: var(--padding-md-15);
    padding-right: var(--padding-md-15);
    margin-bottom: var(--padding-4xl-80);
  }

  .wgt-geo-report-rows .home-inner {
    gap: var(--gap-lg-24);
  }
}
