/* Scoped styles for admission pages embedded in site base layout.
   Do NOT use per-page admission CSS here — those files reset global layout. */

.admission-legacy-page .hero {
  position: relative;
  background:
    linear-gradient(rgba(15, 76, 129, 0.86), rgba(15, 76, 129, 0.74)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: clamp(72px, 10vw, 110px) 0;
  overflow: hidden;
}

.admission-legacy-page .hero::before,
.admission-legacy-page .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: admission-float 8s ease-in-out infinite;
  pointer-events: none;
}

.admission-legacy-page .hero::before {
  width: 240px;
  height: 240px;
  top: -60px;
  left: -60px;
}

.admission-legacy-page .hero::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes admission-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.admission-legacy-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.admission-legacy-page .hero-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 20px;
  font-size: 14px;
}

.admission-legacy-page .hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 14px;
  line-height: 1.08;
  color: #fff;
}

.admission-legacy-page .hero p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.95;
  max-width: 760px;
  color: #fff;
}

.admission-legacy-page .section-title {
  text-align: center;
  margin-bottom: 42px;
}

.admission-legacy-page .section-title h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: #123b67;
  margin-bottom: 12px;
}

.admission-legacy-page .section-title p {
  max-width: 760px;
  margin: auto;
  color: #66788a;
  line-height: 1.7;
}

.admission-legacy-page .section-title span {
  display: block;
  color: #e8580a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .admission-legacy-page .hero {
    padding: 70px 0;
  }

  .admission-legacy-page .hero h1 {
    font-size: 30px;
  }

  .admission-legacy-page .hero p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .admission-legacy-page .hero h1 {
    font-size: 24px;
  }
}
