/* Usher site overrides */

.welcome-portrait-wrap .welcome-portrait {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
}

.welcome-portrait__frame {
  position: relative;
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    var(--tg-theme-primary-500) 0%,
    var(--tg-theme-primary-700) 55%,
    var(--tg-theme-secondary-400) 100%
  );
  box-shadow: 0 18px 45px rgba(25, 29, 136, 0.18);
}

.welcome-portrait__mat {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  max-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 100%, var(--tg-theme-primary-50) 0%, #ffffff 70%),
    linear-gradient(180deg, #ffffff 0%, var(--tg-theme-primary-50) 100%);
}

.welcome-portrait__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border: none;
  border-radius: 0;
}

.welcome-portrait--photo .welcome-portrait__img {
  object-fit: cover;
  object-position: center top;
}

.welcome-portrait--photo .welcome-portrait__mat {
  align-items: stretch;
}

.welcome-portrait__accent {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--tg-theme-secondary-300);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(25, 29, 136, 0.12);
  pointer-events: none;
}

.welcome-portrait__accent::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--tg-theme-secondary-400);
}

@media (max-width: 767.98px) {
  .welcome-portrait-wrap .welcome-portrait {
    max-width: 280px;
  }

  .welcome-portrait__mat {
    max-height: 280px;
  }
}

.project-gallery__link {
  display: block;
  cursor: zoom-in;
}

.project-gallery__link img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  object-position: center center;
}

.project-gallery__link:hover img {
  opacity: 0.92;
  transform: scale(1.02);
}

/* News ticker banner */
.news-ticker {
  position: relative;
  z-index: 1;
  background: #0e104b;
  border-bottom: 3px solid var(--tg-theme-secondary-400);
}

/* Keep header dropdown menus above homepage news ticker */
.tg-header__style-two {
  position: relative;
  z-index: 100;
}

.tgmenu__navbar-wrap > ul > li .sub-menu {
  z-index: 110;
}

.news-ticker__bar {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 46px;
  background: #0e104b;
}

.news-ticker__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 46px;
  background: var(--tg-theme-secondary-400);
  color: var(--tg-theme-primary-900);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.news-ticker__label i {
  font-size: 16px;
}

.news-ticker__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.news-ticker__track {
  display: flex;
  width: max-content;
  animation: newsTickerScroll 75s linear infinite;
}

.news-ticker:hover .news-ticker__track,
.news-ticker:focus-within .news-ticker__track {
  animation-play-state: paused;
}

.news-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.news-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-ticker__item:hover {
  color: var(--tg-theme-secondary-200);
}

.news-ticker__tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--tg-theme-secondary-200);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-ticker__sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 22px;
  border-radius: 50%;
  background: var(--tg-theme-secondary-300);
  flex-shrink: 0;
}

.news-ticker__all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 46px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  background: #0b0c39;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease, background 0.2s ease;
}

.news-ticker__all:hover {
  color: var(--tg-theme-secondary-200);
  background: #06042e;
}

.news-ticker__all i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.news-ticker__all:hover i {
  transform: translateX(3px);
}

@keyframes newsTickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .news-ticker__label span {
    display: none;
  }

  .news-ticker__label {
    padding: 0 14px;
  }

  .news-ticker__all {
    padding: 0 12px;
    font-size: 0;
  }

  .news-ticker__all i {
    font-size: 13px;
  }

  .news-ticker__item {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    padding: 8px 12px;
  }

  .news-ticker__group[aria-hidden="true"] {
    display: none;
  }

  .news-ticker__viewport {
    mask-image: none;
  }

  .news-ticker__bar {
    flex-wrap: wrap;
    min-height: auto;
  }

  .news-ticker__item {
    white-space: normal;
  }
}

/* Hero slider — slightly reduced height */
.slider__single {
  min-height: 600px;
  padding: 75px 0;
}

@media (min-width: 992px) {
  .slider__area .slider__content {
    max-width: 540px;
    padding-right: 1rem;
  }
}

@media (max-width: 1500px) {
  .slider__single {
    min-height: 550px;
  }
}

@media (max-width: 991.98px) {
  .slider__single {
    min-height: 460px;
    padding: 60px 0;
  }
}

/* Request / CTA band — fixed parallax bg + balanced height */
.request-cta-banner {
  padding: 150px 0 140px;
  overflow: hidden;
}

/* CMS heading must stay visible — theme SplitText can leave chars at opacity:0 */
.request-cta-banner .request-content .title,
.request-cta-banner .request-content .title * {
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff !important;
}

@media (max-width: 1500px) {
  .request-cta-banner {
    padding: 130px 0 120px;
  }
}

@media (max-width: 991.98px) {
  .request-cta-banner {
    padding: 110px 0;
  }
}

@media (max-width: 767.98px) {
  .request-cta-banner {
    padding: 100px 0;
  }
}

.request-cta-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0b0c39;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.request-cta-banner .container {
  position: relative;
  z-index: 2;
}

.request-cta-banner .request-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.request-cta-banner .request-shape img {
  z-index: 1;
}

/* Academics CTA banner */
.usher-academics-cta {
  padding: 120px 0 110px;
}

.usher-academics-cta__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--tg-theme-secondary-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.usher-academics-cta__text {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}

.usher-academics-cta__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.usher-academics-cta__tags li {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.usher-academics-cta__actions {
  flex-wrap: wrap;
  gap: 16px 24px;
}

.usher-academics-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.usher-academics-cta__link:hover {
  color: var(--tg-theme-secondary-300);
  gap: 10px;
}

@media (max-width: 767.98px) {
  .usher-academics-cta {
    padding: 100px 0 90px;
  }

  .usher-academics-cta__text {
    font-size: 16px;
  }
}

/* Side CTAs — Usher Memories & WhatsApp bot */
.usher-side-ctas {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100vw - 16px);
}

.alumni-side-cta,
.whatsapp-side-cta {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.alumni-side-cta.is-open .alumni-side-cta__tab {
  border-radius: 0 12px 0 0;
}

.alumni-side-cta__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 46px;
  padding: 16px 10px;
  border: none;
  border-radius: 0 12px 12px 0;
  background: var(--tg-theme-secondary-400);
  color: var(--tg-theme-primary-900);
  box-shadow: 4px 0 24px rgba(25, 29, 136, 0.18);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.alumni-side-cta__tab:hover {
  filter: brightness(1.05);
}

.alumni-side-cta__tab i {
  font-size: 18px;
}

.alumni-side-cta__tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.alumni-side-cta__panel {
  width: 300px;
  max-width: calc(100vw - 62px);
  padding: 22px 20px 20px;
  background: #ffffff;
  border-radius: 0 14px 14px 0;
  box-shadow: 8px 0 40px rgba(25, 29, 136, 0.16);
  border: 1px solid var(--tg-theme-primary-50);
  border-left: 4px solid var(--tg-theme-primary-500);
}

.alumni-side-cta__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--tg-theme-primary-50);
  color: var(--tg-theme-primary-700);
  cursor: pointer;
  line-height: 1;
}

.alumni-side-cta__close:hover {
  background: var(--tg-theme-primary-100);
}

.alumni-side-cta__panel {
  position: relative;
}

.alumni-side-cta__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tg-theme-secondary-500);
}

.alumni-side-cta__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--tg-theme-primary-700);
}

.alumni-side-cta__text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #5c5c7a;
}

.alumni-side-cta__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.alumni-side-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--tg-heading-color);
}

.alumni-side-cta__list li i {
  margin-top: 3px;
  color: var(--tg-theme-primary-500);
  flex-shrink: 0;
}

.alumni-side-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.alumni-side-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tg-theme-primary-500);
  text-decoration: none;
}

.alumni-side-cta__link:hover {
  color: var(--tg-theme-secondary-500);
}

.alumni-side-cta__link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.alumni-side-cta__link:hover i {
  transform: translateX(3px);
}

.page-memories .alumni-side-cta {
  display: none;
}

/* WhatsApp side CTA */
.whatsapp-side-cta.is-open .whatsapp-side-cta__tab {
  border-radius: 0 12px 0 0;
}

.whatsapp-side-cta__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 46px;
  padding: 16px 10px;
  border: none;
  border-radius: 0 12px 12px 0;
  background: #25d366;
  color: #ffffff;
  box-shadow: 4px 0 24px rgba(18, 140, 126, 0.28);
  cursor: pointer;
  transition: filter 0.2s ease;
}

.whatsapp-side-cta__tab:hover {
  filter: brightness(1.06);
}

.whatsapp-side-cta__tab i {
  font-size: 20px;
}

.whatsapp-side-cta__tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.whatsapp-side-cta__panel {
  position: relative;
  width: 320px;
  max-width: calc(100vw - 62px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 22px 20px 20px;
  background: #ffffff;
  border-radius: 0 14px 14px 0;
  box-shadow: 8px 0 40px rgba(18, 140, 126, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-left: 4px solid #25d366;
}

.whatsapp-side-cta__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e8faf0;
  color: #128c7e;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-side-cta__close:hover {
  background: #d4f5e3;
}

.whatsapp-side-cta__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #128c7e;
}

.whatsapp-side-cta__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--tg-theme-primary-700);
}

.whatsapp-side-cta__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #5c5c7a;
}

.whatsapp-side-cta__subtitle {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #075e54;
}

.whatsapp-side-cta__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.whatsapp-side-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--tg-heading-color);
}

.whatsapp-side-cta__list li i {
  margin-top: 2px;
  color: #25d366;
  font-size: 11px;
  flex-shrink: 0;
}

.whatsapp-side-cta__steps {
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--tg-heading-color);
}

.whatsapp-side-cta__steps li {
  margin-bottom: 8px;
}

.whatsapp-side-cta__steps ul {
  margin: 6px 0 0;
  padding-left: 16px;
}

.whatsapp-side-cta__steps ul li {
  margin-bottom: 4px;
  list-style: disc;
}

.whatsapp-side-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  border: none;
}

.whatsapp-side-cta__btn:hover {
  background: #128c7e;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .usher-side-ctas {
    top: auto;
    bottom: 72px;
    transform: none;
  }

  .alumni-side-cta {
    top: auto;
    bottom: auto;
    transform: none;
  }

  .alumni-side-cta__tab {
    width: auto;
    flex-direction: row;
    padding: 12px 14px;
    border-radius: 0 10px 10px 0;
  }

  .alumni-side-cta__tab-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 11px;
  }

  .alumni-side-cta__panel {
    width: min(290px, calc(100vw - 56px));
  }

  .whatsapp-side-cta__tab {
    width: auto;
    flex-direction: row;
    padding: 12px 14px;
    border-radius: 0 10px 10px 0;
  }

  .whatsapp-side-cta__tab-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 11px;
  }

  .whatsapp-side-cta__panel {
    width: min(300px, calc(100vw - 56px));
    max-height: min(70vh, 520px);
  }
}

/* Memories page */
.memories-hero {
  padding: 110px 0 90px;
  position: relative;
  background: var(--tg-theme-primary-700);
  overflow: hidden;
}

.memories-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/usher-old-pictures-1.jpg") center / cover no-repeat;
  opacity: 0.22;
}

.memories-hero .container {
  position: relative;
  z-index: 1;
}

.memories-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.memories-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 0;
}

.memories-feature {
  padding: 90px 0 60px;
}

.memories-feature__card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--tg-theme-primary-50);
  box-shadow: 0 12px 40px rgba(25, 29, 136, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.memories-feature__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(25, 29, 136, 0.1);
}

.memories-feature__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--tg-theme-primary-50);
  color: var(--tg-theme-primary-500);
  font-size: 22px;
}

.memories-feature__card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.memories-feed {
  padding: 0 0 90px;
}

.memories-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--tg-theme-primary-50);
  box-shadow: 0 8px 30px rgba(25, 29, 136, 0.06);
  height: 100%;
}

.memories-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.memories-card__body {
  padding: 22px;
}

.memories-card__meta {
  font-size: 12px;
  color: var(--tg-theme-secondary-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.memories-card__body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.memories-card__body p {
  font-size: 16px;
  margin-bottom: 14px;
}

.memories-card__comments {
  font-size: 13px;
  color: #6b6b8a;
}

.memories-share {
  padding: 90px 0;
  background: var(--tg-theme-primary-50);
}

.memories-share__box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(25, 29, 136, 0.08);
}

.memories-share__box .form-control {
  margin-bottom: 16px;
}

.memories-page-nav {
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid var(--tg-theme-primary-50);
  position: sticky;
  top: 0;
  z-index: 50;
}

.memories-page-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.memories-page-nav img {
  height: 48px;
  width: auto;
}

.memories-page-nav a.back-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--tg-theme-primary-500);
  text-decoration: none;
}

.memories-page-nav a.back-link:hover {
  color: var(--tg-theme-secondary-500);
}

/* Academics / Clubs / Sports pillar cards */
.usher-pillars-section {
  background: #f4f5f8;
}

.usher-pillars-section__container {
  max-width: 1620px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .usher-pillars-section__container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.usher-pillar-cards {
  --bs-gutter-x: 1.65rem;
}

.usher-pillar-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.usher-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(25, 29, 136, 0.18);
}

.usher-pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 57, 0.1) 0%,
    rgba(11, 12, 57, 0.35) 45%,
    rgba(11, 12, 57, 0.78) 100%
  );
  transition: opacity 0.35s ease;
}

.usher-pillar-card:hover .usher-pillar-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(11, 12, 57, 0.15) 0%,
    rgba(11, 12, 57, 0.45) 45%,
    rgba(11, 12, 57, 0.88) 100%
  );
}

.usher-pillar-card__content {
  position: relative;
  z-index: 1;
  padding: 32px 30px;
  text-align: left;
}

.usher-pillar-card__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  font-family: var(--tg-heading-font-family);
}

.usher-pillar-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 95%;
}

@media (max-width: 991.98px) {
  .usher-pillar-card__content {
    padding: 22px 20px;
  }

  .usher-pillar-card__text {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .usher-pillar-cards .col-md-6:last-child {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Latest news & school calendar CTA cards */
.usher-dual-cta__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  padding: 24px 22px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.usher-dual-cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(25, 29, 136, 0.18);
}

.usher-dual-cta__icon--whatsapp {
  background: #ffffff;
  color: #25d366;
}

.usher-dual-cta__card--whatsapp {
  background: #128c7e;
}

.usher-dual-cta__card--whatsapp .usher-dual-cta__overlay {
  background: rgba(7, 94, 84, 0.72);
}

.usher-dual-cta__card--whatsapp:hover .usher-dual-cta__overlay {
  background: rgba(7, 94, 84, 0.82);
}

.usher-dual-cta__brand-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.usher-dual-cta__brand-logo i {
  font-size: clamp(88px, 12vw, 130px);
  color: rgba(255, 255, 255, 0.18);
}

.usher-dual-cta__card--whatsapp .usher-dual-cta__action {
  background: #ffffff;
  color: #075e54;
}

.usher-dual-cta__card--whatsapp:hover .usher-dual-cta__action {
  background: #f0fff8;
}

.usher-dual-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(11, 12, 57, 0.55) 0%,
    rgba(25, 29, 136, 0.5) 50%,
    rgba(11, 12, 57, 0.82) 100%
  );
  transition: opacity 0.35s ease;
}

.usher-dual-cta__card:hover .usher-dual-cta__overlay {
  background: linear-gradient(
    145deg,
    rgba(11, 12, 57, 0.65) 0%,
    rgba(25, 29, 136, 0.58) 50%,
    rgba(11, 12, 57, 0.9) 100%
  );
}

.usher-dual-cta__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.usher-dual-cta__card--memories {
  background: #1c1c28 url("../img/usher-memory-01.png") center top / cover no-repeat;
}

.usher-dual-cta__card--memories .usher-dual-cta__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.usher-dual-cta__card--memories .usher-dual-cta__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.usher-dual-cta__card--memories .usher-dual-cta__slide:nth-child(1) {
  animation-name: usherMemoryFadeA;
  animation-fill-mode: both;
}

.usher-dual-cta__card--memories .usher-dual-cta__slide:nth-child(2) {
  animation-name: usherMemoryFadeB;
  animation-fill-mode: both;
}

@keyframes usherMemoryFadeA {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  48%,
  92% {
    opacity: 0;
    transform: scale(1.04);
  }
  98%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes usherMemoryFadeB {
  0%,
  42% {
    opacity: 0;
    transform: scale(1.04);
  }
  48%,
  92% {
    opacity: 1;
    transform: scale(1);
  }
  98%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.usher-dual-cta__card--memories:hover .usher-dual-cta__slide {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .usher-dual-cta__card--memories .usher-dual-cta__slide {
    animation: none;
    opacity: 0;
  }

  .usher-dual-cta__card--memories .usher-dual-cta__slide:first-child {
    opacity: 1;
    transform: none;
  }
}

.usher-dual-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--tg-theme-secondary-400);
  color: var(--tg-theme-primary-900);
  font-size: 18px;
}

.usher-dual-cta__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tg-theme-secondary-200);
}

.usher-dual-cta__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--tg-heading-font-family);
}

.usher-dual-cta__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.usher-dual-cta__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 5px;
  background: var(--tg-theme-secondary-400);
  color: var(--tg-theme-primary-900);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.usher-dual-cta__card:hover .usher-dual-cta__action {
  background: var(--tg-theme-secondary-300);
}

.usher-dual-cta__action i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.usher-dual-cta__card:hover .usher-dual-cta__action i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .usher-dual-cta__card {
    min-height: 220px;
    padding: 20px 18px;
  }

  .usher-dual-cta__brand-logo {
    right: 12px;
  }

  .usher-dual-cta__brand-logo i {
    font-size: 72px;
  }
}

/* Press / featured coverage cards */
.usher-press-section.blog__post-bg-two {
  padding-top: 80px;
}

.usher-press-section .section-title p {
  color: #6b6b8a;
  font-size: 16px;
  line-height: 1.6;
}

.usher-press-card .blog__post-tag-two {
  cursor: default;
  pointer-events: none;
}

.usher-press-card__excerpt {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b8a;
}

.usher-press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--tg-theme-primary-500);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.usher-press-card__link:hover {
  color: var(--tg-theme-secondary-500);
  gap: 8px;
}

.usher-press-card__link i {
  font-size: 12px;
}

.usher-press-card .blog__post-content-two .title {
  font-size: 22px;
  line-height: 1.35;
}

.usher-press-card .blog__post-content-two .title a {
  text-decoration: none;
}

.usher-press-card .blog__post-content-two .title a:hover {
  color: var(--tg-theme-primary-500);
}

/* Homepage stats — milestone rail */
.usher-stats {
  background: #f4f5f8;
}

.usher-stats__rail {
  position: relative;
  padding: 12px 0 8px;
}

.usher-stats__track {
  position: absolute;
  top: 64px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(247, 164, 0, 0) 0%,
    rgba(247, 164, 0, 0.55) 12%,
    rgba(247, 164, 0, 0.55) 88%,
    rgba(247, 164, 0, 0) 100%
  );
  z-index: 0;
}

.usher-stats__nodes {
  --bs-gutter-y: 2rem;
  position: relative;
  z-index: 1;
}

.usher-stats__node {
  text-align: center;
}

.usher-stats__node-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 118px;
  width: auto;
  max-width: 148px;
  min-height: 118px;
  height: auto;
  aspect-ratio: 1;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(42, 1, 123, 0.12);
  box-shadow: 0 10px 28px rgba(42, 1, 123, 0.08);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #2a017b;
  font-family: var(--tg-heading-font-family);
  white-space: nowrap;
  overflow: visible;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.usher-stats__node-value--compact {
  min-width: 126px;
  min-height: 126px;
  max-width: 152px;
  padding: 12px 10px;
  font-size: clamp(12px, 1.05vw, 16px);
  letter-spacing: -0.04em;
}

.usher-stats__node:hover .usher-stats__node-value {
  transform: translateY(-4px);
  border-color: rgba(42, 1, 123, 0.28);
  box-shadow: 0 16px 36px rgba(42, 1, 123, 0.12);
}

.usher-stats__node--gold .usher-stats__node-value {
  min-width: 132px;
  min-height: 132px;
  max-width: 156px;
  padding: 12px 10px;
  border-color: var(--tg-theme-secondary-400);
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  color: var(--tg-theme-secondary-700);
  box-shadow: 0 12px 32px rgba(247, 164, 0, 0.18);
  font-size: clamp(13px, 1.15vw, 17px);
}

.usher-stats__node--gold .usher-stats__node-value--compact {
  min-width: 136px;
  min-height: 136px;
  max-width: 160px;
  font-size: clamp(12px, 1vw, 16px);
}

.usher-stats__decimal {
  letter-spacing: 0;
}

.usher-stats__node-label {
  display: block;
  max-width: 130px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #6b6b8a;
}

@media (max-width: 991.98px) {
  .usher-stats__track {
    display: none;
  }

  .usher-stats__node-value {
    min-width: 104px;
    min-height: 104px;
    max-width: 120px;
    font-size: 14px;
    padding: 10px 8px;
  }

  .usher-stats__node-value--compact {
    min-width: 110px;
    min-height: 110px;
    max-width: 124px;
    font-size: 12px;
  }

  .usher-stats__node--gold .usher-stats__node-value {
    min-width: 112px;
    min-height: 112px;
    max-width: 128px;
    font-size: 13px;
  }

  .usher-stats__node--gold .usher-stats__node-value--compact {
    min-width: 116px;
    min-height: 116px;
    max-width: 132px;
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .usher-stats {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .usher-stats__nodes {
    --bs-gutter-y: 1.5rem;
  }

  .usher-stats__node-value {
    min-width: 96px;
    min-height: 96px;
    max-width: 112px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .usher-stats__node-value--compact {
    min-width: 100px;
    min-height: 100px;
    max-width: 116px;
    font-size: 11px;
  }

  .usher-stats__node--gold .usher-stats__node-value {
    min-width: 104px;
    min-height: 104px;
    max-width: 118px;
    font-size: 12px;
  }

  .usher-stats__node--gold .usher-stats__node-value--compact {
    min-width: 108px;
    min-height: 108px;
    max-width: 122px;
    font-size: 11px;
  }

  .usher-stats__node-label {
    font-size: 12px;
    max-width: 120px;
  }
}

/* Student testimonials */
.usher-voices {
  background: #ffffff;
}

.usher-voices__slider {
  position: relative;
  padding-bottom: 8px;
}

.usher-voices__slider .swiper-slide {
  display: flex;
  height: auto;
}

.usher-voice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 210px;
  margin: 0;
  padding: 20px 18px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-left: 3px solid var(--tg-theme-secondary-400);
  box-shadow: 0 6px 18px rgba(42, 1, 123, 0.05);
  font: inherit;
  color: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.usher-voice-card:hover {
  border-color: rgba(42, 1, 123, 0.16);
  box-shadow: 0 12px 28px rgba(42, 1, 123, 0.1);
  transform: translateY(-3px);
}

.usher-voice-card:focus-visible {
  outline: 2px solid var(--tg-theme-secondary-400);
  outline-offset: 2px;
}

.usher-voice-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 13px;
}

.usher-voice-card__quote {
  flex: 1;
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a68;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.usher-voice-card__more {
  display: inline-block;
  margin: 10px 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: #2a017b;
}

.usher-voice-card:hover .usher-voice-card__more {
  color: var(--tg-theme-secondary-700);
}

.usher-voice-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-voice-card__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a017b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.usher-voice-card__info strong {
  display: block;
  margin-bottom: 1px;
  font-size: 13px;
  font-weight: 700;
  color: #2a017b;
}

.usher-voice-card__info span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #6b6b8a;
}

.usher-voice-modal .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 1, 123, 0.18);
}

.usher-voice-modal .modal-header {
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-voice-modal__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.usher-voice-modal__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a017b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.usher-voice-modal .modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2a017b;
}

.usher-voice-modal__role {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b6b8a;
}

.usher-voice-modal .modal-body {
  padding: 8px 24px 28px;
}

.usher-voice-modal__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 14px;
}

.usher-voice-modal__quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a68;
}

.usher-voices__cta {
  margin-top: 36px;
}

.usher-voices__cta-note {
  max-width: 480px;
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b6b8a;
}

.usher-voice-submit__intro {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b8a;
}

.usher-voice-submit-modal .form-label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2a017b;
}

.usher-voice-submit-modal .form-control {
  border-radius: 8px;
  border-color: rgba(42, 1, 123, 0.14);
  font-size: 14px;
}

.usher-voice-submit-modal .form-control:focus {
  border-color: var(--tg-theme-primary-400);
  box-shadow: 0 0 0 0.2rem rgba(42, 1, 123, 0.1);
}

.usher-voice-submit__success {
  padding: 24px 8px 12px;
  text-align: center;
}

.usher-voice-submit__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 20px;
}

.usher-voice-submit__success h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #2a017b;
}

.usher-voice-submit__success p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b8a;
}

.usher-voices__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.usher-voices__pagination {
  position: static;
  width: auto !important;
}

.usher-voices__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background: rgba(42, 1, 123, 0.2);
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.usher-voices__pagination .swiper-pagination-bullet-active {
  background: #2a017b;
  transform: scale(1.15);
}

.usher-voices__nav {
  display: flex;
  gap: 10px;
}

.usher-voices__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(42, 1, 123, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #2a017b;
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.usher-voices__btn:hover {
  background: #2a017b;
  border-color: #2a017b;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .usher-voices {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .usher-voice-card {
    height: 200px;
    padding: 18px 16px 14px;
  }

  .usher-voices__footer {
    flex-direction: column;
    margin-top: 24px;
  }
}

.footer-instagram .list-wrap li img {
  display: block;
  width: 85px;
  height: 85px;
  object-fit: cover;
  mix-blend-mode: luminosity;
  border-radius: 10px;
}

.footer-partners {
  margin-bottom: 28px;
}

.footer-partners .fw-title {
  margin-bottom: 18px;
}

.footer-partners__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-partners__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.footer-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  padding: 14px 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-partners__card:hover .footer-partners__logo {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-partners__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.footer-partners__name {
  display: block;
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 575.98px) {
  .footer-partners__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-partners__logo {
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .footer-partners__logo img {
    max-height: 42px;
  }

  .footer-partners__name {
    font-size: 10px;
  }
}

/* Who we are */
.usher-who {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--tg-theme-primary-50) 45%, #f4f5f8 100%);
}

.usher-who__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.usher-who__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.usher-who__orb--one {
  display: none;
}

.usher-who__orb--two {
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: var(--tg-theme-primary-200);
}

.usher-who__layout {
  --bs-gutter-x: 2.5rem;
}

.usher-who__copy {
  max-width: none;
}

.usher-who__copy > p {
  font-size: 16px;
  line-height: 1.75;
  color: #6b6b8a;
}

.usher-who__vm-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.usher-who__vm {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(25, 29, 136, 0.08);
  box-shadow: 0 8px 24px rgba(25, 29, 136, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.usher-who__vm:hover {
  border-color: var(--tg-theme-primary-200);
  box-shadow: 0 12px 28px rgba(25, 29, 136, 0.08);
}

.usher-who__vm-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--tg-theme-primary-50);
  color: var(--tg-theme-primary-500);
  font-size: 20px;
}

.usher-who__vm--mission .usher-who__vm-icon {
  background: var(--tg-theme-secondary-50);
  color: var(--tg-theme-secondary-600);
}

.usher-who__vm strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tg-theme-primary-500);
}

.usher-who__vm--mission strong {
  color: var(--tg-theme-secondary-700);
}

.usher-who__vm p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b8a;
}

.usher-who__values-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

.usher-who__values-diagram {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--tg-theme-primary-50);
  box-shadow: inset 0 0 0 1px rgba(25, 29, 136, 0.06);
}

.usher-who__diagram-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.usher-who__diagram-ring {
  fill: none;
  stroke: var(--tg-theme-primary-400);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  opacity: 0.55;
}

.usher-who__diagram-spoke {
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
}

.usher-who__diagram-dot {
  fill: #ffffff;
  stroke: var(--tg-theme-primary-500);
  stroke-width: 2;
}

.usher-who__diagram-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--tg-theme-primary-700);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(11, 12, 57, 0.25);
  transform: translate(-50%, -50%);
}

.usher-who__diagram-hub-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tg-theme-secondary-300);
}

.usher-who__diagram-hub-title {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--tg-heading-font-family);
}

.usher-who__diagram-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 138px;
  padding: 16px 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--tg-theme-primary-100);
  text-align: center;
  box-shadow: 0 8px 24px rgba(25, 29, 136, 0.1);
  transform: translate(-50%, -50%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.usher-who__diagram-node:hover {
  border-color: var(--tg-theme-secondary-400);
  box-shadow: 0 14px 32px rgba(25, 29, 136, 0.14);
  transform: translate(-50%, -50%) scale(1.04);
}

.usher-who__diagram-node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--tg-theme-primary-600);
}

.usher-who__diagram-node-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
}

.usher-who__diagram-node p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: #6b6b8a;
}

.usher-who__diagram-node--faith {
  top: 18%;
  left: 50%;
}

.usher-who__diagram-node--excellence {
  top: 40%;
  left: 82%;
}

.usher-who__diagram-node--integrity {
  top: 77%;
  left: 70%;
}

.usher-who__diagram-node--service {
  top: 77%;
  left: 30%;
}

.usher-who__diagram-node--leadership {
  top: 40%;
  left: 18%;
}

@media (max-width: 991.98px) {
  .usher-who__vm-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .usher-who__values-diagram {
    max-width: 440px;
  }

  .usher-who__diagram-node {
    width: 138px;
    height: 138px;
    padding: 16px 13px;
  }

  .usher-who__diagram-hub {
    width: 100px;
    height: 100px;
  }

  .usher-who__diagram-hub-title {
    font-size: 17px;
  }
}

@media (max-width: 767.98px) {
  .usher-who__values-diagram {
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    margin-top: 8px;
    padding: 24px 18px;
    border-radius: 16px;
    background: var(--tg-theme-primary-50);
  }

  .usher-who__values-diagram::before {
    content: "Core values";
    display: block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: var(--tg-theme-primary-500);
  }

  .usher-who__diagram-svg,
  .usher-who__diagram-hub {
    display: none;
  }

  .usher-who__diagram-node {
    position: static;
    width: auto;
    height: auto;
    border-radius: 12px;
    transform: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 12px;
  }

  .usher-who__diagram-node:hover {
    transform: none;
  }

  .usher-who__diagram-node-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 8px;
    background: var(--tg-theme-primary-50);
  }

  .usher-who__diagram-node-title {
    font-size: 12px;
  }

  .usher-who__diagram-node p {
    font-size: 13px;
  }
}

/* Academic departments */
.usher-departments {
  background: #ffffff;
}

.usher-dept-card {
  height: 100%;
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid rgba(42, 1, 123, 0.1);
  background: #faf9fd;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.usher-dept-card:hover {
  border-color: #2a017b;
  box-shadow: 0 12px 28px rgba(42, 1, 123, 0.08);
}

.usher-dept-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2a017b;
  color: #ffffff;
  font-size: 1.5rem;
}

.usher-dept-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.usher-dept-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}

/* Admissions */
.usher-admissions {
  background: #f8f7fc;
}

.usher-admissions__lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.usher-admissions__card {
  height: 100%;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-admissions__card h4 {
  font-size: 1.05rem;
  color: #2a017b;
  margin-bottom: 10px;
}

.usher-admissions__card p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #555;
}

.usher-admissions__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #128c7e;
}

.usher-admissions__whatsapp:hover {
  color: #25d366;
}

/* FAQ */
.usher-faq-section {
  background: #ffffff;
}

.usher-faq-accordion .collapse-custom {
  border: 1px solid rgba(42, 1, 123, 0.1);
}

.usher-faq-accordion .collapse-custom .card-header a {
  color: #111827;
  text-decoration: none;
}

.usher-faq-accordion .collapse-custom .card-header a h5 {
  font-size: 1rem;
  font-weight: 600;
}

.usher-faq-accordion .collapse-custom .card-header a:not(.collapsed) {
  color: #2a017b;
}

/* Gallery intro */
.usher-gallery-intro {
  background: #ffffff;
}

.usher-gallery-carousel {
  padding-top: 0;
}

.usher-gallery-carousel .swiper-slide {
  height: auto;
}

.usher-gallery-carousel .project__thumb-four {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.usher-gallery-carousel .project-gallery__link {
  display: block;
  width: 100%;
  height: 100%;
}

.usher-gallery-carousel .project__thumb-four img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 767.98px) {
  .usher-gallery-carousel .project__thumb-four {
    aspect-ratio: 3 / 2;
  }
}

/* Inner pages */
.usher-page-section {
  background: #ffffff;
}

.usher-page-section--grey {
  background: #f4f5f8;
}

.usher-intro-panel {
  background: rgba(42, 1, 123, 0.04);
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-radius: 12px;
  padding: 2rem;
}

.usher-dept-card {
  background: #fff;
  border: 1px solid rgba(42, 1, 123, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.usher-dept-card:hover {
  box-shadow: 0 12px 32px rgba(42, 1, 123, 0.12);
  transform: translateY(-4px);
}

.usher-dept-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.usher-dept-card__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.usher-dept-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.usher-video-feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(42, 1, 123, 0.14);
}

.usher-video-play {
  position: relative;
  display: block;
  text-decoration: none;
}

.usher-video-feature__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.usher-video-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 16, 75, 0.08) 0%, rgba(14, 16, 75, 0.55) 100%);
  transition: background 0.3s ease;
}

.usher-video-feature__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--tg-theme-primary-500, #2a017b);
  font-size: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.usher-video-feature__btn i {
  margin-left: 4px;
}

.usher-video-play:hover .usher-video-feature__thumb {
  transform: scale(1.03);
}

.usher-video-play:hover .usher-video-feature__overlay {
  background: linear-gradient(180deg, rgba(14, 16, 75, 0.18) 0%, rgba(14, 16, 75, 0.62) 100%);
}

.usher-video-play:hover .usher-video-feature__btn {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--tg-theme-secondary-400, #f7a400);
  color: #ffffff;
}

.usher-video-popup .mfp-iframe-scaler iframe {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.usher-sport-mini-gallery {
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(42, 1, 123, 0.06);
}

.usher-sport-mini-gallery__label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2a017b;
}

.usher-sport-mini-gallery__hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #6b6b8a;
  font-size: 12px;
}

.usher-sport-mini-gallery__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.usher-sport-mini-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  background: #eef0f5;
}

.usher-sport-mini-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.usher-sport-mini-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 8px 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(14, 16, 75, 0) 0%, rgba(14, 16, 75, 0.82) 100%);
}

.usher-sport-mini-gallery__item::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2a017b;
  font-size: 11px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.usher-sport-mini-gallery__item:hover img {
  transform: scale(1.05);
}

.usher-sport-mini-gallery__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767.98px) {
  .usher-sport-mini-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .usher-sport-mini-gallery {
    padding: 14px;
  }
}

.usher-stat-mini {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(42, 1, 123, 0.08);
  height: 100%;
}

.usher-stat-mini__num {
  font-size: 2rem;
  font-weight: 700;
  color: #2a017b;
  line-height: 1.1;
}

.usher-stat-mini__label {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.35rem;
}

.usher-news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 1, 123, 0.08);
  height: 100%;
  transition: box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.usher-news-card:hover {
  box-shadow: 0 12px 28px rgba(42, 1, 123, 0.1);
}

.usher-news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.usher-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usher-news-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.usher-achievements-row > [class*="col"] {
  display: flex;
}

.usher-news-card--expandable .usher-news-card__text {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.usher-news-card--expandable.is-expanded .usher-news-card__text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  overflow: visible;
}

.usher-news-card__readmore {
  margin-top: auto;
  padding: 0.75rem 0 0;
  border: 0;
  background: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tg-theme-primary-500, #2a017b);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.usher-news-card__readmore:hover {
  color: var(--tg-theme-secondary-400, #f7a400);
}

.usher-news-card__meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.usher-news-card__meta .badge {
  background: rgba(42, 1, 123, 0.1);
  color: #2a017b;
  font-weight: 600;
}

.usher-boarding-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a68;
  font-weight: 500;
}

.usher-event-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #c9a227;
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-left: 4px solid #c9a227;
  height: 100%;
}

.usher-event-card__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2a017b;
  margin-bottom: 0.5rem;
}

.usher-gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.usher-gallery-filter .btn-filter {
  border: 1px solid rgba(42, 1, 123, 0.2);
  background: #fff;
  color: #2a017b;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.usher-gallery-filter .btn-filter:hover,
.usher-gallery-filter .btn-filter.active {
  background: #2a017b;
  color: #fff;
  border-color: #2a017b;
}

.usher-gallery-item {
  margin-bottom: 1.5rem;
}

.usher-gallery-item__thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.usher-gallery-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.usher-gallery-item__thumb:hover img {
  transform: scale(1.05);
}

.usher-gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 0.9rem;
}

.usher-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(42, 1, 123, 0.08);
  height: 100%;
  text-align: center;
}

.usher-contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.usher-calendar-block {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(42, 1, 123, 0.08);
  margin-bottom: 1.25rem;
}

.usher-calendar-block h4 {
  color: #2a017b;
  margin-bottom: 1rem;
}

.usher-calendar-block ul {
  margin: 0;
  padding-left: 1.25rem;
}

.usher-calendar-block li {
  margin-bottom: 0.5rem;
  color: #444;
}

/* Contact page: office hours */
.usher-hours-feature {
  background: linear-gradient(145deg, #2a017b 0%, #3d0ba8 100%);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.usher-hours-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: #c9a227;
}

.usher-hours-feature__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.usher-hours-feature__days {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}

.usher-hours-feature__time {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c9a227;
  margin-bottom: 1rem;
}

.usher-hours-feature__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.usher-hours-feature__cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  background: #fff;
  color: #2a017b;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}

.usher-hours-feature__cta:hover {
  background: #c9a227;
  color: #fff;
}

.usher-hours-card {
  background: #fff;
  border: 1px solid rgba(42, 1, 123, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.usher-hours-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.usher-hours-card__title {
  font-size: 1.05rem;
  color: #2a017b;
  margin-bottom: 0.5rem;
}

.usher-hours-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
}

.usher-hours-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f8f6fc;
  border-radius: 12px;
  border-left: 4px solid #c9a227;
  padding: 1.25rem 1.5rem;
}

.usher-hours-notice__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: #2a017b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.usher-hours-notice__title {
  font-size: 1rem;
  color: #2a017b;
  margin-bottom: 0.35rem;
}

.usher-hours-notice p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
}

.usher-voice-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(42, 1, 123, 0.08);
  height: 100%;
}

.usher-voice-card blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  border-left: 3px solid #c9a227;
  padding-left: 1rem;
}

.usher-img-feature {
  border-radius: 12px;
  overflow: hidden;
}

.usher-img-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.usher-img-feature--equal {
  display: flex;
  flex-direction: column;
}

.usher-img-feature--equal .usher-img-feature__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.usher-img-feature--equal .usher-img-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.usher-img-feature--equal p {
  flex: 1 1 auto;
}

.usher-form-section .form-control,
.usher-form-section .form-select {
  border-radius: 8px;
  border-color: rgba(42, 1, 123, 0.15);
}

.usher-form-section .form-control:focus,
.usher-form-section .form-select:focus {
  border-color: #2a017b;
  box-shadow: 0 0 0 0.2rem rgba(42, 1, 123, 0.15);
}

.usher-map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 1, 123, 0.1);
  box-shadow: 0 8px 24px rgba(42, 1, 123, 0.08);
}

.usher-map-embed iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

@media (max-width: 767.98px) {
  .usher-map-embed iframe {
    height: 320px;
  }
}

/* Breadcrumb hero overlay — improves title/breadcrumb readability on bright photos */
.breadcrumb__bg {
  overflow: hidden;
}

.breadcrumb__bg > .bg-img {
  z-index: 0;
}

.breadcrumb__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(42, 1, 123, 0.82) 0%,
    rgba(20, 0, 60, 0.68) 45%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.breadcrumb__bg .container {
  position: relative;
  z-index: 2;
}

.breadcrumb__bg .breadcrumb__content .title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.breadcrumb__bg .breadcrumb__content .breadcrumb-item {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb__bg .breadcrumb__content .breadcrumb-item a {
  color: #f0c14b;
}

.breadcrumb__bg .breadcrumb__content .breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb__bg .breadcrumb__content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

/* About page history narrative */
.usher-history-narrative p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.35rem;
}

.usher-history-narrative p:last-child {
  margin-bottom: 0;
}

/* Usher history timeline */
.usher-timeline {
  position: relative;
  padding-left: 0;
}

.usher-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, #c9a227 0%, #2a017b 55%, #c9a227 100%);
  border-radius: 3px;
}

.usher-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem 1.5rem;
  padding-bottom: 2rem;
}

.usher-timeline__item:last-child {
  padding-bottom: 0;
}

.usher-timeline__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.35rem;
}

.usher-timeline__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: #2a017b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 14px rgba(42, 1, 123, 0.25);
}

.usher-timeline__card {
  background: #fff;
  border: 1px solid rgba(42, 1, 123, 0.1);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(42, 1, 123, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.usher-timeline__card:hover {
  box-shadow: 0 12px 32px rgba(42, 1, 123, 0.1);
  transform: translateY(-2px);
}

.usher-timeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a017b;
  margin-bottom: 0.5rem;
}

.usher-timeline__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.usher-timeline__item--solemn .usher-timeline__marker span {
  background: #4a4a4a;
}

.usher-timeline__item--solemn .usher-timeline__card {
  border-left: 4px solid #888;
}

.usher-timeline__item--highlight .usher-timeline__marker span {
  background: #c9a227;
  color: #1a1a1a;
}

.usher-timeline__item--highlight .usher-timeline__card {
  border-left: 4px solid #c9a227;
  background: linear-gradient(135deg, #fff 0%, #fef9ee 100%);
}

@media (min-width: 768px) {
  .usher-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .usher-timeline__item {
    grid-template-columns: 1fr 56px 1fr;
    align-items: start;
    gap: 0 1.5rem;
    padding-bottom: 2.5rem;
  }

  .usher-timeline__item:nth-child(odd) .usher-timeline__marker {
    grid-column: 2;
    grid-row: 1;
  }

  .usher-timeline__item:nth-child(odd) .usher-timeline__card {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }

  .usher-timeline__item:nth-child(even) .usher-timeline__marker {
    grid-column: 2;
    grid-row: 1;
  }

  .usher-timeline__item:nth-child(even) .usher-timeline__card {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
  }

  .usher-timeline__item:nth-child(odd) .usher-timeline__card {
    margin-right: 0.5rem;
  }

  .usher-timeline__item:nth-child(even) .usher-timeline__card {
    margin-left: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .usher-timeline::before {
    left: 27px;
  }

  .usher-timeline__item {
    grid-template-columns: 56px 1fr;
  }
}

/* Usher Memories page */
.usher-memories-page .btn::after,
.usher-memories-page .btn::before,
.usher-memory-modal .btn::after,
.usher-memory-modal .btn::before {
  display: none !important;
  content: none !important;
}

.usher-memories-panel .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 8px;
}

.usher-memories-panel .btn-two {
  background: #2a017b;
  color: #fff;
}

.usher-memories-panel .btn-two:hover,
.usher-memories-panel .btn-two:focus-visible {
  background: #1a004f;
  color: #fff;
}

.usher-memories-panel .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.usher-memories-panel {
  background: #f4f5f8;
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

.usher-memories-panel .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #2a017b;
}

.usher-memories-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-memories-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.usher-memories-panel__welcome {
  font-size: 13px;
  font-weight: 600;
  color: #2a017b;
  white-space: nowrap;
}

.usher-memories-panel__reset {
  padding: 0.6rem 0.25rem;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #6b6b8a;
  cursor: pointer;
  white-space: nowrap;
}

.usher-memories-panel__reset:hover {
  color: #2a017b;
}

.usher-memories-panel__note {
  font-size: 13px;
  line-height: 1.55;
  color: #6b6b8a;
}

.usher-memories-panel__note i {
  color: #c9a227;
  margin-right: 0.35rem;
}

.usher-memory-card {
  height: 100%;
}

.usher-memory-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(42, 1, 123, 0.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.usher-memory-card__link:hover,
.usher-memory-card__link:focus-visible {
  box-shadow: 0 12px 32px rgba(42, 1, 123, 0.12);
  transform: translateY(-4px);
  outline: none;
}

.usher-memory-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe6dc;
}

.usher-memory-card__photo img,
.usher-memory-card__photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.14) saturate(0.92);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.usher-memory-card__link:hover .usher-memory-card__photo img,
.usher-memory-card__link:hover .usher-memory-card__photo video {
  transform: scale(1.05);
  filter: sepia(0.05) saturate(1);
}

.usher-memory-card__year {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #2a017b;
  color: #c9a227;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.usher-memory-card__shade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 1, 123, 0.55);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.usher-memory-card__link:hover .usher-memory-card__shade,
.usher-memory-card__link:focus-visible .usher-memory-card__shade {
  opacity: 1;
}

.usher-memory-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2a017b;
  font-size: 12px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.usher-memory-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
}

.usher-memory-card__body p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
}

.usher-memory-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(42, 1, 123, 0.08);
  font-size: 0.84rem;
  color: #6b6b8a;
}

.usher-memory-card__foot strong {
  color: #2a017b;
  font-weight: 600;
}

.copyright-text-two {
  text-align: center;
}

.usher-site-version {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.usher-memories-status {
  color: #5b4a7a;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.usher-memories-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: none;
  margin: 0;
  scroll-snap-type: none;
}

.usher-memories-feed__loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #6b6b8a;
  padding: 2rem 1rem;
}

.usher-memory-card--feed {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(42, 1, 123, 0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.usher-memory-card--feed .usher-memory-card__link {
  display: block;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  flex: 1;
}

.usher-memory-card--feed .usher-memory-card__photo {
  aspect-ratio: 4 / 3;
  max-height: none;
  background: #ebe6dc;
  position: relative;
  overflow: hidden;
}

.usher-memory-card--feed .usher-memory-card__photo img,
.usher-memory-card--feed .usher-memory-card__photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usher-memory-card--feed .usher-memory-card__body {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0.95rem 1rem 0.35rem;
  background: transparent;
  color: inherit;
}

.usher-memory-card--feed .usher-memory-card__body p {
  color: #3d3d55;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.usher-memory-card--feed .usher-memory-card__foot {
  color: #6b6b8a;
}

.usher-memory-card--feed .usher-memory-card__foot strong {
  color: #2a017b;
}

.usher-memory-card--feed .usher-memory-card__shade {
  display: none;
}

.usher-memory-card__actions {
  padding: 0.35rem 0.75rem 0.7rem;
  background: #fff;
  border-top: 1px solid #eceef2;
  margin-top: auto;
}

.usher-memory-engage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.4rem;
}

.usher-memory-engage__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.usher-memory-engage__like-wrap {
  position: relative;
}

.usher-memory-engage__action {
  border: 0;
  background: transparent;
  color: #65676b;
  padding: 0.2rem 0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.usher-memory-engage__action i {
  font-size: 1.05rem;
}

.usher-memory-engage__action:hover,
.usher-memory-engage__action:focus-visible {
  color: #1877f2;
  outline: none;
}

.usher-memory-engage__action.is-reacted,
.usher-memory-engage__action.is-like {
  color: #1877f2;
}

.usher-memory-engage__action.is-love {
  color: #f33e58;
}

.usher-memory-engage__action.is-wow {
  color: #f7b928;
}

.usher-memory-engage__picker {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.usher-memory-engage__like-wrap:hover .usher-memory-engage__picker,
.usher-memory-engage__like-wrap:focus-within .usher-memory-engage__picker,
.usher-memory-engage__like-wrap.is-open .usher-memory-engage__picker {
  display: inline-flex;
}

.usher-memory-engage__pick {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.15s ease;
}

.usher-memory-engage__pick:hover {
  transform: scale(1.18);
}

.usher-memory-engage__pick.is-like {
  background: #1877f2;
}

.usher-memory-engage__pick.is-love {
  background: #f33e58;
}

.usher-memory-engage__pick.is-wow {
  background: #f7b928;
}

.usher-memory-engage__badges {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.usher-memory-engage__badge {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  margin-left: -0.35rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.usher-memory-engage__badge:first-child {
  margin-left: 0;
}

.usher-memory-engage__badge.is-like {
  background: #1877f2;
}

.usher-memory-engage__badge.is-love {
  background: #f33e58;
}

.usher-memory-engage__badge.is-wow {
  background: #f7b928;
}

.usher-memory-engage--detail {
  padding: 0.25rem 0;
}

.usher-memory-detail__engage {
  margin: 1rem 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(42, 1, 123, 0.1);
}

.usher-memories-sentinel {
  min-height: 1px;
}

.usher-memory-share-modal .modal-dialog {
  max-width: 360px;
}

.usher-memory-share-sheet {
  background: #1c1c1e;
  color: #fff;
  border-radius: 18px;
  border: 0;
}

.usher-memory-share-sheet .modal-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.usher-memory-share-targets {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem 0.5rem;
}

.usher-memory-share-target {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem;
  cursor: pointer;
}

.usher-memory-share-target__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}

.usher-memory-share-target__icon--copy {
  background: #2f80ed;
}

.usher-memory-share-target__icon--whatsapp {
  background: #25d366;
}

.usher-memory-share-target__icon--embed {
  background: #128c7e;
}

.usher-memory-share-target__icon--facebook {
  background: #1877f2;
}

.usher-memory-share-target__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.usher-memory-share-embed {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.usher-memory-share-embed .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.usher-memory-share-embed .form-control {
  background: #2c2c2e;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f2f2f7;
  font-size: 0.8rem;
}

.usher-memory-share-embed .btn {
  background: #2f80ed;
  border-color: #2f80ed;
  color: #fff;
}

.usher-memory-share-feedback {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8fd48f;
}

@media (max-width: 991.98px) {
  .usher-memories-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .usher-memories-feed {
    grid-template-columns: 1fr;
  }
}

.usher-memories-auth-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.usher-memories-auth-switch__btn {
  border: 1px solid rgba(42, 1, 123, 0.2);
  background: #fff;
  color: #2a017b;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.usher-memories-auth-switch__btn.is-active,
.usher-memories-auth-switch__btn:hover {
  background: #2a017b;
  color: #fff;
  border-color: #2a017b;
}

.usher-memory-modal .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 1, 123, 0.18);
}

.usher-memory-modal .modal-header {
  border-bottom: 1px solid rgba(42, 1, 123, 0.08);
  padding: 1.25rem 1.5rem;
}

.usher-memory-modal .modal-title {
  color: #2a017b;
  font-weight: 700;
}

.usher-memory-detail-modal .modal-header {
  align-items: flex-start;
}

.usher-memory-detail__year {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 0.75rem;
  font-weight: 700;
}

.usher-memory-detail__meta {
  font-size: 0.88rem;
  color: #6b6b8a;
}

.usher-memory-detail__media {
  border-radius: 12px;
  overflow: hidden;
  background: #f4f5f8;
  border: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-memory-detail__media img,
.usher-memory-detail__media video {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
}

.usher-memory-detail__label {
  color: #2a017b;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.usher-memory-detail__story p {
  color: #444;
  line-height: 1.75;
  margin: 0;
}

.usher-memory-detail__comments {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-memory-detail__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.4rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
}

.usher-memory-comments-list {
  max-height: 240px;
  overflow-y: auto;
}

.usher-memories-comment {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(42, 1, 123, 0.08);
}

.usher-memories-comment:last-child {
  border-bottom: 0;
}

.usher-memories-comment__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.usher-memories-comment__head strong {
  color: #2a017b;
}

.usher-memories-comment__head span {
  color: #8a8a9a;
}

.usher-memories-comment p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.92rem;
}

.usher-memories-comments-empty {
  color: #6b6b8a;
  font-style: italic;
  margin: 0;
}

.usher-memory-detail__hint {
  font-size: 13px;
  color: #6b6b8a;
  margin-bottom: 0.5rem;
}

.usher-memories-upload-preview {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 1, 123, 0.1);
}

@media (max-width: 991.98px) {
  .usher-memories-panel {
    padding: 1.25rem;
  }

  .usher-memories-panel__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .usher-memories-panel__actions {
    justify-content: flex-start;
  }
}

/* Teaching staff assignments table */
.usher-staff-table-wrap {
  background: #fff;
  border: 1px solid rgba(42, 1, 123, 0.08);
  border-radius: 12px;
  padding: 0.25rem;
  box-shadow: 0 8px 24px rgba(42, 1, 123, 0.06);
}

.usher-staff-table {
  margin: 0;
  font-size: 0.92rem;
}

.usher-staff-table thead th {
  background: #2a017b;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 0;
  padding: 0.9rem 1rem;
  white-space: nowrap;
}

.usher-staff-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.usher-staff-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.usher-staff-table tbody td {
  vertical-align: top;
  padding: 1rem;
  border-color: rgba(42, 1, 123, 0.08);
  color: #444;
}

.usher-staff-table tbody tr:hover {
  background: rgba(42, 1, 123, 0.03);
}

.usher-staff-table tbody td strong {
  color: #2a017b;
  font-weight: 600;
}

.usher-staff-table tbody td a {
  color: #2a017b;
  text-decoration: none;
  word-break: break-all;
}

.usher-staff-table tbody td a:hover {
  text-decoration: underline;
}

.usher-staff-table__tags,
.usher-staff-table__depts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.usher-staff-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(42, 1, 123, 0.08);
  color: #2a017b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.usher-staff-dept {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #7a6520;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.usher-staff-table__note {
  font-size: 0.85rem;
  color: #6b6b8a;
}

#usherStaffTableSearch {
  border-radius: 8px;
  border-color: rgba(42, 1, 123, 0.15);
}

#usherStaffTableSearch:focus {
  border-color: #2a017b;
  box-shadow: 0 0 0 0.2rem rgba(42, 1, 123, 0.12);
}

@media (max-width: 991.98px) {
  .usher-staff-table thead {
    display: none;
  }

  .usher-staff-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(42, 1, 123, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  .usher-staff-table tbody td {
    display: block;
    border: 0;
    padding: 0.65rem 1rem;
  }

  .usher-staff-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2a017b;
    margin-bottom: 0.35rem;
  }

  .usher-staff-table tbody td:first-child {
    background: rgba(42, 1, 123, 0.05);
    padding-top: 0.85rem;
  }

  .usher-staff-table tbody td:first-child::before {
    display: none;
  }
}


/* —— Home hero featured calendar —— */
.slider__area {
  position: relative;
}

.slider__area > .swiper-container {
  position: relative;
  z-index: 1;
}

.usher-home-calendar {
  position: absolute;
  z-index: 40;
  right: clamp(1.25rem, 4.5vw, 4rem);
  bottom: clamp(1.5rem, 4vh, 3rem);
  top: auto;
  left: auto;
  transform: none;
  width: min(340px, calc(100% - 2.5rem));
  pointer-events: none;
}

.usher-home-calendar__inner {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(8, 4, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1rem 1.1rem 0.95rem;
  color: #1f1933;
}

.usher-home-calendar__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a017b;
  margin-bottom: 0.15rem;
}

.usher-home-calendar__title {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: #1a0148;
  font-weight: 700;
  line-height: 1.2;
}

.usher-home-calendar__list {
  display: grid;
  gap: 0.55rem;
  max-height: 220px;
  overflow: auto;
  margin-bottom: 0.75rem;
}

.usher-home-calendar__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.45rem 0.4rem;
  border-radius: 10px;
  background: rgba(42, 1, 123, 0.05);
}

.usher-home-calendar__date {
  text-align: center;
  border-radius: 9px;
  background: linear-gradient(160deg, #2a017b, #1a0148);
  color: #fff;
  padding: 0.4rem 0.2rem;
  line-height: 1.05;
}

.usher-home-calendar__date strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.usher-home-calendar__date span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.usher-home-calendar__body h4 {
  margin: 0 0 0.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a0148;
}

.usher-home-calendar__body p {
  margin: 0;
  font-size: 0.76rem;
  color: #6b6680;
  line-height: 1.35;
}

.usher-home-calendar__empty {
  font-size: 0.85rem;
  color: #6b6680;
}

.usher-home-calendar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a017b;
  text-decoration: none;
}

.usher-home-calendar__link:hover {
  color: #c9a227;
}

.usher-home-calendar__link i {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.usher-home-calendar__link:hover i {
  transform: translateX(3px);
}

/* Keep calendar readable over hero when CMS fabs are present */
.usher-home-calendar.usher-cms-block {
  outline: none;
}

@media (max-width: 1199.98px) {
  .usher-home-calendar {
    width: min(300px, calc(100% - 2rem));
    right: 1rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .usher-home-calendar {
    position: absolute;
    right: 1rem;
    left: auto;
    bottom: 1rem;
    top: auto;
    transform: none;
    width: min(300px, calc(100% - 2rem));
    margin: 0;
    padding: 0;
    z-index: 40;
  }

  .usher-home-calendar__inner {
    max-width: none;
    margin: 0;
    padding: 0.85rem 0.9rem;
  }

  .usher-home-calendar__list {
    max-height: 160px;
  }

  .usher-home-calendar__title {
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .usher-home-calendar {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: -2.5rem 0 0;
    padding: 0 1rem 1.25rem;
    z-index: 5;
  }

  .usher-home-calendar__inner {
    max-width: 520px;
    margin: 0 auto;
  }
}
