:root {
  --brand-green: #d83a2e;
  --brand-green-dark: #07145a;
  --brand-gold: #f7bd20;
  --brand-saffron: #e44a2f;
  --brand-blue: #111b68;
  --brand-cream: #fff8e8;
  --ink: #17172f;
  --muted: #6e6a73;
  --paper: #fffaf0;
  --soft: #fff2df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 27, 104, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 10px 30px rgba(17, 27, 104, 0.09);
  backdrop-filter: blur(18px);
}

.news-ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 9px 20px;
  color: var(--white);
  background: var(--brand-blue);
}

.news-ticker strong {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  background: var(--brand-gold);
}

.ticker-window {
  overflow: hidden;
  min-width: 0;
}

.ticker-track {
  display: inline-flex;
  gap: 34px;
  min-width: max-content;
  font-size: 0.9rem;
  font-weight: 700;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  position: relative;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-saffron), var(--brand-gold));
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  background: radial-gradient(circle, var(--white), var(--brand-cream));
  box-shadow: 0 8px 22px rgba(17, 27, 104, 0.2);
}

.brand strong {
  display: block;
  color: var(--brand-green-dark);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.1;
}

.brand small {
  color: var(--brand-blue);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #252852;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-green-dark);
  background: rgba(244, 182, 63, 0.2);
}

.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-blue);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 20px 34px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(15, 107, 70, 0.92), rgba(20, 58, 112, 0.86)),
    url("images/hero.jpg") center / cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 90, 0.92), rgba(216, 58, 46, 0.42), rgba(17, 27, 104, 0.68)),
    radial-gradient(circle at 20% 15%, rgba(247, 189, 32, 0.42), transparent 30%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--brand-saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.principal h2,
.academics h2,
.admission-banner h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-saffron), var(--brand-gold));
  box-shadow: 0 14px 30px rgba(239, 125, 45, 0.3);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 248, 232, 0.13);
}

.btn-light {
  color: var(--brand-green-dark);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(4, 28, 20, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.hero-stats article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.quick-links,
.section,
.admission-banner,
.footer {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-blue);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 90, 0.92), rgba(216, 58, 46, 0.46)),
    radial-gradient(circle at 18% 20%, rgba(247, 189, 32, 0.36), transparent 34%);
}

.page-hero div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px 70px;
}

.page-hero h1,
.page-title h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.page-title {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 20px 20px;
}

.page-title h1 {
  color: var(--brand-green-dark);
}

.page-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}

.page-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.faculty-section {
  padding-top: 76px;
}

.faculty-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.faculty-content p {
  font-size: 1.04rem;
}

.faculty-inline-photo {
  width: 100%;
  max-height: 360px;
  margin-bottom: 22px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.faculty-highlights {
  display: grid;
  gap: 14px;
}

.faculty-highlights article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 22px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.faculty-highlights article:nth-child(1) {
  border-left: 6px solid var(--brand-gold);
}

.faculty-highlights article:nth-child(2) {
  border-left: 6px solid var(--brand-saffron);
}

.faculty-highlights article:nth-child(3) {
  border-left: 6px solid #25965a;
}

.faculty-highlights article:nth-child(4) {
  border-left: 6px solid var(--brand-blue);
}

.faculty-highlights strong {
  color: var(--brand-blue);
  font-size: 1.5rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px 20px 0;
}

.quick-links a {
  padding: 18px;
  border-radius: 20px;
  color: var(--brand-green-dark);
  font-weight: 800;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.quick-links a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  transform: translateY(-4px);
}

.section {
  padding: 92px 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2,
.principal h2,
.academics h2 {
  color: var(--brand-green-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section p,
.academics p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-points span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brand-green-dark);
  font-weight: 800;
  background: rgba(247, 189, 32, 0.2);
}

.about-card,
.feature-card,
.news-panel,
.notice-board,
.enquiry-form {
  border: 1px solid rgba(15, 107, 70, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 34px;
}

.about-card h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.5rem;
}

.progress-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.progress-list label {
  color: var(--brand-green-dark);
  font-weight: 800;
}

.progress-list span {
  display: block;
  height: 9px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e6d4;
}

.progress-list i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
}

.principal {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #fff3cf, #fff8e8 46%, #ffe2dc);
}

.principal-photo {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.principal-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: linear-gradient(135deg, #f8d879, #dcefe1);
}

.principal-message strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand-blue);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold), var(--brand-saffron));
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(10, 48, 35, 0.18);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.5rem;
  background: #fff0c5;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--brand-green-dark);
}

.feature-card small {
  display: block;
  margin-top: 12px;
  color: var(--brand-blue);
  font-weight: 800;
}

.academics {
  background: linear-gradient(135deg, var(--brand-blue), #26307b 52%, var(--brand-green));
}

.academic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.academics h2,
.academics p {
  color: var(--white);
}

.academic-list {
  display: grid;
  gap: 14px;
}

.academic-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.academic-list article:nth-child(1) {
  background: linear-gradient(135deg, rgba(247, 189, 32, 0.22), rgba(255, 255, 255, 0.13));
}

.academic-list article:nth-child(2) {
  background: linear-gradient(135deg, rgba(216, 58, 46, 0.26), rgba(255, 255, 255, 0.13));
}

.academic-list article:nth-child(3) {
  background: linear-gradient(135deg, rgba(76, 150, 82, 0.28), rgba(255, 255, 255, 0.13));
}

.academic-list article:nth-child(4) {
  background: linear-gradient(135deg, rgba(17, 27, 104, 0.38), rgba(255, 255, 255, 0.13));
}

.color-steps article {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.color-steps article:nth-child(1) {
  border-left: 6px solid var(--brand-gold);
  background: #fff7dc;
}

.color-steps article:nth-child(2) {
  border-left: 6px solid var(--brand-saffron);
  background: #fff0eb;
}

.color-steps article:nth-child(3) {
  border-left: 6px solid #25965a;
  background: #eaf8ef;
}

.color-steps article:nth-child(4) {
  border-left: 6px solid var(--brand-blue);
  background: #eef1ff;
}

.color-steps strong {
  color: var(--brand-blue);
}

.academic-list strong {
  color: var(--brand-gold);
  font-size: 1.7rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: linear-gradient(135deg, #fff0c5, #ffd5ce);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.life-feature {
  padding-top: 24px;
}

.life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.75fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 18px;
}

.life-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 230px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.life-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.life-grid article:hover img {
  transform: scale(1.04);
}

.life-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(7, 20, 90, 0.78), transparent);
}

.life-grid h3,
.life-main div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  margin: 0;
  color: var(--white);
}

.life-main {
  grid-row: span 2;
}

.life-main span {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--brand-gold);
}

.life-main h3 {
  position: static;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.news-notices {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.news-panel,
.notice-board {
  padding: 30px;
}

.news-panel article {
  padding: 18px 0;
  border-bottom: 1px solid #e4ece6;
}

.news-panel article:last-child {
  border-bottom: 0;
}

.news-panel time {
  color: var(--brand-saffron);
  font-weight: 800;
}

.news-panel h3 {
  margin: 6px 0;
  color: var(--brand-green-dark);
}

.notice-board ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.notice-board li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 600;
}

.notice-board li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(247, 189, 32, 0.2);
}

.admission-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 46px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 90, 0.96), rgba(216, 58, 46, 0.86)),
    url("images/hero.jpg") center / cover;
  box-shadow: var(--shadow);
}

.admission-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.admission-banner p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-cards a {
  padding: 16px;
  border-radius: 18px;
  color: var(--brand-green-dark);
  font-weight: 800;
  background: #fff0c5;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #d7e5dc;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #fffdf8;
  outline: none;
}

.enquiry-form textarea {
  min-height: 118px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(17, 27, 104, 0.12);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 44px 20px;
  color: var(--white);
  background: var(--brand-blue);
}

.footer img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

.footer h2 {
  margin: 14px 0 4px;
  font-size: 1.25rem;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--brand-green-dark);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--brand-gold);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--brand-blue);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .nav-links.open {
    max-height: 430px;
    padding: 12px;
  }

  .nav-links a {
    border-radius: 14px;
  }

  .about-grid,
  .principal,
  .academic-inner,
  .faculty-content,
  .life-grid,
  .news-notices,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .life-grid {
    grid-template-rows: none;
  }

  .life-main {
    grid-row: span 1;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: none;
  }

  .news-ticker {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 14px;
  }

  .news-ticker strong {
    width: max-content;
  }

  .navbar {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 104px 16px 26px;
  }

  .hero-stats,
  .quick-links,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .section {
    padding: 68px 16px;
  }

  .quick-links {
    padding-inline: 16px;
  }

  .principal {
    padding-block: 68px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child,
  .page-gallery img:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero div {
    padding: 98px 16px 54px;
  }

  .page-title {
    padding: 72px 16px 0;
  }

  .academic-list article {
    grid-template-columns: 52px 1fr;
  }

  .admission-banner {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: 16px;
    padding: 30px;
  }
}
