.info {
  display: flex;
  gap: var(--sp-8);
  align-items: stretch;
  /* Padding sits inside this box (border-box), so widen the box by the padding
     to keep the content column equal to the standard --container-width used by
     every other content section (Data, Speed, Graph, …). */
  max-width: calc(var(--container-width) + 2 * var(--container-pad));
  margin: 0 auto;
  padding: var(--sp-48) var(--container-pad);
}

.info__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-40);
  align-items: flex-start;
  width: 52.9rem; /* 847px */
  padding: var(--sp-32) var(--sp-32) var(--sp-48);
  border-radius: var(--radius-12);
  background: var(--surface-dark-blue);
  color: var(--text-inverse);
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
  align-items: flex-start;
  width: 100%;
}

.info__text h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.info__columns {
  display: flex;
  gap: var(--sp-32);
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.info__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.info__col:first-child {
  width: 20.8rem; /* 333px */
  flex-shrink: 0;
}

.info__col:last-child {
  flex: 1 0 0;
  min-width: 0;
}

.info__col-title {
  font-size: var(--fs-body-18);
  font-weight: 600;
  line-height: 1.5;
  width: 100%;
}

.info__col ul {
  list-style: disc;
  padding-left: 1.6875rem; /* 27px */
  font-size: var(--fs-body-18);
  font-weight: 400;
  line-height: 1.5;
}

.info__buttons {
  display: flex;
  gap: var(--sp-8);
}

.info__image {
  flex: 1 0 0;
  min-width: 0;
  height: 26.375rem; /* 422px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-12);
  overflow: hidden;
}

.info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
