/**
 * Inner pages — news detail, calendar, achievements
 * Theme: navy #052059 · orange #f99f3a · cream #F3ECDC
 */

/* Page hero */
.tjis-page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0 70px;
  background-color: #052059;
}

.tjis-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 32, 89, 0.92) 0%, rgba(5, 32, 89, 0.75) 100%);
}

.tjis-page-hero .container {
  z-index: 1;
}

.tjis-page-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.tjis-page-hero__crumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-page-hero__crumbs a:hover {
  color: #f99f3a;
}

.tjis-page-hero__sep {
  color: rgba(255, 255, 255, 0.4);
}

.tjis-page-hero__current {
  color: #f99f3a;
  font-weight: 600;
}

.tjis-page-hero__title {
  font-family: var(--title-font);
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  max-width: 800px;
}

.tjis-page-hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
  max-width: 600px;
  line-height: 1.6;
}

/* Page shell */
.tjis-page-body {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #F3ECDC 0%, #fff 30%, #fff 100%);
}

/* News article detail */
.tjis-article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-article__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #052059;
}

.tjis-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjis-article__date-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 10px 14px;
  background: #f99f3a;
  color: #052059;
  border-radius: 12px;
  font-family: var(--title-font);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tjis-article__date-badge small {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tjis-article__date-badge strong {
  font-size: 26px;
}

.tjis-article__content {
  padding: 32px 36px 40px;
}

.tjis-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 32, 89, 0.08);
}

.tjis-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #565656;
}

.tjis-article__meta-item i {
  color: #f99f3a;
}

.tjis-article__title {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 24px;
  line-height: 1.3;
}

.tjis-article__prose {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.tjis-article__prose p {
  margin-bottom: 1.25rem;
}

.tjis-article__prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.tjis-article__prose h2,
.tjis-article__prose h3 {
  font-family: var(--title-font);
  color: #052059;
  margin: 1.75rem 0 1rem;
}

.tjis-article__prose ul,
.tjis-article__prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.tjis-article__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
}

.tjis-article__gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.tjis-article__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tjis-article__gallery a:hover img {
  transform: scale(1.06);
}

.tjis-article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
}

/* Sidebar */
.tjis-sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  margin-bottom: 24px;
}

.tjis-sidebar-card__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f99f3a;
}

.tjis-related-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(5, 32, 89, 0.06);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.tjis-related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tjis-related-item:first-of-type {
  padding-top: 0;
}

.tjis-related-item:hover .tjis-related-item__title {
  color: #f99f3a;
}

.tjis-related-item__date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding: 8px 6px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.tjis-related-item__date strong {
  display: block;
  font-size: 18px;
}

.tjis-related-item__date--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tjis-related-item__date--icon i {
  color: #f99f3a;
}

.tjis-related-item__title {
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  line-height: 1.4;
  transition: color 0.2s;
}

/* Buttons */
.tjis-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tjis-btn--primary {
  background: #052059;
  color: #fff;
}

.tjis-btn--primary:hover {
  background: #f99f3a;
  color: #052059;
}

.tjis-btn--outline {
  background: transparent;
  color: #052059;
  border: 2px solid #052059;
}

.tjis-btn--outline:hover {
  background: #052059;
  color: #fff;
}

/* Academic calendar */
.tjis-cal-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tjis-cal-intro__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 12px;
  background: rgba(5, 32, 89, 0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #052059;
}

.tjis-cal-month {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  margin-bottom: 28px;
}

.tjis-cal-month__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  color: #fff;
}

.tjis-cal-month__head i {
  color: #f99f3a;
  font-size: 20px;
}

.tjis-cal-month__head h2 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.tjis-cal-event {
  display: flex;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(5, 32, 89, 0.06);
  transition: background 0.2s;
}

.tjis-cal-event:last-child {
  border-bottom: none;
}

.tjis-cal-event:hover {
  background: rgba(243, 236, 220, 0.4);
}

.tjis-cal-event__date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  padding: 10px 8px;
  background: linear-gradient(135deg, #f99f3a, #fec624);
  color: #052059;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.tjis-cal-event__date strong {
  display: block;
  font-size: 22px;
  font-family: var(--title-font);
}

.tjis-cal-event__date small {
  font-size: 11px;
  text-transform: uppercase;
}

.tjis-cal-event__body strong {
  display: block;
  font-family: var(--title-font);
  font-size: 16px;
  color: #052059;
  margin-bottom: 4px;
}

.tjis-cal-event__body p {
  margin: 0;
  font-size: 14px;
  color: #565656;
  line-height: 1.5;
}

.tjis-cal-widget {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  position: sticky;
  top: 100px;
}

.tjis-cal-widget__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tjis-cal-widget__title i {
  color: #f99f3a;
}

.tjis-cal-widget iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
}

.tjis-cal-widget__note {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: rgba(249, 159, 58, 0.1);
  border-radius: 10px;
  font-size: 13px;
  color: #565656;
  line-height: 1.5;
}

.tjis-cal-widget__note i {
  color: #f99f3a;
  margin-right: 6px;
}

.tjis-empty {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.06);
}

.tjis-empty i {
  font-size: 48px;
  color: #f99f3a;
  margin-bottom: 16px;
}

.tjis-empty h3 {
  font-family: var(--title-font);
  font-size: 21px;
  color: #052059;
  margin-bottom: 8px;
}

.tjis-empty p {
  color: #565656;
  margin: 0;
}

/* Achievements grid */
.tjis-ach-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

/* News listing grid */
.tjis-news-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.tjis-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  text-decoration: none;
}

.tjis-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-news-card:hover .tjis-news-card__media img {
  transform: scale(1.06);
}

.tjis-news-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-news-card__date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  padding: 8px 12px;
  background: #f99f3a;
  color: #052059;
  border-radius: 10px;
  font-family: var(--title-font);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.tjis-news-card__date small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tjis-news-card__date strong {
  font-size: 22px;
}

.tjis-news-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-news-card__meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.tjis-news-card__meta i {
  color: #f99f3a;
  margin-right: 6px;
}

.tjis-news-card__title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.35;
}

.tjis-news-card__title a {
  color: #052059;
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-news-card:hover .tjis-news-card__title a {
  color: #f99f3a;
}

.tjis-news-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #565656;
  margin: 0 0 16px;
  flex: 1;
}

.tjis-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.tjis-news-card__link i {
  transition: transform 0.2s;
}

.tjis-news-card:hover .tjis-news-card__link {
  color: #f99f3a;
}

.tjis-news-card:hover .tjis-news-card__link i {
  transform: translateX(4px);
}

.tjis-ach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-ach-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-ach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-ach-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
}

.tjis-ach-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-ach-card:hover .tjis-ach-card__media img {
  transform: scale(1.06);
}

.tjis-ach-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-ach-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  background: #f99f3a;
  color: #052059;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.tjis-ach-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-ach-card__date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.tjis-ach-card__date i {
  color: #f99f3a;
  margin-right: 6px;
}

.tjis-ach-card__title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 12px;
  line-height: 1.35;
}

.tjis-ach-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.tjis-ach-card__meta span {
  font-size: 13px;
  color: #565656;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tjis-ach-card__meta i {
  color: #052059;
  width: 16px;
}

.tjis-ach-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
  margin-top: auto;
}

.tjis-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.tjis-pagination .pagination {
  gap: 6px;
}

.tjis-pagination .page-link {
  border-radius: 10px !important;
  color: #052059;
  border-color: rgba(5, 32, 89, 0.12);
}

.tjis-pagination .page-item.active .page-link {
  background: #052059;
  border-color: #052059;
}

/* About Us page */
.tjis-about-split {
  margin-bottom: 48px;
}

.tjis-about-media {
  position: relative;
}

.tjis-about-media__badge {
  position: absolute;
  top: -12px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: #052059;
}

.tjis-about-media__badge i {
  color: #f99f3a;
}

.tjis-about-media__video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #052059;
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.15);
}

.tjis-about-media__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tjis-about-media__video:hover img {
  transform: scale(1.04);
}

.tjis-about-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 32, 89, 0.5) 100%);
}

.tjis-about-media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f99f3a;
  color: #052059;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1;
}

.tjis-about-media__play i {
  margin-left: 4px;
}

.tjis-about-media__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
  color: #052059;
}

.tjis-about-media__chip {
  position: absolute;
  bottom: -16px;
  right: 24px;
  z-index: 2;
  padding: 12px 20px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #fff;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.25);
}

.tjis-about-media__chip strong {
  display: block;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.tjis-about-media__chip span {
  font-size: 12px;
  opacity: 0.85;
}

.tjis-about-content__title {
  font-family: var(--title-font);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #052059;
  margin: 12px 0 16px;
  line-height: 1.25;
}

.tjis-about-content__title span {
  color: #f99f3a;
}

.tjis-about-content__lead {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.tjis-about-content__prose p {
  font-size: 15px;
  line-height: 1.8;
  color: #565656;
  margin-bottom: 16px;
}

.tjis-about-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tjis-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.tjis-about-stat {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease;
}

.tjis-about-stat:hover {
  transform: translateY(-4px);
}

.tjis-about-stat strong {
  display: block;
  font-family: var(--title-font);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #052059;
  line-height: 1.1;
  margin-bottom: 6px;
}

.tjis-about-stat span {
  font-size: 13px;
  color: #565656;
  font-weight: 600;
}

.tjis-about-why {
  padding-top: 8px;
}

.tjis-about-why__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.tjis-about-why__title {
  font-family: var(--title-font);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #052059;
  margin: 12px 0 10px;
}

.tjis-about-why__intro p {
  color: #565656;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.tjis-pillar-card {
  height: 100%;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.07);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.1);
}

.tjis-pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  border-radius: 12px;
  font-size: 20px;
}

.tjis-pillar-card h3 {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 10px;
}

.tjis-pillar-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
  margin: 0;
}

.tjis-about-checklist {
  height: 100%;
  padding: 28px 24px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.2);
}

.tjis-about-checklist h3 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(249, 159, 58, 0.4);
}

.tjis-about-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tjis-about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tjis-about-checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tjis-about-checklist li i {
  color: #f99f3a;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Vision & Mission page */
.tjis-vm-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tjis-vm-principles {
  margin-bottom: 56px;
}

.tjis-vm-card {
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-vm-card--vision {
  border-top: 4px solid #052059;
}

.tjis-vm-card--mission {
  border-top: 4px solid #f99f3a;
}

.tjis-vm-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 16px;
  font-size: 26px;
}

.tjis-vm-card--mission .tjis-vm-card__icon {
  background: linear-gradient(135deg, #f99f3a, #fec624);
  color: #052059;
}

.tjis-vm-card h2 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 16px;
}

.tjis-vm-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #565656;
  margin: 0;
}

.tjis-vm-card p strong {
  color: #052059;
}

.tjis-vm-section {
  margin-bottom: 56px;
}

.tjis-vm-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.tjis-vm-section__title {
  font-family: var(--title-font);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #052059;
  margin: 12px 0 0;
}

.tjis-vm-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tjis-vm-value {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.07);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease;
}

.tjis-vm-value:hover {
  transform: translateY(-4px);
}

.tjis-vm-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: rgba(5, 32, 89, 0.08);
  color: #052059;
  border-radius: 14px;
  font-size: 22px;
}

.tjis-vm-value h3 {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 10px;
}

.tjis-vm-value p {
  font-size: 14px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
}

.tjis-vm-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-vm-feature {
  padding: 32px 28px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.tjis-vm-feature:hover {
  transform: translateY(-4px);
}

.tjis-vm-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: rgba(249, 159, 58, 0.2);
  color: #f99f3a;
  border-radius: 14px;
  font-size: 22px;
}

.tjis-vm-feature h3 {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.tjis-vm-feature p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.tjis-vm-cta {
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-vm-cta p {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 20px;
}

.tjis-vm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Contact page */
.tjis-contact-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tjis-contact-intro p {
  color: #565656;
  font-size: 16px;
  line-height: 1.7;
}

.tjis-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.tjis-contact-card {
  padding: 28px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.12);
}

.tjis-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 14px;
  font-size: 20px;
}

.tjis-contact-card__icon--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.tjis-contact-card h3 {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 10px;
}

.tjis-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
}

.tjis-contact-card p a {
  color: #052059;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.tjis-contact-card p a:hover {
  color: #f99f3a;
}

.tjis-contact-card__alt {
  margin-top: 6px !important;
  font-size: 13px !important;
  opacity: 0.85;
}

.tjis-contact-main {
  margin-bottom: 56px;
}

.tjis-contact-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.12);
  margin-bottom: 24px;
}

.tjis-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjis-contact-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 32, 89, 0.55) 100%);
}

.tjis-contact-media__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #052059;
}

.tjis-contact-media__badge i {
  color: #f99f3a;
}

.tjis-contact-aside {
  padding: 28px 24px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.2);
}

.tjis-contact-aside h3 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(249, 159, 58, 0.4);
}

.tjis-contact-aside ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.tjis-contact-aside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tjis-contact-aside li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tjis-contact-aside li i {
  color: #f99f3a;
  margin-top: 3px;
  flex-shrink: 0;
}

.tjis-contact-aside .tjis-btn--outline {
  width: 100%;
  justify-content: center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.tjis-contact-aside .tjis-btn--outline:hover {
  background: #f99f3a;
  border-color: #f99f3a;
  color: #052059;
}

.tjis-contact-form-card {
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-contact-form-card__head h2 {
  font-family: var(--title-font);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #052059;
  margin: 12px 0 10px;
}

.tjis-contact-form-card__head p {
  font-size: 15px;
  line-height: 1.65;
  color: #565656;
  margin: 0 0 28px;
}

.tjis-contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #052059;
}

.tjis-contact-form__field {
  position: relative;
}

.tjis-contact-form__field i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #f99f3a;
  font-size: 14px;
  pointer-events: none;
}

.tjis-contact-form__field--textarea i {
  top: 18px;
  transform: none;
}

.tjis-contact-form .form-control {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid rgba(5, 32, 89, 0.12);
  border-radius: 12px;
  font-size: 15px;
  color: #444;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.tjis-contact-form .form-control:focus {
  outline: none;
  border-color: #052059;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 32, 89, 0.08);
}

.tjis-contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
  padding-top: 14px;
}

.tjis-contact-form select.form-control {
  appearance: none;
  cursor: pointer;
}

.tjis-contact-form .tjis-btn {
  border: none;
  cursor: pointer;
}

.tjis-contact-form__messages {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.tjis-contact-map {
  position: relative;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.12);
  min-height: 420px;
}

.tjis-contact-map__frame {
  position: absolute;
  inset: 0;
}

.tjis-contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tjis-contact-map__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  margin: 32px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(5, 32, 89, 0.96) 0%, rgba(26, 58, 122, 0.94) 100%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.tjis-contact-map__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 12px;
  background: rgba(249, 159, 58, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f99f3a;
}

.tjis-contact-map__panel h2 {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.tjis-contact-map__panel p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

.tjis-contact-map__panel .tjis-btn--primary {
  background: #f99f3a;
  color: #052059;
}

.tjis-contact-map__panel .tjis-btn--primary:hover {
  background: #fff;
  color: #052059;
}

/* Career page */
.tjis-career-intro {
  margin-bottom: 48px;
}

.tjis-career-intro__title {
  font-family: var(--title-font);
  font-size: 21px;
  font-weight: 700;
  color: #052059;
  margin: 12px 0 16px;
  line-height: 1.25;
}

.tjis-career-intro__title span {
  color: #f99f3a;
}

.tjis-career-intro__lead {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.tjis-career-intro__text {
  font-size: 15px;
  line-height: 1.75;
  color: #565656;
  margin-bottom: 24px;
}

.tjis-career-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tjis-career-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.tjis-career-perk {
  padding: 24px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.07);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-career-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.1);
}

.tjis-career-perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  border-radius: 14px;
  font-size: 20px;
}

.tjis-career-perk h3 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
}

.tjis-career-perk p {
  font-size: 13px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
}

.tjis-career-jobs {
  margin-bottom: 48px;
}

.tjis-career-jobs__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.tjis-career-jobs__title {
  font-family: var(--title-font);
  font-size: 21px;
  font-weight: 700;
  color: #052059;
  margin: 12px 0 10px;
}

.tjis-career-jobs__head p {
  color: #565656;
  font-size: 16px;
  line-height: 1.7;
}

.tjis-career-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tjis-career-job {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-career-job__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.tjis-career-job__head:not(.collapsed) .tjis-career-job__chevron,
.tjis-career-job__head[aria-expanded="true"] .tjis-career-job__chevron {
  transform: rotate(180deg);
}

.tjis-career-job__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 159, 58, 0.2);
  color: #f99f3a;
  border-radius: 12px;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 14px;
}

.tjis-career-job__meta {
  flex: 1;
  min-width: 0;
}

.tjis-career-job__meta strong {
  display: block;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.tjis-career-job__meta small {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.tjis-career-job__chevron {
  flex-shrink: 0;
  color: #f99f3a;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.tjis-career-job__body {
  padding: 24px 28px 28px;
}

.tjis-career-job__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tjis-career-job__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(5, 32, 89, 0.06);
  color: #052059;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.tjis-career-job__tags span i {
  color: #f99f3a;
  font-size: 12px;
}

.tjis-career-job__tag--deadline {
  background: rgba(231, 76, 60, 0.1) !important;
  color: #c0392b !important;
}

.tjis-career-job__body h4 {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
}

.tjis-career-job__body p {
  font-size: 15px;
  line-height: 1.75;
  color: #565656;
  margin: 0 0 18px;
}

.tjis-career-job__salary {
  font-weight: 600;
  color: #052059 !important;
}

.tjis-career-job__body .tjis-btn {
  border: none;
  cursor: pointer;
}

/* Career apply modal */
.tjis-career-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.tjis-career-modal__header {
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border: none;
  padding: 22px 28px;
}

.tjis-career-modal__header .modal-title {
  color: #fff;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tjis-career-modal__header .modal-title i {
  color: #f99f3a;
}

.tjis-career-modal__body {
  padding: 28px;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.tjis-career-form__section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(5, 32, 89, 0.05);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-career-form__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 20px;
}

.tjis-career-form__section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f99f3a;
  color: #052059;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.tjis-career-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #052059;
}

.tjis-career-form .form-control,
.tjis-career-form .form-select {
  border: 1px solid rgba(5, 32, 89, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: #444;
  background: #fafafa;
}

.tjis-career-form .form-control:focus,
.tjis-career-form .form-select:focus {
  border-color: #052059;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 32, 89, 0.08);
}

.tjis-career-form__readonly {
  background: #f0f2f8 !important;
  cursor: not-allowed;
}

.tjis-career-upload {
  border: 2px dashed rgba(5, 32, 89, 0.25);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  background: #fafafa;
}

.tjis-career-upload--optional {
  border-color: rgba(5, 32, 89, 0.12);
}

.tjis-career-upload i {
  display: block;
  font-size: 28px;
  color: #052059;
  margin-bottom: 10px;
}

.tjis-career-upload small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

.tjis-career-form__declaration {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: #fafafa;
  border-radius: 12px;
  border-left: 4px solid #f99f3a;
}

.tjis-career-form__declaration .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tjis-career-form__declaration label {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.tjis-career-form__submit {
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  font-size: 15px;
}

/* Admission policy page */
.tjis-adm-intro,
.tjis-fee-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tjis-adm-intro p,
.tjis-fee-intro p {
  color: #565656;
  font-size: 16px;
  line-height: 1.7;
}

.tjis-adm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.tjis-adm-step {
  padding: 28px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.07);
  border: 1px solid rgba(5, 32, 89, 0.06);
  border-top: 4px solid #f99f3a;
  text-align: center;
  transition: transform 0.3s ease;
}

.tjis-adm-step:hover {
  transform: translateY(-4px);
}

.tjis-adm-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 12px;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 14px;
}

.tjis-adm-step h3 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
}

.tjis-adm-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
}

.tjis-adm-policy {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  margin-bottom: 48px;
}

.tjis-adm-policy__block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(5, 32, 89, 0.08);
}

.tjis-adm-policy__block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.tjis-adm-policy__block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 16px;
}

.tjis-adm-policy__block h2 i {
  color: #f99f3a;
  font-size: 18px;
}

.tjis-adm-policy__block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tjis-adm-policy__block li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #565656;
}

.tjis-adm-policy__block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #f99f3a;
  border-radius: 50%;
}

.tjis-adm-policy__block li strong {
  color: #052059;
}

.tjis-adm-faq {
  margin-bottom: 48px;
}

.tjis-adm-faq__head {
  text-align: center;
  margin-bottom: 32px;
}

.tjis-adm-faq__title {
  font-family: var(--title-font);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #052059;
  margin: 12px 0 0;
}

.tjis-contact-aside .tjis-btn + .tjis-btn {
  margin-top: 0;
}

/* Fee structure page */
.tjis-fee-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.tjis-fee-doc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  border-left: 4px solid #052059;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-fee-doc:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.12);
}

.tjis-fee-doc__info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 220px;
}

.tjis-fee-doc__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border-radius: 14px;
  font-size: 24px;
}

.tjis-fee-doc__info h3 {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 4px;
}

.tjis-fee-doc__info p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.tjis-fee-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.tjis-fee-note {
  padding: 24px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.07);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-align: center;
}

.tjis-fee-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  border-radius: 12px;
  font-size: 18px;
}

.tjis-fee-note h3 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
}

.tjis-fee-note p {
  font-size: 13px;
  line-height: 1.6;
  color: #565656;
  margin: 0;
}

/* Exam page */
.tjis-exam-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.tjis-exam-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-exam-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  color: #fff;
}

.tjis-exam-block__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(249, 159, 58, 0.2);
  color: #f99f3a;
  font-size: 20px;
}

.tjis-exam-block__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.tjis-exam-block__title span {
  color: #f99f3a;
  font-weight: 600;
}

.tjis-exam-block__meta {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.tjis-exam-block .tjis-fee-list {
  padding: 20px 22px 24px;
  gap: 14px;
}

.tjis-exam-soon {
  pointer-events: none;
  opacity: 0.75;
  white-space: nowrap;
}

/* Mandatory disclosure page shell */
.tjis-md-page .mandatory-disclosure-content {
  margin-bottom: 8px;
}

.tjis-md-page .md-section-card {
  scroll-margin-top: 100px;
}

/* Leadership desk pages */
.tjis-desk-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.tjis-desk-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.tjis-desk-list--single {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tjis-desk-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.1);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-desk-card--reverse {
  grid-template-columns: 1fr 320px;
}

.tjis-desk-card--reverse .tjis-desk-card__profile {
  order: 2;
}

.tjis-desk-card--reverse .tjis-desk-card__body {
  order: 1;
}

.tjis-desk-card__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  background: linear-gradient(160deg, #052059 0%, #1a3a7a 100%);
  color: #fff;
  text-align: center;
}

.tjis-desk-card--reverse .tjis-desk-card__profile {
  background: linear-gradient(160deg, #1a3a7a 0%, #052059 100%);
}

.tjis-desk-card__photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(249, 159, 58, 0.6);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.tjis-desk-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjis-desk-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #f99f3a;
}

.tjis-desk-card__name {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.tjis-desk-card__designation {
  font-size: 14px;
  color: #f99f3a;
  font-weight: 600;
  margin: 0 0 4px;
}

.tjis-desk-card__org {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.tjis-desk-card__body {
  position: relative;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tjis-desk-card__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  border-radius: 12px;
  font-size: 18px;
}

.tjis-desk-card__message-wrap,
.tjis-pdesk__message-body {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.tjis-desk-msg__preview,
.tjis-desk-msg__full {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.tjis-pdesk__message-body .tjis-desk-msg__preview,
.tjis-pdesk__message-body .tjis-desk-msg__full {
  font-size: 16px;
  line-height: 1.85;
}

.tjis-desk-msg__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  background: rgba(249, 159, 58, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tjis-desk-msg__toggle:hover {
  background: #f99f3a;
  color: #052059;
}

.tjis-desk-msg__toggle i {
  font-size: 12px;
  color: #f99f3a;
  transition: color 0.2s ease;
}

.tjis-desk-msg__toggle:hover i {
  color: #052059;
}

.tjis-desk-card__footer {
  padding-top: 20px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
  font-size: 15px;
  color: #565656;
}

.tjis-desk-card__footer strong {
  color: #052059;
  font-family: var(--title-font);
}

.tjis-desk-nav {
  max-width: 560px;
  margin: 0 auto;
}

.tjis-desk-nav__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-desk-nav__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(5, 32, 89, 0.12);
}

.tjis-desk-nav__link > .far {
  margin-left: auto;
  color: #f99f3a;
  transition: transform 0.2s;
}

.tjis-desk-nav__link:hover > .far {
  transform: translateX(4px);
}

.tjis-desk-nav__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 12px;
  font-size: 20px;
}

.tjis-desk-nav__link span small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 2px;
}

.tjis-desk-nav__link span strong {
  display: block;
  font-family: var(--title-font);
  font-size: 16px;
  color: #052059;
}

/* Principal's Desk — sticky profile + message card */
.tjis-pdesk {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto 40px;
}

.tjis-pdesk__profile {
  position: sticky;
  top: 100px;
}

.tjis-pdesk__profile-card {
  padding: 28px 24px 32px;
  background: linear-gradient(160deg, #052059 0%, #1a3a7a 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tjis-pdesk__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f99f3a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.tjis-pdesk__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjis-pdesk__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #f99f3a;
}

.tjis-pdesk__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  margin-bottom: 14px;
  background: rgba(249, 159, 58, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f99f3a;
}

.tjis-pdesk__name {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.tjis-pdesk__role {
  font-size: 14px;
  font-weight: 600;
  color: #f99f3a;
  margin: 0 0 4px;
}

.tjis-pdesk__org {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.tjis-pdesk__message-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px 32px;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.1);
  border: 1px solid rgba(5, 32, 89, 0.06);
  border-left: 4px solid #f99f3a;
}

.tjis-pdesk__message-head {
  margin-bottom: 20px;
}

.tjis-pdesk__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 12px;
  background: rgba(249, 159, 58, 0.12);
  color: #f99f3a;
  border-radius: 12px;
  font-size: 20px;
}

.tjis-pdesk__message-body .tjis-desk-msg__preview,
.tjis-pdesk__message-body .tjis-desk-msg__full {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.tjis-pdesk__sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
  text-align: right;
}

.tjis-pdesk__sign-line {
  flex-shrink: 0;
  width: 48px;
  height: 3px;
  background: #f99f3a;
  border-radius: 2px;
}

.tjis-pdesk__sign strong {
  display: block;
  font-family: var(--title-font);
  font-size: 17px;
  color: #052059;
}

.tjis-pdesk__sign span {
  font-size: 13px;
  color: #888;
}

/* Team pages — faculty, admin staff, life gallery */
.tjis-team-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.tjis-team-dept {
  margin-bottom: 40px;
}

.tjis-team-dept:last-child {
  margin-bottom: 0;
}

.tjis-team-dept__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border-radius: 14px;
  color: #fff;
}

.tjis-team-dept__head i {
  color: #f99f3a;
  font-size: 20px;
}

.tjis-team-dept__head h2 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  flex: 1;
  color: #fff;
}

.tjis-team-dept__count {
  padding: 4px 12px;
  background: rgba(249, 159, 58, 0.2);
  color: #f99f3a;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.tjis-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tjis-team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.tjis-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.12);
}

.tjis-team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
}

.tjis-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-team-card:hover .tjis-team-card__photo img {
  transform: scale(1.05);
}

.tjis-team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-team-card__body {
  padding: 16px 14px 18px;
  background: #fff;
  border-top: 3px solid #f99f3a;
}

.tjis-team-card__name {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 4px;
  line-height: 1.35;
}

.tjis-team-card__role {
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.tjis-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-staff-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-staff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(5, 32, 89, 0.12);
}

.tjis-staff-card__photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(249, 159, 58, 0.5);
  background: linear-gradient(135deg, #052059, #1a3a7a);
}

.tjis-staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tjis-staff-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f99f3a;
}

.tjis-staff-card__name {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 4px;
  line-height: 1.3;
}

.tjis-staff-card__role {
  font-size: 14px;
  color: #565656;
  margin: 0 0 8px;
  line-height: 1.4;
}

.tjis-staff-card__dept {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(5, 32, 89, 0.08);
  color: #052059;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tjis-life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-life-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-life-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-life-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #052059;
  text-decoration: none;
}

.tjis-life-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-life-card:hover .tjis-life-card__media img {
  transform: scale(1.06);
}

.tjis-life-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 32, 89, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tjis-life-card:hover .tjis-life-card__overlay {
  opacity: 1;
}

.tjis-life-card__zoom {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f99f3a;
  color: #052059;
  border-radius: 50%;
  font-size: 18px;
}

.tjis-life-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-life-card__title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 10px;
  line-height: 1.35;
}

.tjis-life-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #565656;
  margin: 0 0 14px;
  flex: 1;
}

.tjis-life-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-life-card__link i {
  transition: transform 0.2s;
}

.tjis-life-card:hover .tjis-life-card__link {
  color: #f99f3a;
}

.tjis-life-card:hover .tjis-life-card__link i {
  transform: translateX(4px);
}

/* Student Life page — multi-image carousel */
.tjis-sl-wrap {
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.tjis-sl-multi {
  width: 100%;
}

.tjis-sl-multi .carousel-inner {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.tjis-sl-multi .carousel-item {
  width: 100%;
  padding: 0 !important;
}

.tjis-sl-multi .carousel-inner .tjis-sl-multi__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0;
}

.tjis-sl-multi__slide {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: #052059;
  box-shadow: 0 4px 16px rgba(5, 32, 89, 0.1);
}

.tjis-sl-multi__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tjis-sl-multi__slide:hover img {
  transform: scale(1.05);
}

.tjis-sl-multi__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(transparent, rgba(5, 32, 89, 0.85));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.tjis-sl-multi .carousel-control-prev,
.tjis-sl-multi .carousel-control-next {
  width: 48px;
  height: 48px;
  bottom: auto;
  background: transparent;
}

.tjis-sl-multi__ctrl {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #052059;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 18px rgba(5, 32, 89, 0.16), 0 0 0 2px rgba(5, 32, 89, 0.06);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 5;
}

.tjis-sl-multi__ctrl i {
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

.tjis-sl-multi__ctrl:hover,
.tjis-sl-multi__ctrl:focus {
  background: #f99f3a;
  color: #052059;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(249, 159, 58, 0.35);
  outline: none;
}

.tjis-sl-multi__ctrl .carousel-control-prev-icon,
.tjis-sl-multi__ctrl .carousel-control-next-icon {
  display: none;
}

.tjis-sl-multi .carousel-control-prev {
  left: 14px;
}

.tjis-sl-multi .carousel-control-next {
  right: 14px;
}

.tjis-student-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tjis-student-card {
  padding: 28px 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.tjis-student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(5, 32, 89, 0.12);
}

.tjis-student-card--wide {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.tjis-student-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 14px;
  font-size: 22px;
}

.tjis-student-card__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 12px;
  line-height: 1.3;
}

.tjis-student-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #565656;
  margin: 0;
}

/* Hostel pages */
.tjis-hostel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tjis-hostel-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-hostel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-hostel-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  text-decoration: none;
}

.tjis-hostel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-hostel-card:hover .tjis-hostel-card__media img {
  transform: scale(1.06);
}

.tjis-hostel-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-hostel-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 32, 89, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  gap: 8px;
}

.tjis-hostel-card:hover .tjis-hostel-card__overlay {
  opacity: 1;
}

.tjis-hostel-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-hostel-card__title {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tjis-hostel-card__title a {
  color: #052059;
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-hostel-card:hover .tjis-hostel-card__title a {
  color: #f99f3a;
}

.tjis-hostel-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
  margin: 0 0 14px;
  flex: 1;
}

.tjis-hostel-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  text-decoration: none;
}

.tjis-hostel-card__link i {
  transition: transform 0.2s;
}

.tjis-hostel-card:hover .tjis-hostel-card__link {
  color: #f99f3a;
}

.tjis-hostel-card:hover .tjis-hostel-card__link i {
  transform: translateX(4px);
}

.tjis-hostel-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 32, 89, 0.08);
}

.tjis-hostel-content {
  margin-bottom: 0;
}

.tjis-hostel-featured-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Facilities pages */
.tjis-fac-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tjis-fac-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-fac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-fac-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
}

.tjis-fac-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-fac-card:hover .tjis-fac-card__media img {
  transform: scale(1.06);
}

.tjis-fac-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-fac-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #052059;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.tjis-fac-card__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(249, 159, 58, 0.95);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(249, 159, 58, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.tjis-fac-card__zoom:hover {
  transform: scale(1.08);
  background: #f99f3a;
}

.tjis-fac-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-fac-card__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
}

.tjis-fac-card__title a {
  color: #052059;
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-fac-card:hover .tjis-fac-card__title a {
  color: #f99f3a;
}

.tjis-fac-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
  margin: 0 0 14px;
  flex: 1;
}

.tjis-fac-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #052059;
  text-decoration: none;
  margin-top: auto;
}

.tjis-fac-card__link i {
  transition: transform 0.2s;
}

.tjis-fac-card:hover .tjis-fac-card__link {
  color: #f99f3a;
}

.tjis-fac-card:hover .tjis-fac-card__link i {
  transform: translateX(4px);
}

.tjis-fac-gallery {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
}

.tjis-fac-gallery__title {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 20px;
}

.tjis-fac-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.tjis-fac-lightbox.is-open {
  display: flex;
}

.tjis-fac-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 32, 89, 0.9);
  backdrop-filter: blur(4px);
}

.tjis-fac-lightbox__dialog {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(960px, 100%);
  z-index: 1;
}

.tjis-fac-lightbox__content {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.tjis-fac-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(5, 32, 89, 0.75);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.tjis-fac-lightbox__close:hover {
  background: #f99f3a;
}

.tjis-fac-lightbox__figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #052059;
}

.tjis-fac-lightbox__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjis-fac-lightbox__caption {
  padding: 18px 22px 22px;
}

.tjis-fac-lightbox__caption h2 {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 6px;
}

.tjis-fac-lightbox__caption p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
}

.tjis-fac-lightbox__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.tjis-fac-lightbox__nav:hover {
  background: #f99f3a;
  transform: scale(1.05);
}

/* Curriculum page — conceptual tabbed layout */
.tjis-cur-page {
  padding-top: 0;
}

.tjis-cur-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: -56px 0 36px;
  padding: 16px 0;
  background: linear-gradient(180deg, #F3ECDC 0%, rgba(243, 236, 220, 0.95) 80%, transparent 100%);
  backdrop-filter: blur(6px);
}

.tjis-cur-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
  scrollbar-color: #f99f3a transparent;
}

.tjis-cur-tabs::-webkit-scrollbar {
  height: 4px;
}

.tjis-cur-tabs::-webkit-scrollbar-thumb {
  background: #f99f3a;
  border-radius: 4px;
}

.tjis-cur-panel {
  animation: tjisCurIn 0.18s ease-out;
}

.tjis-cur-panel[hidden] {
  display: none !important;
}

.tjis-cur-panel.is-active {
  animation: tjisCurIn 0.18s ease-out;
}

.tjis-cur-side-panel[hidden] {
  display: none !important;
}

@keyframes tjisCurIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tjis-cur-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(5, 32, 89, 0.1);
  color: #052059;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(5, 32, 89, 0.06);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.tjis-cur-tab i {
  color: #f99f3a;
  font-size: 13px;
}

.tjis-cur-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 159, 58, 0.45);
  color: #052059;
  box-shadow: 0 8px 20px rgba(5, 32, 89, 0.1);
}

.tjis-cur-tab.is-active {
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  border-color: #052059;
  color: #fff;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.2);
}

.tjis-cur-tab.is-active i {
  color: #f99f3a;
}

.tjis-cur-article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-cur-article__head {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, rgba(5, 32, 89, 0.04) 0%, rgba(249, 159, 58, 0.06) 100%);
  border-bottom: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-cur-article__title {
  font-family: var(--title-font);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #052059;
  margin: 8px 0 10px;
  line-height: 1.25;
}

.tjis-cur-article__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #565656;
  max-width: 640px;
}

.tjis-cur-prose {
  padding: 28px 32px 36px;
}

.tjis-cur-prose h2 {
  font-family: var(--title-font);
  color: #052059;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f99f3a;
  line-height: 1.35;
}

.tjis-cur-prose h2:not(:first-child) {
  margin-top: 32px;
}

.tjis-cur-prose h3 {
  font-family: var(--title-font);
  color: #052059;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tjis-cur-prose h3::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: #f99f3a;
}

.tjis-cur-prose h4 {
  color: #052059;
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.tjis-cur-prose p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.tjis-cur-prose ul,
.tjis-cur-prose ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.tjis-cur-prose ul li,
.tjis-cur-prose ol li {
  position: relative;
  padding: 10px 14px 10px 36px;
  margin-bottom: 8px;
  background: rgba(5, 32, 89, 0.03);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  border-left: 3px solid rgba(249, 159, 58, 0.5);
}

.tjis-cur-prose ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f99f3a;
}

.tjis-cur-prose ol {
  counter-reset: cur-item;
}

.tjis-cur-prose ol li {
  counter-increment: cur-item;
  padding-left: 42px;
}

.tjis-cur-prose ol li::before {
  content: counter(cur-item);
  position: absolute;
  left: 12px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #052059;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
}

.tjis-cur-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.08);
  font-size: 14px;
}

.tjis-cur-prose thead {
  background: #052059;
}

.tjis-cur-prose th {
  padding: 14px 16px;
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  border: none;
}

.tjis-cur-prose td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(5, 32, 89, 0.08);
  text-align: center;
  color: #444;
  background: #fff;
}

.tjis-cur-prose tbody tr:nth-child(even) td {
  background: rgba(5, 32, 89, 0.02);
}

.tjis-cur-prose tbody tr:hover td {
  background: rgba(249, 159, 58, 0.06);
}

.tjis-cur-prose strong {
  color: #052059;
  font-weight: 700;
}

.tjis-cur-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}

.tjis-cur-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.tjis-cur-side-prose {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-cur-side-prose img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

.tjis-cur-side-prose h4 {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 10px;
}

.tjis-cur-side-prose p {
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
  margin: 0 0 10px;
}

.tjis-cur-side-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  color: #fff;
}

.tjis-cur-side-highlight i {
  font-size: 22px;
  color: #f99f3a;
  margin-bottom: 4px;
}

.tjis-cur-side-highlight strong {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.tjis-cur-side-highlight span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.tjis-cur-side-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-align: center;
}

.tjis-cur-side-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  font-size: 22px;
}

.tjis-cur-side-card h3 {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
}

.tjis-cur-side-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
}

.tjis-cur-quicklinks {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
}

.tjis-cur-quicklinks h3 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 14px;
}

.tjis-cur-quicklinks a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(5, 32, 89, 0.06);
  color: #444;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.tjis-cur-quicklinks a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tjis-cur-quicklinks a i {
  width: 18px;
  color: #f99f3a;
  text-align: center;
}

.tjis-cur-quicklinks a:hover {
  color: #f99f3a;
  padding-left: 4px;
}

.tjis-empty--compact {
  padding: 40px 24px;
  margin: 0;
  box-shadow: none;
  background: transparent;
}

/* Life @ TJIS detail page */
.tjis-life-detail__zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.tjis-life-detail__zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tjis-life-detail__zoom:hover img {
  transform: scale(1.03);
}

.tjis-life-detail__zoom-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f99f3a;
  color: #052059;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.tjis-life-detail__zoom:hover .tjis-life-detail__zoom-badge {
  transform: scale(1.08);
}

.tjis-life-related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tjis-life-related__item {
  display: flex;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tjis-life-related__item:hover {
  background: rgba(243, 236, 220, 0.5);
  box-shadow: 0 4px 16px rgba(5, 32, 89, 0.06);
}

.tjis-life-related__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #052059;
}

.tjis-life-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tjis-life-related__item:hover .tjis-life-related__thumb img {
  transform: scale(1.06);
}

.tjis-life-related__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tjis-life-related__body strong {
  display: block;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  color: #052059;
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.tjis-life-related__item:hover .tjis-life-related__body strong {
  color: #f99f3a;
}

/* Photo Gallery pages */
.tjis-gal-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tjis-gal-cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tjis-gal-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.12);
}

.tjis-gal-cat-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  color: #f99f3a;
  border-radius: 14px;
  font-size: 22px;
}

.tjis-gal-cat-card__body {
  flex: 1;
  min-width: 0;
}

.tjis-gal-cat-card__body strong {
  display: block;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.tjis-gal-cat-card:hover .tjis-gal-cat-card__body strong {
  color: #f99f3a;
}

.tjis-gal-cat-card__body span {
  font-size: 13px;
  color: #888;
}

.tjis-gal-cat-card__arrow {
  flex-shrink: 0;
  color: #f99f3a;
  transition: transform 0.2s;
}

.tjis-gal-cat-card:hover .tjis-gal-cat-card__arrow {
  transform: translateX(4px);
}

.tjis-gal-album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tjis-gal-album-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-gal-album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-gal-album-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  text-decoration: none;
}

.tjis-gal-album-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-gal-album-card:hover .tjis-gal-album-card__media img {
  transform: scale(1.06);
}

.tjis-gal-album-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f99f3a;
}

.tjis-gal-album-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 32, 89, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #f99f3a;
  font-size: 32px;
}

.tjis-gal-album-card:hover .tjis-gal-album-card__overlay {
  opacity: 1;
}

.tjis-gal-album-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-gal-album-card__title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
}

.tjis-gal-album-card__title a {
  color: #052059;
  text-decoration: none;
  transition: color 0.2s;
}

.tjis-gal-album-card:hover .tjis-gal-album-card__title a {
  color: #f99f3a;
}

.tjis-gal-album-card__date {
  font-size: 13px;
  color: #888;
  margin: 0 0 12px;
}

.tjis-gal-album-card__date i {
  color: #f99f3a;
  margin-right: 6px;
}

.tjis-gal-album-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #f99f3a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tjis-gal-album-card__link i {
  transition: transform 0.2s;
}

.tjis-gal-album-card:hover .tjis-gal-album-card__link {
  color: #e8872e;
}

.tjis-gal-album-card:hover .tjis-gal-album-card__link i {
  transform: translateX(4px);
}

.tjis-gal-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tjis-gal-photo {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease;
}

.tjis-gal-photo:hover {
  transform: translateY(-3px);
}

.tjis-gal-photo__link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #052059;
}

.tjis-gal-photo__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tjis-gal-photo:hover .tjis-gal-photo__link img {
  transform: scale(1.06);
}

.tjis-gal-photo__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 32, 89, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #f99f3a;
  font-size: 24px;
}

.tjis-gal-photo:hover .tjis-gal-photo__overlay {
  opacity: 1;
}

.tjis-gal-photo__caption {
  padding: 10px 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: #052059;
  text-align: center;
  line-height: 1.35;
}

.tjis-gal-album-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* Video Gallery page */
.tjis-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tjis-vid-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tjis-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(5, 32, 89, 0.12);
}

.tjis-vid-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #052059, #1a3a7a);
  cursor: pointer;
  text-align: left;
}

.tjis-vid-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tjis-vid-card:hover .tjis-vid-card__media img {
  transform: scale(1.06);
}

.tjis-vid-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 32, 89, 0.55) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}

.tjis-vid-card:hover .tjis-vid-card__shade {
  background: rgba(5, 32, 89, 0.35);
}

.tjis-vid-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(249, 159, 58, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(249, 159, 58, 0.45);
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.tjis-vid-card__play i {
  margin-left: 4px;
}

.tjis-vid-card:hover .tjis-vid-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #f99f3a;
}

.tjis-vid-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #c4302b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.tjis-vid-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tjis-vid-card__title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
  line-height: 1.35;
  transition: color 0.2s;
}

.tjis-vid-card:hover .tjis-vid-card__title {
  color: #f99f3a;
}

.tjis-vid-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #565656;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tjis-vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.tjis-vid-modal.is-open {
  display: flex;
}

.tjis-vid-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 32, 89, 0.88);
  backdrop-filter: blur(4px);
}

.tjis-vid-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  background: #052059;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.tjis-vid-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #052059;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tjis-vid-modal__title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.tjis-vid-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tjis-vid-modal__close:hover {
  background: #f99f3a;
  color: #fff;
}

.tjis-vid-modal__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.tjis-vid-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .tjis-page-hero {
    padding: 80px 0 56px;
  }

  .tjis-ach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-cal-widget {
    position: static;
    margin-top: 32px;
  }

  .tjis-article__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-vm-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-vm-features {
    grid-template-columns: 1fr;
  }

  .tjis-contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-career-perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-adm-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-fee-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-contact-map {
    min-height: 360px;
  }

  .tjis-desk-card,
  .tjis-desk-card--reverse {
    grid-template-columns: 1fr;
  }

  .tjis-desk-card--reverse .tjis-desk-card__profile,
  .tjis-desk-card--reverse .tjis-desk-card__body {
    order: unset;
  }

  .tjis-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tjis-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-life-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-pdesk {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tjis-pdesk__profile {
    position: static;
  }

  .tjis-student-grid {
    grid-template-columns: 1fr;
  }

  .tjis-hostel-grid {
    grid-template-columns: 1fr;
  }

  .tjis-sl-multi .carousel-inner .tjis-sl-multi__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .tjis-sl-multi__slide {
    height: 240px;
  }

  .tjis-gal-cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-gal-album-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tjis-gal-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tjis-vid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .tjis-fac-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .tjis-fac-lightbox__nav {
    display: none;
  }

  .tjis-cur-aside {
    position: static;
  }

  .tjis-cur-prose {
    padding: 24px 24px 28px;
  }

  .tjis-cur-article__head {
    padding: 24px 24px 20px;
  }
}

@media (max-width: 767px) {
  .tjis-page-body {
    padding: 40px 0 56px;
  }

  .tjis-article__content {
    padding: 24px 20px 28px;
  }

  .tjis-ach-grid {
    grid-template-columns: 1fr;
  }

  .tjis-news-grid {
    grid-template-columns: 1fr;
  }

  .tjis-cal-event {
    padding: 14px 16px;
  }

  .tjis-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .tjis-about-media__chip {
    right: 12px;
    bottom: -12px;
  }

  .tjis-about-content__actions {
    flex-direction: column;
  }

  .tjis-about-content__actions .tjis-btn {
    justify-content: center;
  }

  .tjis-vm-values {
    grid-template-columns: 1fr;
  }

  .tjis-vm-card {
    padding: 28px 22px;
  }

  .tjis-desk-card__body {
    padding: 28px 22px;
  }

  .tjis-desk-card__photo-wrap {
    width: 130px;
    height: 130px;
  }

  .tjis-desk-card__profile {
    padding: 28px 20px;
  }

  .tjis-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .tjis-staff-grid {
    grid-template-columns: 1fr;
  }

  .tjis-staff-card {
    padding: 16px;
  }

  .tjis-life-grid {
    grid-template-columns: 1fr;
  }

  .tjis-team-dept__head h2 {
    font-size: 17px;
  }

  .tjis-pdesk__message-card {
    padding: 24px 20px 22px;
  }

  .tjis-pdesk__photo {
    width: 130px;
    height: 130px;
  }

  .tjis-sl-multi .carousel-inner .tjis-sl-multi__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tjis-sl-multi__slide {
    height: 220px;
  }

  .tjis-sl-multi .carousel-control-prev,
  .tjis-sl-multi .carousel-control-next,
  .tjis-sl-multi__ctrl {
    width: 40px;
    height: 40px;
  }

  .tjis-sl-multi__ctrl i {
    font-size: 14px;
  }

  .tjis-sl-multi .carousel-control-prev {
    left: 10px;
  }

  .tjis-sl-multi .carousel-control-next {
    right: 10px;
  }

  .tjis-gal-cats {
    grid-template-columns: 1fr;
  }

  .tjis-gal-album-grid {
    grid-template-columns: 1fr;
  }

  .tjis-gal-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tjis-vid-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tjis-vid-card__play {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .tjis-fac-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tjis-cur-tabs-wrap {
    margin-top: -40px;
    margin-bottom: 28px;
  }

  .tjis-cur-tab {
    padding: 10px 14px;
    font-size: 12px;
  }

  .tjis-cur-prose {
    padding: 20px 18px 24px;
  }

  .tjis-cur-article__head {
    padding: 20px 18px 16px;
  }

  .tjis-cur-prose h2 {
    font-size: 19px;
  }

  .tjis-cur-prose h3 {
    font-size: 16px;
  }

  .tjis-contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tjis-contact-form-card {
    padding: 24px 20px;
  }

  .tjis-contact-map {
    min-height: 480px;
  }

  .tjis-contact-map__panel {
    width: auto;
    margin: 20px;
    padding: 24px 20px;
  }

  .tjis-contact-map__panel h2 {
    font-size: 20px;
  }

  .tjis-career-perks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tjis-career-intro__actions {
    flex-direction: column;
  }

  .tjis-career-intro__actions .tjis-btn {
    justify-content: center;
  }

  .tjis-career-job__head {
    padding: 16px 18px;
    gap: 12px;
  }

  .tjis-career-job__meta strong {
    font-size: 16px;
  }

  .tjis-career-job__body {
    padding: 20px 18px 22px;
  }

  .tjis-career-modal__body {
    padding: 20px 16px;
  }

  .tjis-career-form__section {
    padding: 18px 16px;
  }

  .tjis-adm-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tjis-adm-policy {
    padding: 24px 20px;
    margin-bottom: 32px;
  }

  .tjis-fee-doc {
    padding: 20px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tjis-fee-doc .tjis-btn {
    width: 100%;
    justify-content: center;
  }

  .tjis-fee-notes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
