.chart-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.chart-rows-intro {
  margin-top: 14px;
  margin-bottom: 4px;
}

.chart-card--highlight {
  border-color: #9eb8d8;
  box-shadow: 0 2px 12px rgba(0, 63, 125, 0.08);
}

.chart-card--highlight .chart-card-figure {
  background: linear-gradient(180deg, #fff 0%, #f5fbff 100%);
  border-color: #c5d9ef;
}

.chart-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.chart-card {
  border: 1px solid #cfdbea;
  border-radius: 10px;
  background: #ffffff;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.chart-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.chart-card-head h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #003f7d;
}

.chart-card-link {
  font-size: 0.86rem;
  color: #00a3ad;
  text-decoration: none;
  white-space: nowrap;
}

.chart-card-link:hover,
.chart-card-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.chart-card-figure {
  flex: 1;
  width: 100%;
  min-height: 216px;
  background: #f8fbff;
  border: 1px solid #d7e3f3;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
}

.chart-mock-svg {
  width: 100%;
  height: auto;
  min-height: 184px;
  display: block;
}

@media (max-width: 760px) {
  .chart-row {
    grid-template-columns: 1fr;
  }

  .chart-card-figure {
    min-height: 180px;
  }

  .chart-card--highlight {
    border-width: 2px;
    border-color: #00a3ad;
    box-shadow: 0 4px 16px rgba(0, 163, 173, 0.22);
  }

  .chart-card--highlight .chart-card-figure {
    background: linear-gradient(180deg, #ffffff 0%, #eef9fa 100%);
  }
}
