.app-entry-card {
  position: relative;
  box-sizing: border-box;
  margin: 28px 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, .42);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 27, 60, .13);
  color: #0f1b3c;
}

.app-entry-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: #ff7a18;
  content: '';
}

.app-entry-card__body {
  max-width: 680px;
}

.app-entry-card__eyebrow {
  display: inline-flex;
  margin: 0 0 7px;
  color: #b64d08;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.app-entry-card h2 {
  margin: 0;
  color: #0f1b3c;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.32;
}

.app-entry-card__resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.app-entry-card__resources li {
  position: relative;
  min-width: 0;
  padding-left: 15px;
  color: #40516d;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}

.app-entry-card__resources li::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a18;
  content: '';
}

.app-entry-card__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 12px;
  background: #0f1b3c;
  box-shadow: 0 8px 18px rgba(15, 27, 60, .18);
  color: #fff;
  font-size: .91rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.app-entry-card__cta:hover,
.app-entry-card__cta:focus-visible {
  background: #172a5d;
  box-shadow: 0 10px 22px rgba(15, 27, 60, .26);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.app-entry-card__cta span {
  color: #ff9b4f;
  font-size: 1.15em;
  line-height: 1;
}

@media (max-width: 600px) {
  .app-entry-card {
    margin: 22px 0;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .app-entry-card::before {
    right: 18px;
    left: 18px;
  }

  .app-entry-card__resources {
    gap: 8px 10px;
    margin: 16px 0 18px;
  }

  .app-entry-card__resources li {
    font-size: .76rem;
  }
}