/* PROJECT44-A — ALPHA Academy main card (GO flow, display only) */

.ap4-school-wrap {
  margin: 14px 0 4px;
}

.ap4-school-card {
  display: block;
  text-decoration: none;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(245, 200, 66, 0.14),
    rgba(94, 234, 212, 0.08) 55%,
    rgba(255, 255, 255, 0.04)
  );
  border: 1.5px solid rgba(245, 200, 66, 0.38);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(245, 200, 66, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ap4-school-card:active {
  transform: scale(0.985);
  opacity: 0.96;
}

.ap4-school-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.ap4-school-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #1a1408;
  background: linear-gradient(135deg, #fde68a, #f5c842);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.02em;
}

.ap4-school-go-link {
  font-size: 11px;
  font-weight: 800;
  color: #8ef0fa;
  white-space: nowrap;
}

.ap4-school-title {
  font-size: clamp(1.125rem, 4.8vw, 1.3125rem);
  font-weight: 1000;
  color: #fafbfc;
  line-height: 1.25;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
}

.ap4-school-hook {
  font-size: 14px;
  font-weight: 800;
  color: #e8edf4;
  line-height: 1.45;
  margin-bottom: 10px;
}

.ap4-school-q {
  font-size: 13px;
  font-weight: 700;
  color: #d4dce8;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ap4-school-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 1000;
  color: #062a24;
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  border: 1px solid rgba(94, 234, 212, 0.55);
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.25);
  letter-spacing: 0.02em;
}

.ap4-school-btn::after {
  content: " →";
  font-weight: 1000;
}

@media (max-width: 480px) {
  .ap4-school-card {
    padding: 15px 14px 13px;
  }

  .ap4-school-go-link {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ap4-school-card {
    transition: none;
  }
}
