:root {
  --regent-green: #0c4932;
  --regent-green-2: #083827;
  --regent-maroon: #650b12;
  --regent-gold: #c79b3b;
  --regent-ink: #17211d;
  --regent-muted: #66716d;
  --regent-line: #dde7e1;
  --regent-soft: #f5f8f6;
  --regent-white: #ffffff;
  --regent-radius: 8px;
}

body {
  color: var(--regent-ink);
  background: #fff;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

a {
  color: var(--regent-maroon);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--regent-line);
  backdrop-filter: blur(14px);
}

.top-strip {
  background: var(--regent-green);
  color: #fff;
  font-size: 0.86rem;
}

.top-strip a {
  color: #fff;
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--regent-green);
  text-decoration: none;
  min-width: 250px;
}

.brand-lockup img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-lockup strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--regent-green);
}

.brand-lockup span {
  display: block;
  color: var(--regent-muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.site-nav .nav-link {
  color: var(--regent-ink);
  font-weight: 700;
  padding: 28px 12px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--regent-maroon);
}

.dropdown-menu {
  border-radius: var(--regent-radius);
  border: 1px solid var(--regent-line);
  box-shadow: 0 22px 60px rgba(12, 73, 50, 0.12);
}

.btn-regent,
.btn-regent:focus {
  background: var(--regent-maroon);
  color: #fff;
  border: 1px solid var(--regent-maroon);
  border-radius: 6px;
  font-weight: 800;
}

.btn-regent:hover {
  background: #4e070d;
  color: #fff;
}

.btn-regent-outline {
  color: var(--regent-green);
  border: 1px solid var(--regent-green);
  border-radius: 6px;
  font-weight: 800;
}

.btn-regent-outline:hover {
  background: var(--regent-green);
  color: #fff;
}

.btn-regent-light {
  background: #fff;
  color: var(--regent-green);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-weight: 800;
}

.btn-regent-light:hover,
.btn-regent-light:focus {
  background: var(--regent-gold);
  border-color: var(--regent-gold);
  color: #221b10;
}

.hero-modern {
  position: relative;
  min-height: min(760px, 84vh);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 35, 25, 0.86), rgba(5, 35, 25, 0.48) 48%, rgba(5, 35, 25, 0.12)),
    linear-gradient(0deg, rgba(5, 35, 25, 0.62), transparent 44%);
  z-index: -1;
}

.hero-modern .container {
  padding-top: 84px;
  padding-bottom: 80px;
}

.hero-kicker,
.section-kicker {
  color: var(--regent-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-modern h1 {
  max-width: 880px;
  font-size: 5.25rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  margin: 12px 0 20px;
}

.hero-modern p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-actions {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  box-shadow: 0 22px 70px rgba(12, 73, 50, 0.12);
  overflow: hidden;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px;
  color: var(--regent-ink);
  text-decoration: none;
  border-right: 1px solid var(--regent-line);
}

.quick-action:last-child {
  border-right: 0;
}

.quick-action i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.4rem;
}

.quick-action strong {
  display: block;
  color: var(--regent-green);
}

.quick-action span {
  display: block;
  color: var(--regent-muted);
  font-size: 0.9rem;
}

.section-band {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-band.soft {
  background: var(--regent-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  color: var(--regent-green);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  margin: 6px 0 0;
}

.section-heading p {
  max-width: 560px;
  color: var(--regent-muted);
  margin: 0;
}

.program-card,
.news-card-modern,
.event-card-modern {
  background: #fff;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover,
.news-card-modern:hover,
.event-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.12);
}

.program-card img,
.news-card-modern img,
.event-card-modern img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.program-card-body,
.news-card-body,
.event-card-body {
  padding: 22px;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.featured-story > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.featured-story h2 {
  margin: 8px 0 14px;
  color: var(--regent-green);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.featured-story p {
  color: var(--regent-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.event-feature-venue {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--regent-green) !important;
  font-weight: 900;
}

.newsroom-masthead {
  padding: clamp(58px, 7vw, 92px) 0 36px;
  background: #fff;
  border-bottom: 1px solid var(--regent-line);
}

.event-masthead {
  background: var(--regent-soft);
}

.newsroom-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
}

.newsroom-masthead h1 {
  max-width: 860px;
  margin: 10px 0 14px;
  color: var(--regent-green);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
  font-weight: 900;
}

.newsroom-masthead p {
  max-width: 680px;
  margin: 0;
  color: var(--regent-muted);
  font-size: 1.12rem;
}

.newsroom-digest {
  padding: 22px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: var(--regent-soft);
}

.event-masthead .newsroom-digest {
  background: #fff;
}

.newsroom-digest span,
.newsroom-digest strong,
.newsroom-digest a {
  display: block;
}

.newsroom-digest span {
  color: var(--regent-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-digest strong {
  margin: 7px 0 12px;
  color: var(--regent-green);
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 900;
}

.newsroom-digest a {
  color: var(--regent-maroon);
  font-weight: 900;
  text-decoration: none;
}

.newsroom-topic-nav {
  position: sticky;
  top: 101px;
  z-index: 1010;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--regent-line);
  backdrop-filter: blur(12px);
}

.newsroom-topic-nav .container {
  display: flex;
  gap: 22px;
  overflow-x: auto;
}

.newsroom-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: var(--regent-green);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 900;
}

.newsroom-topic-nav a:hover,
.newsroom-topic-nav a:focus {
  color: var(--regent-maroon);
}

.newsroom-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.lead-news-story,
.headline-rail,
.newsroom-side-card,
.empty-state-panel,
.event-lead {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.lead-news-story {
  overflow: hidden;
}

.lead-news-story a {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.lead-news-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-news-story div {
  padding: clamp(24px, 4vw, 38px);
}

.story-meta {
  display: inline-flex;
  color: var(--regent-maroon);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-news-story h2 {
  margin: 9px 0 14px;
  color: var(--regent-green);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  font-weight: 900;
}

.lead-news-story p {
  color: var(--regent-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.lead-news-story strong {
  color: var(--regent-maroon);
}

.headline-rail {
  padding: 24px;
}

.headline-rail-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--regent-line);
}

.headline-rail-header h2,
.newsroom-side-card h2 {
  margin: 7px 0 0;
  color: var(--regent-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.headline-item {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--regent-line);
  color: var(--regent-ink);
  text-decoration: none;
}

.headline-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.headline-item span,
.headline-item strong {
  display: block;
}

.headline-item span {
  color: var(--regent-muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.headline-item strong {
  margin-top: 5px;
  color: var(--regent-ink);
  line-height: 1.28;
  font-weight: 900;
}

.headline-item:hover strong,
.headline-item:focus strong {
  color: var(--regent-maroon);
}

.newsroom-feed-layout,
.event-agenda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.newsroom-feed,
.event-agenda-list {
  display: grid;
  gap: 16px;
}

.news-feed-item,
.event-agenda-item {
  border-top: 1px solid var(--regent-line);
  background: #fff;
}

.news-feed-item a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  color: inherit;
  text-decoration: none;
}

.news-feed-item img {
  width: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.news-feed-item h3,
.event-agenda-item h3 {
  margin: 5px 0 8px;
  color: var(--regent-green);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
}

.news-feed-item p,
.event-agenda-item p {
  margin: 0;
  color: var(--regent-muted);
}

.newsroom-sidebar {
  position: sticky;
  top: 178px;
}

.newsroom-side-card {
  padding: 24px;
}

.newsroom-side-card ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.newsroom-side-card a {
  color: var(--regent-ink);
  text-decoration: none;
  font-weight: 800;
}

.newsroom-side-card a:hover,
.newsroom-side-card a:focus {
  color: var(--regent-maroon);
}

.empty-state-panel {
  padding: 34px;
}

.empty-state-panel.compact {
  padding: 20px;
}

.empty-state-panel h2 {
  color: var(--regent-green);
  font-weight: 900;
}

.empty-state-panel p {
  color: var(--regent-muted);
}

.pagination-regent {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--regent-line);
}

.pagination-regent .pagination {
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-regent .page-link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--regent-line);
  border-radius: 999px !important;
  color: var(--regent-green);
  background: #fff;
  box-shadow: none;
  font-weight: 900;
}

.pagination-regent .page-nav .page-link {
  min-width: 112px;
}

.pagination-regent .page-item.active .page-link {
  border-color: var(--regent-green);
  background: var(--regent-green);
  color: #fff;
}

.pagination-regent .page-link:hover,
.pagination-regent .page-link:focus {
  border-color: var(--regent-maroon);
  background: rgba(101, 11, 18, 0.08);
  color: var(--regent-maroon);
}

.pagination-regent .page-item.disabled .page-link {
  border-color: transparent;
  background: var(--regent-soft);
  color: #9aa5a1;
  opacity: 1;
}

.event-lead {
  overflow: hidden;
}

.event-lead > img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}

.event-lead-body {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.event-date-block {
  width: 82px;
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: var(--regent-green);
  color: #fff;
  text-align: center;
}

.event-date-block span,
.event-date-block strong {
  display: block;
}

.event-date-block span {
  color: var(--regent-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-date-block strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.event-lead h2 {
  margin: 8px 0 14px;
  color: var(--regent-green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
}

.event-lead p {
  color: var(--regent-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.event-agenda-item a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
}

.event-agenda-item small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--regent-muted);
  font-weight: 800;
}

.badge-regent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: var(--regent-green);
  background: rgba(12, 73, 50, 0.1);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.76rem;
}

.program-card h3,
.news-card-modern h3,
.event-card-modern h3 {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--regent-ink);
  margin: 14px 0 10px;
}

.program-card p,
.news-card-modern p,
.event-card-modern p {
  color: var(--regent-muted);
}

.programme-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.programme-summary-grid article {
  padding: 22px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.programme-summary-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.25rem;
}

.programme-summary-grid span,
.programme-summary-grid strong {
  display: block;
}

.programme-summary-grid span {
  color: var(--regent-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-summary-grid strong {
  margin-top: 5px;
  color: var(--regent-green);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.programme-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.programme-filter-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--regent-line);
  border-radius: 999px;
  color: var(--regent-green);
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}

.programme-filter-bar a.active,
.programme-filter-bar a:hover,
.programme-filter-bar a:focus {
  border-color: var(--regent-green);
  background: var(--regent-green);
  color: #fff;
}

.programme-filter-bar span {
  min-width: 26px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(12, 73, 50, 0.1);
  font-size: 0.76rem;
}

.programme-filter-bar a.active span,
.programme-filter-bar a:hover span,
.programme-filter-bar a:focus span {
  background: rgba(255, 255, 255, 0.18);
}

.programme-search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(150px, 0.7fr) minmax(210px, 1fr) minmax(140px, 0.6fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 30px;
  padding: 16px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.programme-search-field,
.programme-select-field {
  min-width: 0;
}

.programme-search-field label,
.programme-select-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--regent-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-search-field > div {
  position: relative;
}

.programme-search-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--regent-muted);
  transform: translateY(-50%);
}

.programme-search-field input,
.programme-select-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
  color: var(--regent-ink);
  font-weight: 700;
  box-shadow: none;
}

.programme-search-field input {
  padding: 10px 14px 10px 42px;
}

.programme-select-field select {
  padding: 10px 12px;
}

.programme-search-field input:focus,
.programme-select-field select:focus {
  outline: none;
  border-color: var(--regent-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12, 73, 50, 0.12);
}

.programme-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.programme-filter-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.programme-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.programmes-page .page-hero {
  min-height: min(620px, 68vh);
  display: flex;
  align-items: flex-end;
}

.programmes-page .page-hero .container {
  max-width: 1040px;
}

.programmes-page .page-hero .lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.72;
}

#programme-browser {
  scroll-margin-top: 142px;
}

.programmes-page .section-band.soft {
  padding: 36px 0;
  background: linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.programme-summary-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.programme-summary-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: var(--regent-gold);
}

.programme-summary-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 73, 50, 0.24);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.12);
}

.programmes-page .program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.programmes-page .program-card img {
  background: var(--regent-soft);
  transition: transform 0.25s ease;
}

.programmes-page .program-card:hover img {
  transform: scale(1.025);
}

.programmes-page .program-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.program-card-meta {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--regent-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.program-card-meta i {
  color: var(--regent-gold);
  line-height: 1.4;
}

.program-card-facts {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 2px 0 16px;
}

.program-card-facts span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  color: var(--regent-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.program-card-facts i {
  color: var(--regent-maroon);
  line-height: 1.45;
}

.program-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--regent-maroon);
  font-weight: 900;
  text-decoration: none;
}

.program-card-link i {
  transition: transform 0.2s ease;
}

.program-card-link:hover,
.program-card-link:focus {
  color: var(--regent-green);
}

.program-card-link:hover i,
.program-card-link:focus i {
  transform: translateX(3px);
}

.program-card-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
  color: var(--regent-green);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.program-card-apply:hover,
.program-card-apply:focus {
  border-color: var(--regent-green);
  background: var(--regent-green);
  color: #fff;
}

.programme-empty-state {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.programme-empty-state > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.45rem;
}

.programme-empty-state h3 {
  margin: 0 0 8px;
  color: var(--regent-green);
  font-weight: 900;
}

.programme-empty-state p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--regent-muted);
}

.stats-band {
  background: var(--regent-green);
  color: #fff;
  padding: 48px 0;
}

.stat-item strong {
  display: block;
  font-size: 3.25rem;
  line-height: 1;
  color: #fff;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.feature-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--regent-radius);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--regent-muted);
}

.feature-list i {
  color: var(--regent-maroon);
  font-size: 1.2rem;
}

.page-hero {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--regent-green);
  color: #fff;
}

.page-hero.with-image {
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.page-hero.with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 35, 25, 0.86), rgba(5, 35, 25, 0.42));
  z-index: -1;
}

.page-hero h1 {
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 1;
}

.content-prose {
  max-width: 880px;
  font-size: 1.06rem;
  line-height: 1.75;
}

.content-prose-wide {
  max-width: none;
}

.content-prose h2,
.content-prose h3 {
  color: var(--regent-green);
  font-weight: 900;
  margin-top: 1.6em;
}

.programme-detail-content {
  max-width: none;
}

.detail-accordion {
  display: grid;
  gap: 14px;
}

.detail-accordion .accordion-item {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  overflow: hidden;
  background: #fff;
}

.detail-accordion .accordion-button {
  background: #fff;
  color: var(--regent-green);
  font-weight: 900;
  box-shadow: none;
  padding: 20px 22px;
}

.detail-accordion .accordion-button:not(.collapsed) {
  background: rgba(12, 73, 50, 0.08);
  color: var(--regent-green);
}

.detail-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(101, 11, 18, 0.2);
}

.detail-accordion .accordion-body {
  padding: 24px;
}

.programme-prospectus-hero {
  position: relative;
  isolation: isolate;
  min-height: min(650px, 72vh);
  display: flex;
  align-items: flex-end;
  padding: 96px 0 72px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.programme-prospectus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 31, 23, 0.92) 0%, rgba(5, 31, 23, 0.68) 48%, rgba(101, 11, 18, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 31, 23, 0.42), rgba(5, 31, 23, 0.08));
}

.programme-hero-content {
  max-width: 920px;
}

.programme-hero-content h1 {
  max-width: 900px;
  margin: 10px 0 16px;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.programme-hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
  line-height: 1.72;
}

.programme-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.programme-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.programme-prospectus-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.programme-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.programme-content-column {
  min-width: 0;
}

.programme-main-panel {
  min-width: 0;
}

.programme-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.programme-section-heading h2 {
  margin: 6px 0 0;
  color: var(--regent-green);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
}

.programme-section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--regent-muted);
  line-height: 1.7;
}

.programme-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.programme-section-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--regent-green);
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.programme-section-tabs button:hover,
.programme-section-tabs button:focus,
.programme-section-tabs button.active {
  border-color: var(--regent-green);
  background: var(--regent-green);
  color: #fff;
}

.programme-section-tabs button:focus-visible {
  outline: 3px solid rgba(199, 155, 59, 0.42);
  outline-offset: 2px;
}

.programme-accordion {
  margin-top: 0;
}

.programme-accordion .accordion-item {
  border-color: rgba(12, 73, 50, 0.16);
  box-shadow: 0 16px 42px rgba(12, 73, 50, 0.08);
}

.programme-accordion .accordion-button {
  gap: 14px;
  min-height: 86px;
  padding: 20px 24px;
}

.programme-accordion .accordion-button::after {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 50%;
  background-color: rgba(12, 73, 50, 0.08);
  background-size: 16px;
  background-position: center;
}

.programme-accordion .accordion-button:not(.collapsed)::after {
  background-color: rgba(255, 255, 255, 0.8);
}

.programme-accordion .accordion-button > span:not(.programme-accordion-icon) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.programme-accordion .accordion-button strong {
  color: var(--regent-green);
  font-size: 1.05rem;
  line-height: 1.2;
}

.programme-accordion .accordion-button small {
  color: var(--regent-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.programme-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(12, 73, 50, 0.1), rgba(199, 155, 59, 0.12));
}

.programme-accordion-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.25rem;
}

.programme-accordion .accordion-button:not(.collapsed) .programme-accordion-icon {
  background: var(--regent-green);
  color: #fff;
}

.programme-accordion .accordion-body {
  border-top: 1px solid var(--regent-line);
  color: var(--regent-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.programme-accordion .accordion-body h2,
.programme-accordion .accordion-body h3,
.programme-accordion .accordion-body h4,
.programme-accordion .accordion-body h5 {
  color: var(--regent-green);
  font-weight: 900;
}

.programme-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.programme-accordion .accordion-body ul,
.programme-accordion .accordion-body ol {
  padding-left: 1.2rem;
}

.programme-accordion .accordion-body li + li {
  margin-top: 0.36rem;
}

.programme-accordion .accordion-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.programme-requirements-detail {
  display: grid;
  gap: 20px;
  color: var(--regent-muted);
}

.programme-requirements-detail section {
  padding: 0;
  overflow: visible;
  background: transparent;
  color: inherit;
}

.programme-requirements-detail .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.programme-requirements-detail section > .container + .container {
  margin-top: 20px;
}

.programme-requirements-detail > p,
.programme-requirements-detail section > .container:first-child {
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(12, 73, 50, 0.14);
  border-radius: var(--regent-radius);
  background: linear-gradient(135deg, rgba(12, 73, 50, 0.08), rgba(199, 155, 59, 0.11));
}

.programme-requirements-detail > p {
  margin: 0;
}

.programme-requirements-detail h3,
.programme-requirements-detail h4 {
  color: var(--regent-green);
}

.programme-requirements-detail section > .container:first-child h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.24;
}

.programme-requirements-detail section > .container:first-child p {
  margin-bottom: 0;
}

.programme-requirements-detail .require .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 16px;
  margin: 0 !important;
  padding: 0 !important;
}

.programme-requirements-detail .require .row > [class*="col-"] {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.programme-requirements-detail .require .bg-success-subtle {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(12, 73, 50, 0.13);
  border-radius: var(--regent-radius);
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(12, 73, 50, 0.08);
  text-align: left !important;
}

.programme-requirements-detail .require .bg-success-subtle::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--regent-green), var(--regent-gold));
}

.programme-requirements-detail .require .bg-success-subtle > p:first-child {
  margin: 0 0 16px !important;
}

.programme-requirements-detail .require i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 8px;
  background: rgba(101, 11, 18, 0.1);
  color: var(--regent-maroon);
  font-size: 1.35rem;
}

.programme-requirements-detail .require h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 900;
}

.programme-requirements-detail .require p:not(:first-child) {
  margin: 0;
  color: var(--regent-muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.programme-requirements-detail .container.p-5 {
  padding: clamp(18px, 3vw, 24px) !important;
  border: 1px solid var(--regent-line);
  border-left: 4px solid var(--regent-gold);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 73, 50, 0.07);
}

.programme-requirements-detail .container.p-5 h4 {
  margin: 0 0 10px;
  font-size: 1.35rem !important;
  font-weight: 900;
  line-height: 1.25;
}

.programme-requirements-detail .container.p-5 p {
  margin-bottom: 0;
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) > .row {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 73, 50, 0.07);
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) > .row > [class*="col-"] {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) ul {
  display: grid;
  gap: 10px;
  height: 100%;
  align-content: center;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  margin: 0 !important;
  border: 1px solid rgba(12, 73, 50, 0.1);
  border-radius: 6px;
  background: var(--regent-soft);
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) li i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  color: var(--regent-green);
  font-size: 1rem !important;
}

.programme-requirements-detail section > .container:not(.require):not(:first-child) li span {
  padding: 0 !important;
  color: var(--regent-ink);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .programme-requirements-detail section > .container:not(.require):not(:first-child) > .row {
    grid-template-columns: 1fr;
  }

  .programme-requirements-detail section > .container:not(.require):not(:first-child) img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 576px) {
  .programme-requirements-detail .require .bg-success-subtle {
    padding: 18px !important;
  }
}

.programme-sidebar {
  position: sticky;
  top: 132px;
  min-width: 0;
}

.programme-facts-card {
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(12, 73, 50, 0.1);
}

.programme-facts-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--regent-line);
}

.programme-facts-header h2 {
  margin: 6px 0 0;
  color: var(--regent-green);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.programme-fact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.programme-fact-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 14px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
}

.programme-fact-list i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--regent-maroon);
  font-size: 1.1rem;
}

.programme-fact-list span {
  color: var(--regent-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-fact-list strong {
  min-width: 0;
  color: var(--regent-ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.programme-action-stack {
  display: grid;
  gap: 10px;
}

.course-outline-detail .faq-item h3 {
  margin: 0;
  color: var(--regent-green);
  font-size: 1.05rem;
  font-weight: 900;
}

.course-outline-detail .faq-content {
  color: var(--regent-muted);
  line-height: 1.7;
}

.fees-page .section-heading {
  margin-bottom: 26px;
}

.fees-table-wrap {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
}

.fees-table {
  margin-bottom: 0;
  min-width: 780px;
}

.fees-table caption {
  caption-side: top;
  color: var(--regent-green);
  font-weight: 900;
  padding: 0 0 12px;
}

.fees-table th {
  color: var(--regent-green);
}

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

.fee-highlight-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.fee-highlight-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.35rem;
}

.fee-highlight-card span {
  display: block;
  color: var(--regent-muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-highlight-card strong {
  display: block;
  margin: 6px 0;
  color: var(--regent-green);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 900;
}

.fee-highlight-card p {
  margin: 0;
  color: var(--regent-muted);
}

.fees-browser {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  overflow: hidden;
}

.fees-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--regent-line);
  background: var(--regent-soft);
}

.fees-category-nav .nav-link {
  border: 1px solid var(--regent-line);
  border-radius: 999px;
  background: #fff;
  color: var(--regent-green);
  font-weight: 900;
}

.fees-category-nav .nav-link.active {
  background: var(--regent-green);
  border-color: var(--regent-green);
  color: #fff;
}

.fees-tab-content {
  padding: 24px;
}

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

.payment-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.payment-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(101, 11, 18, 0.1);
  color: var(--regent-maroon);
  font-size: 1.3rem;
}

.payment-card h3 {
  color: var(--regent-green);
  font-size: 1.08rem;
  font-weight: 900;
}

.payment-card p {
  color: var(--regent-muted);
}

.payment-card strong {
  color: var(--regent-maroon);
  font-size: 1.16rem;
  font-weight: 900;
}

.payment-instructions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.payment-instructions > div,
.payment-instructions > aside {
  padding: 28px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.payment-instructions h3 {
  color: var(--regent-green);
  font-weight: 900;
}

.payment-step-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.payment-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--regent-muted);
}

.payment-step-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--regent-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.payment-instructions aside {
  background: var(--regent-green);
  color: #fff;
}

.payment-instructions aside i {
  color: var(--regent-gold);
  font-size: 2rem;
}

.payment-instructions aside h3 {
  margin-top: 12px;
  color: #fff;
}

.payment-instructions aside p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 1.1rem;
  color: var(--regent-muted);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  padding: 20px;
}

.info-card h3 {
  color: var(--regent-green);
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.section-heading.compact {
  align-items: flex-start;
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  font-size: 2.15rem;
}

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

.contact-info-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.contact-info-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(101, 11, 18, 0.1);
  color: var(--regent-maroon);
  font-size: 1.35rem;
}

.contact-info-card > span {
  display: block;
  color: var(--regent-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-card h2 {
  margin: 7px 0 14px;
  color: var(--regent-green);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-info-card p {
  margin-bottom: 6px;
  color: var(--regent-muted);
}

.contact-info-card a {
  color: var(--regent-ink);
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus {
  color: var(--regent-maroon);
}

.contact-tabs,
.contact-form-panel {
  padding: 28px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.contact-pill-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.contact-pill-nav .nav-link {
  width: 100%;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  color: var(--regent-green);
  background: var(--regent-soft);
  font-weight: 900;
}

.contact-pill-nav .nav-link i {
  font-size: 1.25rem;
}

.contact-pill-nav .nav-link.active {
  color: #fff;
  background: var(--regent-green);
  border-color: var(--regent-green);
}

.contact-tab-content {
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
}

.contact-tab-content h3 {
  color: var(--regent-green);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-tab-content p {
  color: var(--regent-muted);
}

.contact-mini-list {
  display: grid;
  gap: 10px;
}

.contact-mini-list a,
.contact-mini-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--regent-ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-mini-list i {
  color: var(--regent-maroon);
  font-size: 1.05rem;
  line-height: 1.45;
}

.contact-faq .detail-accordion .accordion-button,
.contact-faq .detail-accordion .accordion-body {
  padding: 18px 20px;
}

.admissions-page .page-hero {
  min-height: min(620px, 68vh);
  display: flex;
  align-items: flex-end;
}

.admissions-page .page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.72;
}

.admissions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.admissions-overview-band {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.admissions-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}

.admissions-lead-panel,
.admissions-contact-card,
.admissions-process-card,
.admissions-fee-card,
.admissions-document-grid article {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.admissions-lead-panel {
  padding: clamp(24px, 4vw, 34px);
  font-size: 1.05rem;
  line-height: 1.72;
}

.admissions-lead-panel p {
  max-width: 820px;
  color: var(--regent-muted);
}

.admissions-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.admissions-highlight-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--regent-soft);
  color: var(--regent-green);
  font-size: 0.88rem;
  font-weight: 900;
}

.admissions-highlight-row i {
  color: var(--regent-maroon);
}

.admissions-contact-card {
  padding: 24px;
}

.admissions-contact-card > i,
.admissions-document-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(101, 11, 18, 0.1);
  color: var(--regent-maroon);
  font-size: 1.35rem;
}

.admissions-contact-card > span {
  display: block;
  color: var(--regent-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admissions-contact-card h2 {
  margin: 7px 0 14px;
  color: var(--regent-green);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.12;
}

.admissions-contact-card p {
  margin-bottom: 6px;
}

.admissions-contact-card a:not(.btn) {
  color: var(--regent-ink);
  text-decoration: none;
  font-weight: 800;
}

.admissions-contact-card a:not(.btn):hover,
.admissions-contact-card a:not(.btn):focus {
  color: var(--regent-maroon);
}

#how-to-apply,
#admission-requirements {
  scroll-margin-top: 142px;
}

.admissions-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.admissions-process-card,
.admissions-fee-card {
  padding: clamp(22px, 3vw, 30px);
}

.admissions-step-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.admissions-step-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.admissions-step-list span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--regent-green);
  color: #fff;
  font-weight: 900;
}

.admissions-step-list p {
  margin: 7px 0 0;
  color: var(--regent-muted);
  line-height: 1.65;
}

.admissions-fee-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.admissions-fee-list div {
  padding: 16px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
}

.admissions-fee-list span,
.admissions-fee-list strong {
  display: block;
}

.admissions-fee-list span {
  color: var(--regent-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admissions-fee-list strong {
  margin: 5px 0;
  color: var(--regent-green);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.admissions-fee-list p {
  margin: 0;
  color: var(--regent-muted);
  font-size: 0.94rem;
}

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

.admissions-document-grid article {
  min-height: 100%;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admissions-document-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.admissions-document-grid h3 {
  margin: 0 0 10px;
  color: var(--regent-green);
  font-size: 1.08rem;
  font-weight: 900;
}

.admissions-document-grid p {
  margin: 0;
  color: var(--regent-muted);
  line-height: 1.65;
}

.admissions-requirements-accordion .accordion-button {
  gap: 14px;
}

.admissions-requirements-accordion .accordion-button > span:not(.programme-accordion-icon) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admissions-requirements-accordion .accordion-button strong {
  color: var(--regent-green);
  font-size: 1.04rem;
  line-height: 1.2;
}

.admissions-requirements-accordion .accordion-button small {
  color: var(--regent-muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.admissions-requirements-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(12, 73, 50, 0.1), rgba(199, 155, 59, 0.12));
}

.admissions-requirements-accordion .accordion-button:not(.collapsed) .programme-accordion-icon {
  background: var(--regent-green);
  color: #fff;
}

.admissions-requirements-accordion .accordion-body {
  color: var(--regent-muted);
  line-height: 1.7;
}

.admissions-grade-table-wrap {
  margin-bottom: 18px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
}

.admissions-grade-table {
  min-width: 620px;
  margin: 0;
}

.admissions-grade-table th {
  color: var(--regent-green);
}

.admissions-check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--regent-muted);
}

.campus-life-page .page-hero {
  min-height: min(620px, 68vh);
  display: flex;
  align-items: flex-end;
}

.campus-life-page .page-hero .lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.72;
}

.campus-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#campus-welcome,
#student-support,
#student-info {
  scroll-margin-top: 142px;
}

.campus-overview-band {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.campus-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 24px;
  align-items: stretch;
}

.campus-welcome-panel,
.campus-welcome-card,
.campus-support-grid article,
.campus-policy-grid article {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.campus-welcome-panel {
  padding: clamp(24px, 4vw, 34px);
  font-size: 1.05rem;
  line-height: 1.72;
}

.campus-welcome-panel p {
  max-width: 820px;
  color: var(--regent-muted);
}

.campus-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.campus-highlight-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--regent-soft);
  color: var(--regent-green);
  font-size: 0.88rem;
  font-weight: 900;
}

.campus-highlight-row i {
  color: var(--regent-maroon);
}

.campus-welcome-card {
  overflow: hidden;
}

.campus-welcome-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  background: var(--regent-soft);
}

.campus-welcome-card div {
  padding: 22px;
}

.campus-welcome-card h2 {
  margin: 8px 0 12px;
  color: var(--regent-green);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
}

.campus-welcome-card p {
  margin: 0;
  color: var(--regent-muted);
  line-height: 1.65;
}

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

.campus-support-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.campus-support-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.campus-info-accordion .programme-accordion-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.campus-support-grid > article > i {
  margin-bottom: 18px;
  background: rgba(101, 11, 18, 0.1);
  color: var(--regent-maroon);
  font-size: 1.35rem;
}

.campus-support-grid h3 {
  margin: 0 0 10px;
  color: var(--regent-green);
  font-size: 1.1rem;
  font-weight: 900;
}

.campus-support-grid p {
  color: var(--regent-muted);
  line-height: 1.65;
}

.campus-support-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--regent-maroon);
  font-weight: 900;
  text-decoration: none;
}

.student-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.student-resource-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.student-resource-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.student-resource-grid i:first-child {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.35rem;
}

.student-resource-grid article > span {
  display: block;
  color: var(--regent-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.student-resource-grid h3 {
  margin: 7px 0 10px;
  color: var(--regent-green);
  font-size: 1.18rem;
  font-weight: 900;
}

.student-resource-grid p {
  color: var(--regent-muted);
  line-height: 1.65;
}

.student-resource-grid a,
.student-resource-actions {
  margin-top: auto;
}

.student-resource-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--regent-maroon);
  font-weight: 900;
  text-decoration: none;
}

.student-resource-grid a:hover,
.student-resource-grid a:focus {
  color: var(--regent-green);
}

.student-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.academic-calendar-page .page-hero {
  min-height: min(620px, 68vh);
  display: flex;
  align-items: flex-end;
}

.academic-calendar-page .page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.72;
}

.academic-calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#calendar-entries {
  scroll-margin-top: 142px;
}

#resource-overview {
  scroll-margin-top: 142px;
}

.resource-overview-page .page-hero,
.resource-detail-page .page-hero {
  min-height: min(620px, 68vh);
  display: flex;
  align-items: flex-end;
}

.resource-overview-page .page-hero .lead,
.resource-detail-page .page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.72;
}

.resource-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.resource-overview-band {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.resource-document-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.resource-document-panel,
.resource-action-card {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.resource-document-panel {
  padding: 24px;
}

.resource-document-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
}

.resource-action-card {
  position: sticky;
  top: 132px;
  padding: 24px;
}

.resource-action-card > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.35rem;
}

.resource-action-card > span {
  display: block;
  color: var(--regent-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-action-card h2 {
  margin: 8px 0 10px;
  color: var(--regent-green);
  font-size: 1.28rem;
  font-weight: 900;
}

.resource-action-card p {
  color: var(--regent-muted);
  line-height: 1.65;
}

.resource-action-card .btn {
  margin-top: 10px;
}

.academic-calendar-overview {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, var(--regent-soft) 100%);
}

.academic-calendar-accordion .accordion-button {
  gap: 14px;
}

.academic-calendar-accordion .accordion-button > span:not(.programme-accordion-icon) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.academic-calendar-accordion .accordion-button strong {
  color: var(--regent-green);
  font-size: 1.04rem;
  line-height: 1.2;
}

.academic-calendar-accordion .accordion-button small {
  color: var(--regent-muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.academic-calendar-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(12, 73, 50, 0.1), rgba(199, 155, 59, 0.12));
}

.academic-calendar-accordion .accordion-button:not(.collapsed) .programme-accordion-icon {
  background: var(--regent-green);
  color: #fff;
}

.academic-calendar-content {
  color: var(--regent-muted);
  line-height: 1.72;
  overflow-x: auto;
}

.academic-calendar-content table {
  width: 100%;
  min-width: 680px;
  margin: 14px 0;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.academic-calendar-content th,
.academic-calendar-content td {
  padding: 11px 12px;
  border: 1px solid var(--regent-line);
  vertical-align: top;
}

.academic-calendar-content th {
  color: var(--regent-green);
  font-weight: 900;
}

.campus-info-accordion .accordion-button {
  gap: 14px;
}

.campus-info-accordion .accordion-button > span:not(.programme-accordion-icon) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.campus-info-accordion .accordion-button strong {
  color: var(--regent-green);
  font-size: 1.04rem;
  line-height: 1.2;
}

.campus-info-accordion .accordion-button small {
  color: var(--regent-muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.campus-info-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(12, 73, 50, 0.1), rgba(199, 155, 59, 0.12));
}

.campus-info-accordion .accordion-button:not(.collapsed) .programme-accordion-icon {
  background: var(--regent-green);
  color: #fff;
}

.campus-info-accordion .accordion-body {
  color: var(--regent-muted);
  line-height: 1.7;
}

.campus-info-accordion .accordion-body a:not(.btn) {
  color: var(--regent-maroon);
  font-weight: 900;
}

.campus-account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.campus-account-grid div {
  padding: 16px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  background: var(--regent-soft);
}

.campus-account-grid span,
.campus-account-grid strong,
.campus-account-grid small {
  display: block;
}

.campus-account-grid span {
  color: var(--regent-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campus-account-grid strong {
  margin: 6px 0;
  color: var(--regent-green);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.campus-account-grid small {
  color: var(--regent-muted);
  line-height: 1.45;
}

.campus-step-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.campus-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.campus-step-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--regent-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.campus-step-list p,
.campus-note {
  margin: 0;
}

.campus-note {
  padding: 14px 16px;
  border-left: 4px solid var(--regent-maroon);
  border-radius: 6px;
  background: rgba(101, 11, 18, 0.06);
  color: var(--regent-ink);
}

.campus-check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.15rem;
}

.campus-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.campus-policy-grid article {
  padding: 18px;
}

.campus-policy-grid h3 {
  margin: 0 0 8px;
  color: var(--regent-green);
  font-size: 1rem;
  font-weight: 900;
}

.campus-policy-grid p {
  margin: 0;
}

.campus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campus-gallery-action {
  margin-top: 24px;
  text-align: center;
}

.contact-form-panel .form-label {
  color: var(--regent-green);
  font-weight: 800;
}

.contact-form-panel .form-control {
  min-height: 50px;
  border: 1px solid var(--regent-line);
  border-radius: 6px;
  color: var(--regent-ink);
  box-shadow: none;
}

.contact-form-panel textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-form-panel .form-control:focus {
  border-color: var(--regent-green);
  box-shadow: 0 0 0 0.18rem rgba(12, 73, 50, 0.14);
}

.contact-form-panel .loading,
.contact-form-panel .error-message,
.contact-form-panel .sent-message {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--regent-radius);
  font-weight: 700;
}

.contact-form-panel .loading {
  color: var(--regent-green);
  background: rgba(12, 73, 50, 0.08);
}

.contact-form-panel .error-message {
  color: #fff;
  background: #b42318;
}

.contact-form-panel .sent-message {
  color: #fff;
  background: var(--regent-green);
}

.contact-map-section {
  background: var(--regent-soft);
}

.contact-map-wrap {
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid var(--regent-line);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
}

.payment-steps,
.policy-block {
  border-left: 4px solid var(--regent-gold);
  padding-left: 20px;
}

.about-overview .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.about-feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--regent-radius);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.value-list li {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  padding: 14px;
  text-align: center;
  font-weight: 800;
  background: var(--regent-soft);
}

.value-list strong {
  display: block;
  color: var(--regent-maroon);
  font-size: 1.6rem;
  line-height: 1;
}

.identity-nav {
  position: sticky;
  top: 101px;
  z-index: 1010;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--regent-line);
  backdrop-filter: blur(12px);
}

.identity-nav .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.identity-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  color: var(--regent-green);
  text-decoration: none;
  font-weight: 900;
}

.identity-nav a:hover,
.identity-nav a:focus {
  color: var(--regent-maroon);
  background: var(--regent-soft);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.purpose-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.purpose-card > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 1.5rem;
}

.purpose-card > span {
  display: block;
  color: var(--regent-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purpose-card h3 {
  margin: 8px 0 12px;
  color: var(--regent-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.purpose-card p {
  color: var(--regent-muted);
  margin-bottom: 0;
}

.ideas-band {
  padding: clamp(54px, 7vw, 86px) 0;
  background: var(--regent-green);
  color: #fff;
}

.ideas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.ideas-layout h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.ideas-layout p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.ideas-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ideas-list li {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--regent-radius);
  background: rgba(255, 255, 255, 0.08);
}

.ideas-list strong {
  color: var(--regent-gold);
  font-size: 3rem;
  line-height: 0.9;
}

.ideas-list span {
  color: #fff;
  font-weight: 900;
}

.logo-story-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.logo-mark-panel,
.logo-tabs-panel {
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.logo-mark-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.logo-mark-panel img {
  width: min(220px, 76%);
  margin: 0 auto 24px;
}

.logo-mark-panel h3 {
  color: var(--regent-green);
  font-weight: 900;
}

.logo-mark-panel p {
  color: var(--regent-muted);
  margin-bottom: 0;
}

.logo-tabs-panel {
  overflow: hidden;
}

.logo-symbol-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--regent-line);
  background: var(--regent-soft);
}

.logo-symbol-nav .nav-link {
  border: 1px solid var(--regent-line);
  border-radius: 999px;
  background: #fff;
  color: var(--regent-green);
  font-weight: 900;
}

.logo-symbol-nav .nav-link.active {
  background: var(--regent-green);
  border-color: var(--regent-green);
  color: #fff;
}

.logo-symbol-content {
  padding: 26px;
}

.logo-symbol-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.logo-symbol-card img {
  width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: var(--regent-soft);
  padding: 16px;
}

.logo-symbol-card h3 {
  margin: 8px 0 12px;
  color: var(--regent-green);
  font-size: 1.55rem;
  font-weight: 900;
}

.logo-symbol-card p {
  color: var(--regent-muted);
}

.logo-symbol-card p:last-child {
  margin-bottom: 0;
}

.logo-accordion {
  max-width: none;
}

.testimonial-heading {
  margin: 8px 0 16px;
  color: var(--regent-green);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-controls .btn {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.testimonial-carousel {
  padding-bottom: 46px;
}

.testimonial-card-modern {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.testimonial-person {
  display: flex;
  gap: 18px;
  align-items: center;
}

.testimonial-person img {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-person h3 {
  margin: 0 0 4px;
  color: var(--regent-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.testimonial-person p {
  margin: 0 0 8px;
  color: var(--regent-muted);
  font-weight: 700;
}

.testimonial-person .stars {
  color: var(--regent-gold);
}

.testimonial-card-modern blockquote {
  position: relative;
  margin: 34px 0 0;
  color: var(--regent-ink);
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 700;
}

.testimonial-card-modern blockquote::before {
  content: "\201C";
  display: block;
  color: rgba(101, 11, 18, 0.18);
  font-size: 5rem;
  line-height: 0.6;
  font-weight: 900;
}

.testimonial-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--regent-green);
}

.academic-message-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.academic-message-copy h2 {
  margin: 8px 0 18px;
  color: var(--regent-green);
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 900;
}

.academic-message-copy p {
  color: var(--regent-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.academic-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.academic-image-stack {
  position: relative;
  min-height: 500px;
}

.academic-image-stack img {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: var(--regent-radius);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.16);
}

.academic-image-stack .stack-back {
  inset: 0 0 auto auto;
  width: 74%;
  height: 72%;
}

.academic-image-stack .stack-front {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 72%;
  object-position: top center;
  background: var(--regent-soft);
  border: 8px solid #fff;
}

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

.faculty-card {
  min-height: 100%;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.faculty-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.faculty-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faculty-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.faculty-card-body span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.faculty-card-body h3 {
  margin: 16px 0 10px;
  color: var(--regent-green);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
}

.faculty-card-body p {
  color: var(--regent-muted);
  margin-bottom: 18px;
}

.faculty-card-body strong {
  margin-top: auto;
  color: var(--regent-maroon);
}

.academic-support-heading {
  margin: 8px 0 16px;
  color: var(--regent-green);
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 900;
}

.academic-support-accordion .accordion-body {
  color: var(--regent-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.academic-profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.academic-profile-panel.no-portrait {
  grid-template-columns: 1fr;
}

.academic-profile-panel.no-portrait .academic-profile-copy {
  max-width: 920px;
}

.academic-profile-copy h2 {
  margin: 8px 0 12px;
  color: var(--regent-green);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.academic-profile-copy p {
  color: var(--regent-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.academic-leader-name {
  color: var(--regent-maroon) !important;
  font-weight: 900;
}

.academic-profile-portrait {
  position: relative;
  padding: 14px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.academic-profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: var(--regent-soft);
}

.academic-profile-portrait span {
  display: block;
  margin-top: 12px;
  color: var(--regent-green);
  font-weight: 900;
  text-align: center;
}

.academic-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.academic-overview-copy,
.academic-highlight-list {
  padding: 28px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.academic-overview-copy p {
  color: var(--regent-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.academic-overview-copy p:last-child {
  margin-bottom: 0;
}

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

.academic-highlight-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--regent-line);
}

.academic-highlight-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.academic-highlight-list i {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
}

.academic-highlight-list span {
  color: var(--regent-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.academic-highlight-list strong {
  color: var(--regent-green);
  font-weight: 900;
}

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

.academic-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.academic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(12, 73, 50, 0.13);
}

.academic-card > img {
  width: 190px;
  min-height: 100%;
  object-fit: cover;
}

.academic-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.academic-card-body span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 73, 50, 0.1);
  color: var(--regent-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.academic-card-body h3 {
  margin: 14px 0 10px;
  color: var(--regent-green);
  font-size: 1.22rem;
  font-weight: 900;
}

.academic-card-body p {
  color: var(--regent-muted);
}

.academic-card-body a {
  margin-top: auto;
}

.academic-cta-band {
  padding: clamp(46px, 6vw, 76px) 0;
  background: var(--regent-green);
  color: #fff;
}

.academic-cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.academic-cta-band h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
}

.academic-cta-band p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-grid-item[hidden] {
  display: none !important;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--regent-radius);
  background: var(--regent-green);
  color: #fff;
  min-height: 260px;
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-card:hover img,
.gallery-card:focus img {
  transform: scale(1.04);
  opacity: 0.82;
}

.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(5, 35, 25, 0.88), rgba(5, 35, 25, 0));
}

.gallery-card-overlay strong,
.gallery-card-overlay small {
  display: block;
  color: #fff;
}

.gallery-card-overlay strong {
  font-weight: 900;
}

.gallery-card-overlay small {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-card-overlay i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.news-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-detail-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--regent-radius);
  background: var(--regent-green);
}

.news-detail-gallery-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-detail-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.news-detail-gallery-item:hover img,
.news-detail-gallery-item:focus img {
  transform: scale(1.04);
  opacity: 0.9;
}

.news-detail-sidebar {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.news-detail-sidebar-header {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--regent-line);
}

.news-detail-sidebar-header h2 {
  margin: 6px 0 0;
  color: var(--regent-green);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.news-sidebar-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--regent-ink);
  text-decoration: none;
}

.news-sidebar-item img {
  width: 92px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.news-sidebar-item small,
.news-sidebar-item strong {
  display: block;
}

.news-sidebar-item small {
  color: var(--regent-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.news-sidebar-item strong {
  margin-top: 4px;
  color: var(--regent-ink);
  font-size: 0.95rem;
  line-height: 1.28;
  font-weight: 900;
}

.news-sidebar-item:hover strong,
.news-sidebar-item:focus strong {
  color: var(--regent-maroon);
}

.principal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principal-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 73, 50, 0.08);
}

.principal-card > img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: top center;
  background: var(--regent-soft);
}

.principal-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.principal-card-body span {
  color: var(--regent-maroon);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.principal-card-body h2 {
  margin: 8px 0 10px;
  color: var(--regent-green);
  font-size: 1.32rem;
  font-weight: 900;
}

.principal-card-body p {
  color: var(--regent-muted);
}

.principal-card-body .btn {
  margin-top: auto;
}

.principal-modal .modal-content {
  border: 0;
  border-radius: var(--regent-radius);
  overflow: hidden;
}

.principal-modal .modal-header {
  align-items: flex-start;
  padding: 22px 26px;
  border-bottom: 1px solid var(--regent-line);
}

.principal-modal .modal-title {
  margin: 5px 0 0;
  color: var(--regent-green);
  font-weight: 900;
}

.principal-modal .modal-body {
  padding: 0;
}

.principal-modal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 560px;
}

.principal-modal-layout aside {
  padding: 26px;
  background: var(--regent-soft);
  border-right: 1px solid var(--regent-line);
}

.principal-modal-layout aside img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--regent-radius);
  background: #fff;
}

.principal-modal-layout aside h3 {
  margin: 18px 0 6px;
  color: var(--regent-green);
  font-size: 1.25rem;
  font-weight: 900;
}

.principal-modal-layout aside p {
  margin: 0;
  color: var(--regent-muted);
  font-weight: 800;
}

.principal-modal-content {
  max-width: none;
  padding: 28px;
}

.principal-modal-content h3:first-child {
  margin-top: 0;
}

.course-outline-detail {
  max-width: 100%;
}

.course-outline-tabs {
  display: grid;
  gap: 18px;
}

.course-outline-tablist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: var(--regent-soft);
}

.course-outline-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #fff;
  color: var(--regent-green);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.course-outline-tab span {
  overflow-wrap: anywhere;
}

.course-outline-tab:hover,
.course-outline-tab:focus,
.course-outline-tab.active {
  border-color: var(--regent-green);
  background: var(--regent-green);
  color: #fff;
}

.course-outline-tab:hover,
.course-outline-tab:focus {
  transform: translateY(-1px);
}

.course-outline-tab:focus-visible {
  outline: 3px solid rgba(199, 155, 59, 0.42);
  outline-offset: 2px;
}

.course-outline-panels {
  min-width: 0;
}

.course-outline-pane {
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
  overflow: hidden;
}

.course-outline-pane[hidden] {
  display: none;
}

.course-outline-pane .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 390px), 1fr));
  gap: 18px;
  margin: 0;
}

.course-outline-pane .row > * {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.course-outline-pane h3,
.course-outline-pane h4 {
  margin: 0 0 12px;
  color: var(--regent-green);
  font-size: 1.02rem;
  font-weight: 900;
}

.course-outline-pane table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.course-outline-pane table th,
.course-outline-pane table td {
  overflow-wrap: anywhere;
  word-break: normal;
}

.course-outline-pane table th:first-child,
.course-outline-pane table td:first-child {
  width: 28%;
}

.course-outline-pane table th:last-child,
.course-outline-pane table td:last-child {
  width: 16%;
  text-align: center;
}

.course-outline-detail section {
  padding: 0;
  background: transparent;
}

.course-outline-detail .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.course-outline-detail .faq-container,
.course-outline-detail .faq-item {
  display: grid;
  gap: 18px;
}

.course-outline-detail .faq-item {
  padding: 20px;
  border: 1px solid var(--regent-line);
  border-radius: var(--regent-radius);
  background: #fff;
}

.course-outline-detail .faq-content {
  display: block !important;
  overflow: visible !important;
  max-height: none !important;
}

.course-outline-detail .faq-toggle {
  display: none;
}

.course-outline-detail table,
.fee-detail table {
  width: 100%;
  margin: 14px 0 20px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.course-outline-detail table td,
.course-outline-detail table th,
.fee-detail table td,
.fee-detail table th {
  padding: 10px 12px;
  border: 1px solid var(--regent-line);
  vertical-align: top;
}

.course-outline-detail table thead,
.fee-detail table thead {
  background: rgba(12, 73, 50, 0.08);
}

.course-outline-detail .legacy-course-outline ul {
  padding-left: 0;
}

.course-outline-detail .legacy-course-outline li {
  list-style: none;
}

.site-footer {
  background: #092f23;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.footer-heading {
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  margin-right: 8px;
}

.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1199px) {
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .logo-story-shell {
    grid-template-columns: 1fr;
  }

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

  .fee-highlight-grid,
  .payment-grid,
  .programme-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academic-profile-panel,
  .academic-overview-grid {
    grid-template-columns: 1fr;
  }

  .programme-layout {
    grid-template-columns: 1fr;
  }

  .programme-search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programme-search-field {
    grid-column: 1 / -1;
  }

  .programme-filter-actions {
    grid-column: 1 / -1;
  }

  .programme-sidebar {
    position: static;
  }

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

  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--regent-line);
    padding: 12px 24px 24px;
  }

  .site-nav .navbar-nav {
    gap: 0;
  }

  .site-nav .nav-link {
    padding: 12px 0;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .quick-action-grid,
  .feature-split,
  .info-card-grid,
  .contact-card-grid,
  .purpose-grid,
  .ideas-layout,
  .academic-message-panel,
  .faculty-grid,
  .fee-highlight-grid,
  .payment-grid,
  .payment-instructions,
  .academic-card-grid,
  .programme-summary-grid,
  .featured-story,
  .newsroom-masthead-grid,
  .newsroom-top-grid,
  .newsroom-feed-layout,
  .event-agenda-layout,
  .admissions-overview-grid,
  .admissions-process-layout,
  .admissions-document-grid,
  .campus-overview-grid,
  .campus-support-grid,
  .student-resource-grid,
  .resource-document-layout,
  .campus-account-grid,
  .campus-gallery-grid,
  .principal-grid {
    grid-template-columns: 1fr;
  }

  .newsroom-topic-nav {
    position: static;
  }

  .newsroom-sidebar {
    position: static;
  }

  .news-feed-item a {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .news-feed-item img {
    width: 160px;
  }

  .event-lead > img {
    aspect-ratio: 16 / 9;
  }

  .academic-image-stack {
    min-height: 420px;
  }

  .identity-nav {
    position: static;
  }

  .resource-action-card {
    position: static;
  }

  .ideas-list {
    grid-template-columns: repeat(5, minmax(104px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .logo-symbol-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .logo-symbol-card img {
    width: 110px;
  }

  .testimonial-card-modern {
    min-height: 0;
  }

  .principal-modal-layout {
    grid-template-columns: 1fr;
  }

  .principal-modal-layout aside {
    border-right: 0;
    border-bottom: 1px solid var(--regent-line);
  }

  .principal-modal-layout aside img {
    max-width: 280px;
  }

  .quick-actions {
    margin-top: 0;
  }

  .quick-action {
    border-right: 0;
    border-bottom: 1px solid var(--regent-line);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .programme-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-modern h1 {
    font-size: 3.6rem;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .programme-hero-content h1 {
    font-size: 3rem;
  }

  .programme-section-heading h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup img {
    width: 46px;
    height: 46px;
  }

  .brand-lockup strong {
    font-size: 0.9rem;
  }

  .brand-lockup span,
  .top-strip {
    display: none;
  }

  .hero-modern h1 {
    font-size: 2.6rem;
  }

  .hero-modern p {
    font-size: 1rem;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .programme-prospectus-hero {
    min-height: 560px;
    padding: 72px 0 46px;
  }

  .programme-hero-content h1 {
    font-size: 2.35rem;
  }

  .programme-hero-content p,
  .programmes-page .page-hero .lead {
    font-size: 1rem;
  }

  .programme-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .programme-search-panel {
    grid-template-columns: 1fr;
  }

  .programme-search-field,
  .programme-filter-actions {
    grid-column: auto;
  }

  .programme-filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admissions-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .campus-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .academic-calendar-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .programme-section-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

  .programme-section-tabs button {
    width: 100%;
  }

  .programme-accordion .accordion-button {
    align-items: flex-start;
  }

  .programme-accordion .accordion-button::after {
    width: 28px;
    height: 28px;
    background-size: 13px;
  }

  .contact-tabs,
  .contact-form-panel {
    padding: 20px;
  }

  .resource-document-panel,
  .resource-action-card {
    padding: 20px;
  }

  .resource-document-frame {
    min-height: 520px;
  }

  .resource-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-hero-actions .btn {
    justify-content: center;
    width: 100%;
    white-space: normal;
  }

  .contact-pill-nav {
    grid-template-columns: 1fr;
  }

  .identity-nav .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-nav a {
    min-height: 52px;
  }

  .ideas-layout h2,
  .testimonial-heading,
  .academic-message-copy h2,
  .academic-support-heading,
  .academic-profile-copy h2,
  .academic-cta-band h2,
  .featured-story h2 {
    font-size: 2.2rem;
  }

  .logo-symbol-content {
    padding: 20px;
  }

  .fees-tab-content {
    padding: 18px;
  }

  .logo-symbol-card {
    grid-template-columns: 1fr;
  }

  .logo-symbol-card img {
    width: 104px;
  }

  .testimonial-person {
    align-items: flex-start;
    flex-direction: column;
  }

  .academic-image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .academic-image-stack img,
  .academic-image-stack .stack-back,
  .academic-image-stack .stack-front {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  .academic-card {
    flex-direction: column;
  }

  .academic-card > img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .academic-cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .pagination-regent .pagination {
    justify-content: flex-start !important;
  }

  .pagination-regent .page-nav .page-link {
    min-width: 96px;
  }

  .news-feed-item a,
  .event-agenda-item a,
  .event-lead-body {
    grid-template-columns: 1fr;
  }

  .news-feed-item img {
    width: 100%;
  }

  .campus-policy-grid {
    grid-template-columns: 1fr;
  }

  .detail-accordion .accordion-body,
  .detail-accordion .accordion-button {
    padding: 18px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 220px;
  }

  .news-detail-gallery {
    grid-template-columns: 1fr;
  }

  .news-detail-gallery-item.is-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .news-detail-sidebar {
    position: static;
  }

  .news-sidebar-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .news-sidebar-item img {
    width: 82px;
  }
}
