.push-notifications-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 106, 237, .12), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.push-notifications-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.push-notifications-copy h2 {
  max-width: 15ch;
  margin: .65rem 0 1rem;
}

.push-notifications-copy > p {
  max-width: 62ch;
}

.push-benefits {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.push-benefits li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: #273957;
  font-weight: 650;
}

.push-benefits li::before {
  content: "";
  flex: 0 0 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .12rem;
  border-radius: 50%;
  background: #16b979;
  box-shadow: inset 0 0 0 .34rem #dff9ef;
}

.push-phone {
  position: relative;
  width: min(100%, 570px);
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(0, 106, 237, .18);
  border-radius: 2rem;
  background: linear-gradient(145deg, #071b43, #0d3c8d);
  box-shadow: 0 28px 65px rgba(17, 72, 148, .2);
}

.push-phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 85% 5%, rgba(93, 208, 255, .8), transparent 13rem),
    linear-gradient(155deg, #087cf6 0%, #0559d8 50%, #073b9d 100%);
}

.push-phone-status,
.push-phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.push-phone-status {
  margin-bottom: 1.5rem;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .02em;
  opacity: .9;
}

.push-phone-heading {
  margin-bottom: 1.15rem;
}

.push-phone-heading strong {
  font-size: 1.05rem;
}

.push-phone-heading span {
  font-size: .8rem;
  opacity: .88;
}

.push-notification-list {
  display: grid;
  gap: .75rem;
}

.push-notification-card {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: start;
  padding: .9rem;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 30px rgba(0, 30, 95, .2);
  backdrop-filter: blur(12px);
}

.push-notification-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: .8rem;
  color: #fff;
  background: #0876ed;
  font-size: .92rem;
  font-weight: 850;
  box-shadow: 0 7px 16px rgba(0, 106, 237, .24);
}

.push-notification-card.is-receivable .push-notification-icon {
  background: #12a86f;
}

.push-notification-card.is-card .push-notification-icon {
  background: #ff8a16;
}

.push-notification-content strong {
  display: block;
  margin-bottom: .22rem;
  color: #0c1f40;
  font-size: .95rem;
}

.push-notification-content p {
  margin: 0;
  color: #52647f;
  font-size: .82rem;
  line-height: 1.45;
}

.push-notification-time {
  color: #72809a;
  font-size: .7rem;
  white-space: nowrap;
}

.push-availability {
  margin: 1rem 0 0;
  color: #5c6c84;
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .push-notifications-layout {
    grid-template-columns: 1fr;
  }

  .push-notifications-copy h2 {
    max-width: 20ch;
  }
}

@media (max-width: 520px) {
  .push-phone {
    padding: .55rem;
    border-radius: 1.55rem;
  }

  .push-phone-screen {
    min-height: 0;
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .push-notification-card {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: .65rem;
  }

  .push-notification-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .push-notification-time {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .push-notification-card {
    background: #fff;
    backdrop-filter: none;
  }
}
