.urgency-section {
  padding: 82px 0 96px;
  background: var(--rsf-white);
  color: var(--rsf-blue-white);
}

.urgency-shell {
  width: min(1278px, calc(100% - 48px));
  margin: 0 auto;
}

.urgency-card {
  position: relative;
  min-height: 872px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 58%, rgba(16, 151, 255, 0.2), transparent 31%),
    #07121d;
}

.urgency-photo {
  position: absolute;
  inset: 0;
  display: block;
}

.urgency-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.urgency-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 29, 0.9) 0%, rgba(7, 18, 29, 0.68) 34%, rgba(7, 18, 29, 0.04) 72%);
  pointer-events: none;
}

.urgency-copy {
  position: relative;
  z-index: 1;
  width: 418px;
  padding: 275px 0 0 75px;
}

.urgency-copy h2 {
  width: 418px;
  margin: 0;
  color: var(--rsf-blue-white);
  font-size: 68px;
  font-weight: 300;
  line-height: 1.5;
  text-transform: uppercase;
}

.urgency-copy h2 strong {
  font-weight: 700;
}

.urgency-copy p {
  width: 412px;
  margin: 0;
  color: var(--rsf-blue-white);
  font-size: 24.983px;
  font-weight: 400;
  line-height: 1.5;
}

.urgency-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.urgency-primary,
.urgency-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--rsf-blue-white);
  background: rgba(7, 18, 29, 0.95);
}

.urgency-primary {
  justify-content: flex-end;
  gap: 14px;
  width: 363px;
  min-height: 55px;
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.urgency-arrow {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #23b7ec;
}

.urgency-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25.5px;
  height: 25.5px;
  background: url("./assets/cta-arrow-figma.svg") center / contain no-repeat;
  transform: translate(-50%, -50%) rotate(45deg);
}

.urgency-secondary {
  justify-content: center;
  width: 196.714px;
  min-height: 51px;
  border-radius: 26.5px;
  font-size: 26.23px;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 641px) {

  .urgency-primary,
  .urgency-secondary {
    background: rgba(222, 245, 249, 0.05);
  }

  .urgency-actions {
    margin-top: -88px;
    padding-bottom: 33px;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .urgency-card {
    min-height: 560px;
  }

  .urgency-copy {
    width: min(418px, calc(100% - 48px));
    padding: 72px 24px 0;
  }

  .urgency-copy h2,
  .urgency-copy p {
    width: 100%;
  }

  .urgency-copy h2 {
    font-size: 46px;
  }

  .urgency-copy p {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .urgency-section {
    padding: 69px 0 0;
  }

  .urgency-shell {
    width: min(330px, calc(100% - 20px));
  }

  .urgency-card {
    width: 310px;
    min-height: 364px;
    margin: 0 auto;
    border-radius: 5.36px;
    background: var(--rsf-dark);
  }

  .urgency-card::after {
    background: linear-gradient(251.65deg, rgba(0, 0, 0, 0) 35.188%, rgba(0, 0, 0, 0.6) 66.99%);
  }

  .urgency-photo img {
    object-position: center center;
  }

  .urgency-copy {
    width: 257px;
    padding: 24px 0 0 24px;
    text-align: center;
  }

  .urgency-copy h2 {
    width: 246px;
    font-size: 20px;
    line-height: 1.5;
  }

  .urgency-copy p {
    width: 257px;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .urgency-actions {
    flex-direction: column;
    gap: 22px;
    margin-top: 22px;
  }

  .urgency-primary,
  .urgency-secondary {
    width: 100%;
  }

  .urgency-primary {
    min-height: 55px;
    padding: 9px 14px 9px 21px;
    justify-content: space-between;
    border-radius: 999px;
    font-size: 16px;
  }

  .urgency-secondary {
    min-height: 51px;
    border-radius: 26.5px;
    font-size: 23.31px;
  }
}

.urgency-actions .rsf-secondary-cta {
  background: rgba(7, 18, 29, 0.95);
  width: 328px;
}