.pause-form {
  width: 100%;
  margin-top: 28px;
}

.pause-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  align-items: start;
  gap: 26px;
}

.pause-duration-label {
  display: block;
  margin: 0 0 9px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 700;
}

.pause-duration-wrap { position: relative; }

.pause-duration-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-500);
  border-bottom: 1.5px solid var(--ink-500);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.pause-duration {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 14px;
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--ink-800);
  font: inherit;
  font-size: 14px;
  background: var(--white);
  cursor: pointer;
}

.pause-duration:focus-visible {
  border-color: var(--teal-600);
  outline: 3px solid rgb(33 171 181 / 18%);
}

.pause-access-note {
  margin-top: 16px;
  padding: 15px 16px;
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  background: var(--teal-050);
}

.pause-access-note strong {
  display: block;
  color: var(--ink-800);
  font-size: 13px;
}

.pause-access-note p {
  margin: 5px 0 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.55;
}

.pause-primary {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  color: var(--white);
  background: var(--teal-600);
  box-shadow: 0 12px 24px rgb(33 171 181 / 24%);
}

.pause-primary:hover {
  background: rgb(33 171 181 / 90%);
  box-shadow: 0 14px 28px rgb(33 171 181 / 30%);
}

.pause-path {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfcfd;
}

.pause-path h2 {
  margin: 0 0 18px;
  color: var(--ink-800);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.pause-path ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pause-path li {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 28px;
}

.pause-path li:last-child { padding-bottom: 0; }

.pause-path li:not(:last-child)::after {
  position: absolute;
  top: 21px;
  bottom: -1px;
  left: 10px;
  width: 2px;
  background: var(--teal-600);
  content: "";
}

.pause-path__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-500);
  background: var(--white);
}

.pause-path__marker--active {
  color: var(--white);
  border-color: var(--teal-600);
  background: var(--teal-600);
  box-shadow: 0 0 0 3px rgb(33 171 181 / 15%);
}

.pause-path__marker svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pause-path time,
.pause-path strong,
.pause-path p {
  display: block;
  margin: 0;
}

.pause-path time {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.pause-path strong {
  margin-top: 3px;
  color: var(--ink-800);
  font-size: 14px;
  line-height: 1.45;
}

.pause-path p {
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.55;
}

html[data-screen="pause-offer"] .offer-content {
  width: min(760px, calc(100% - 64px));
}

@media (max-width: 1100px) {
  .pause-layout { grid-template-columns: 1fr; }
}

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

  .pause-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pause-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .pause-form { margin-top: 22px; }

  html[data-screen="pause-offer"] .offer-content {
    width: calc(100% - 40px);
  }
}
