.plan-switch-rescue {
  margin-top: 24px;
}

.plan-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-switch-card {
  display: flex;
  min-width: 0;
  min-height: 236px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  background: var(--teal-050);
}

.plan-switch-card__name {
  margin: 0;
  color: var(--teal-600);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-switch-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin: 10px 0 0;
  color: var(--ink-900);
}

.plan-switch-card__old-price {
  color: #9ca3af;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.plan-switch-card__current-price {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.plan-switch-card__billing-unit {
  color: var(--ink-800);
  font-size: 12px;
  font-weight: 700;
}

.plan-switch-card__highlights-label {
  margin: 16px 0 0;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan-switch-card__highlights {
  display: grid;
  gap: 7px;
  margin: 12px 0 18px;
  padding: 0 0 0 18px;
  color: var(--ink-800);
  font-size: 13px;
  line-height: 1.4;
  list-style: none;
}

.plan-switch-card__highlights li {
  position: relative;
}

.plan-switch-card__highlights li::before {
  position: absolute;
  top: 0.05em;
  left: -18px;
  color: var(--teal-600);
  font-weight: 800;
  content: "✓";
}

.plan-switch-card__button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 0 10px;
  color: var(--white);
  font-size: 13px;
  background: var(--teal-600);
  box-shadow: 0 8px 18px rgb(33 171 181 / 18%);
}

.plan-switch-card__button:hover {
  background: rgb(33 171 181 / 90%);
  box-shadow: 0 12px 24px rgb(33 171 181 / 26%);
}

html[data-screen="monthly-plan-switch"] .offer-content,
html[data-screen="lite-plan-switch"] .offer-content {
  width: min(760px, calc(100% - 72px));
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .plan-switch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html[data-screen="monthly-plan-switch"] .offer-content,
  html[data-screen="lite-plan-switch"] .offer-content {
    width: calc(100% - 56px);
  }
}

@media (max-width: 620px) {
  .plan-switch-grid {
    grid-template-columns: 1fr;
  }

  .plan-switch-card {
    min-height: 0;
  }

  html[data-screen="monthly-plan-switch"] .offer-content,
  html[data-screen="lite-plan-switch"] .offer-content {
    width: calc(100% - 40px);
  }
}
