:root {
  --bg: #f4f7fb;
  --bg-2: #eef3f9;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.86);
  --card: #ffffff;
  --text: rgba(9, 17, 30, 0.94);
  --muted: rgba(9, 17, 30, 0.68);
  --border: rgba(9, 17, 30, 0.12);
  --border-2: rgba(9, 17, 30, 0.08);
  --brand: #80131a;
  --brand-2: #9e202c;
  --shadow: 0 18px 44px rgba(9, 17, 30, 0.10);
  --shadow-2: 0 24px 60px rgba(9, 17, 30, 0.14);
  --radius: 20px;
  --ring: 0 0 0 3px rgba(128, 19, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.62;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1180px, calc(100% - 1.6rem));
  margin-inline: auto;
  padding-inline: 0.75rem;
}

.section .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.section .row.g-3 {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.section .row.g-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.section .row.g-5 {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  transform: translateY(-200%);
  transition: transform 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--ring);
}

.topbar {
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar__inner {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.topbar__link {
  font-weight: 600;
  color: #ffffff;
}

.topbar__sep {
  opacity: 0.6;
  color: #ffffff;
}

.topbar__note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(9, 17, 30, 0.04);
}

.header__inner {
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

.brand__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  margin: 0;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 160ms ease, width 160ms ease;
}

.site-header[data-open="true"] .nav-toggle {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header[data-open="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-open="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-header[data-open="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-nav__link {
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 650;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.site-nav__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
}

.site-nav__link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.site-nav__cta {
  background: transparent;
  color: #ffffff;
  border: 1px solid transparent;
}

.section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
}

.section__head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.section__sub {
  max-width: 70ch;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--brand);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.h3 {
  font-size: 1.25rem;
  color: var(--brand);
}

p {
  margin: 0.6rem 0 0;
  color: rgba(11, 18, 32, 0.86);
}

.muted {
  color: var(--muted);
}

.mt-24 {
  margin-top: 1.5rem;
}

.grid:not(.row) {
  display: grid;
  gap: 1.5rem;
}

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

.grid--3:not(.row) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4:not(.row) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.90));
  border: none;
  box-shadow: none;
  padding: 1.35rem 1.25rem;
  transition: transform 180ms ease;
}

a.card {
  display: block;
}

a.card:hover {
  text-decoration: none;
  transform: translateY(-4px);
}

.card--accent {
  background: linear-gradient(135deg, rgba(128, 19, 26, 0.06), rgba(128, 19, 26, 0.10));
  border: none;
}

.divider {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  color: rgba(11, 18, 32, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0;
}

.lead {
  font-size: 1.14rem;
  color: rgba(11, 18, 32, 0.84);
  margin-top: 0.9rem;
  max-width: 70ch;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(1.6rem, 3vw, 2.6rem);
}

.page-hero:not(.row) {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(128, 19, 26, 0.08), rgba(128, 19, 26, 0.03));
  border: 1px solid rgba(128, 19, 26, 0.12);
}

.page-hero__content {
  min-width: 0;
}

.page-hero__side {
  min-width: 0;
}

.hero__inner:not(.row) {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  padding: clamp(0.25rem, 1vw, 0.5rem) 0;
}

.hero__content::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 0.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(128, 19, 26, 0.95), rgba(128, 19, 26, 0.72));
}

.hero__visual {
  display: grid;
  gap: 1.25rem;
}

.hero__actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.85);
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.07);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  background: linear-gradient(135deg, #80131a, #a3212d);
  color: #ffffff;
  border: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
}

.btn__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
}

.hero__meta:not(.row) {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 560px;
}

.meta-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0.75rem 0.8rem;
}

.meta-card__title {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 650;
}

.meta-card__value {
  margin-top: 0.15rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.hero-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: none;
  padding: 1.25rem 1.2rem;
  box-shadow: none;
}

.hero-card__title {
  font-weight: 850;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.checklist,
.bullets {
  margin: 0.65rem 0 0;
  padding-left: 1.05rem;
  color: rgba(11, 18, 32, 0.86);
}

.checklist li,
.bullets li {
  margin: 0.35rem 0;
}

.checklist li::marker {
  color: var(--brand);
}

.steps {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}

.steps li {
  margin: 0.45rem 0;
}

.callout,
.footer-callout {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(128, 19, 26, 0.06), rgba(128, 19, 26, 0.10));
  border: 1px solid rgba(128, 19, 26, 0.18);
}

.facility__img {
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: rgba(11, 18, 32, 0.03);
  margin-bottom: 0.75rem;
}

.gallery:not(.row) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.about-gallery:not(.row) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery__item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

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


.gallery__item figcaption {
  padding: 0.65rem 0.8rem;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.86);
  text-align: center;
  line-height: 1.25;
  word-break: break-word;
}

.home-gallery:not(.row) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.home-gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.home-gallery__item:nth-child(1) img {
  aspect-ratio: auto;
  height: 100%;
}

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

.contact-gallery .gallery__item img {
  aspect-ratio: 16 / 6;
}

.people-grid:not(.row) {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.person-card {
  padding: 0;
  overflow: hidden;
  display: grid;
}

.person-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(128, 19, 26, 0.06);
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card__body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.person-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(128, 19, 26, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-card__name {
  font-size: 1.08rem;
  font-weight: 850;
  color: var(--brand);
  line-height: 1.2;
}

.person-card__role {
  font-weight: 750;
  color: rgba(9, 17, 30, 0.9);
}

.person-card__dept {
  color: var(--muted);
  font-size: 0.95rem;
}

.events-grid:not(.row) {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
  padding: 0;
  overflow: hidden;
  display: grid;
}

.event-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(128, 19, 26, 0.06);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.event-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(128, 19, 26, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card__date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.event-card__title {
  font-size: 1.08rem;
  font-weight: 850;
  color: var(--brand);
  line-height: 1.2;
}

.event-card__text {
  color: var(--muted);
}

.achievement-grid:not(.row) {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.achievement-card {
  padding: 1.1rem 1rem;
  display: grid;
  gap: 0.45rem;
}

.achievement-card__icon {
  width: 56px;
  height: 56px;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(128, 19, 26, 0.08);
  border: 1px solid rgba(128, 19, 26, 0.16);
}

.achievement-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.achievement-card__title {
  font-size: 1.02rem;
  font-weight: 850;
  color: var(--brand);
}

.achievement-card__text {
  color: var(--muted);
}

.hero-visual__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 138px);
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-visual__tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.hero-visual__tile--tall {
  grid-row: span 2;
}

.hero-visual__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.contact-item__label {
  font-weight: 800;
  color: var(--brand);
}

.contact-item__value {
  margin-top: 0.25rem;
  color: var(--text);
}

.map-card__title {
  font-weight: 850;
}

.form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field__label {
  font-weight: 750;
  color: var(--brand);
}

input:not(.form-control),
textarea:not(.form-control) {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 0.8rem;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:not(.form-control):focus-visible,
textarea:not(.form-control):focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.site-footer {
  border-top: none;
  background: var(--brand);
  padding: 1.35rem 0 0;
  color: #ffffff;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.1rem;
}

.footer__brand {
  font-weight: 900;
}

.footer__small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__right {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer__right a {
  padding: 0.35rem 0.45rem;
  border-radius: 10px;
  color: #ffffff;
}

.footer__right a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0;
}

.footer__credit {
  padding: 0.7rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.footer__credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer__credit a:hover {
  opacity: 0.92;
  text-decoration: none;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  background-image: url("../img/hero-pattern.svg");
  background-size: 800px 800px;
  opacity: 0.32;
  filter: saturate(1.2);
  pointer-events: none;
  z-index: 0;
}

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

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

  .hero__inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .home-gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

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

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

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

  .page-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar__right {
    display: none;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

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

  .about-gallery {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

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

  .home-gallery__item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__meta:not(.row) {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    min-width: 240px;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    border-radius: 16px;
    background: var(--brand);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-2);
  }

  .site-header[data-open="true"] .site-nav {
    display: flex !important;
  }

  .site-nav__link {
    padding: 0.7rem 0.75rem;
  }

  .callout,
  .footer-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    background: var(--brand);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Beautiful specialized styling for Academics and Admissions */

.timeline {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0.5rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, rgba(128, 19, 26, 0.4), rgba(128, 19, 26, 0.05));
  border-radius: 3px;
}
.timeline__item {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.75rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item::before {
  content: "✓"; /* Default fallback */
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(128, 19, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}
/* Number assignments for timeline */
.timeline__item:nth-child(1)::before { content: "1"; }
.timeline__item:nth-child(2)::before { content: "2"; }
.timeline__item:nth-child(3)::before { content: "3"; }
.timeline__item:nth-child(4)::before { content: "4"; }
.timeline__item:nth-child(5)::before { content: "5"; }

.timeline__title {
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
  margin-top: 1.2rem;
}
.pill-list li {
  background: rgba(128, 19, 26, 0.05);
  color: var(--brand);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(128, 19, 26, 0.15);
  transition: all 200ms ease;
  cursor: default;
}
.pill-list li:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 19, 26, 0.2);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: rgba(11, 18, 32, 0.86);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  color: #fff;
  background: var(--brand);
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(128, 19, 26, 0.25);
}

/* Announcements Styles */
.announcement-card {
  display: flex !important;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 5px solid var(--brand) !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}
.announcement-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 19, 26, 0.12) !important;
}
.announcement-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.announcement-card__date {
  font-weight: 650;
  font-size: 0.85rem;
  color: var(--muted);
}
.announcement-card__badge {
  background: rgba(128, 19, 26, 0.12);
  color: var(--brand);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.announcement-card__title {
  margin: 0;
}
.announcement-card__text {
  margin: 0;
}
