.apply-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  overflow: hidden;
  border-radius: 22px;
  background: #ff4f78;
  color: #fff;
}

.apply-entry::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 42%;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.apply-entry__copy,
.apply-entry__channel {
  position: relative;
  z-index: 1;
  padding: 42px;
}

.apply-entry__copy h3 {
  max-width: 740px;
  margin: 10px 0 14px;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.apply-entry__copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.75;
}

.apply-entry__button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 23px;
  padding: 13px 15px 13px 18px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #252426;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.apply-entry__button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #252426;
  color: #fff;
  font-size: 12px;
}

.apply-entry__button:hover,
.apply-entry__button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(73, 13, 35, 0.22);
}

.apply-entry__button:focus-visible {
  outline: 3px solid #252426;
  outline-offset: 4px;
}

.apply-entry__channel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background: #252426;
}

.apply-entry__channel small {
  color: #ff89a4;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.apply-entry__channel strong {
  display: block;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.apply-entry__channel span {
  display: block;
  margin-top: 8px;
  color: #aaa4aa;
  font-size: 9px;
  line-height: 1.6;
}

.site-footer .footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .apply-entry {
    grid-template-columns: 1fr;
  }

  .apply-entry__channel {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .apply-entry__copy,
  .apply-entry__channel {
    padding: 28px;
  }

  .apply-entry__copy h3 {
    font-size: 34px;
  }

  .apply-entry__channel {
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apply-entry__button {
    transition: none !important;
  }
}
