* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 21px;
}

h1,
h2,
.h1,
.h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-weight: 600;
}

button,
.btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: var(--font-body);
  font-weight: 600;
}

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

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

.scroll-reveal {
  opacity: 1;
  transform: none;
}

html.scroll-reveal-enabled .scroll-reveal:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
}

html.scroll-reveal-enabled .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.scroll-reveal-enabled .scroll-reveal,
  html.scroll-reveal-enabled .scroll-reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* =========================================================
   BUTTON VARIANTS
   ========================================================= */
.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #c62026;
  --bs-btn-border-color: #c62026;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #b51b21;
  --bs-btn-hover-border-color: #b51b21;
  --bs-btn-focus-shadow-rgb: 198, 32, 38;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #a3171d;
  --bs-btn-active-border-color: #a3171d;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #c62026;
  --bs-btn-disabled-border-color: #c62026;
  box-shadow: 0 12px 24px rgba(145, 22, 28, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(145, 22, 28, 0.22);
}

.btn-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--action-blue);
  --bs-btn-border-color: var(--action-blue);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #033a7a;
  --bs-btn-hover-border-color: #033a7a;
  --bs-btn-focus-shadow-rgb: var(--action-blue-rgb);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #02356f;
  --bs-btn-active-border-color: #02356f;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: var(--action-blue);
  --bs-btn-disabled-border-color: var(--action-blue);
  box-shadow: 0 12px 24px rgba(var(--action-blue-rgb), 0.16);
}

.btn-secondary:hover {
  box-shadow: 0 14px 26px rgba(var(--action-blue-rgb), 0.2);
}

.btn-outline-secondary {
  --bs-btn-color: var(--action-blue);
  --bs-btn-border-color: rgba(var(--action-blue-rgb), 0.22);
  --bs-btn-hover-color: var(--action-blue);
  --bs-btn-hover-bg: rgba(var(--action-blue-rgb), 0.05);
  --bs-btn-hover-border-color: rgba(var(--action-blue-rgb), 0.34);
  --bs-btn-focus-shadow-rgb: var(--action-blue-rgb);
  --bs-btn-active-color: var(--action-blue);
  --bs-btn-active-bg: rgba(var(--action-blue-rgb), 0.08);
  --bs-btn-active-border-color: rgba(var(--action-blue-rgb), 0.38);
  --bs-btn-disabled-color: var(--action-blue);
  --bs-btn-disabled-bg: #ffffff;
  --bs-btn-disabled-border-color: rgba(var(--action-blue-rgb), 0.16);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(9, 20, 37, 0.06);
}

.btn-outline-secondary:hover {
  box-shadow: 0 12px 24px rgba(9, 20, 37, 0.08);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header a {
  text-decoration: none;
}

.anchor-target {
  scroll-margin-top: 130px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #c00000;;
  color: var(--light);
  font-size: 13px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem 1.25rem;
  padding: 8px 24px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.25rem;
  min-width: 0;
  margin-left: auto;
}

.top-left a,
.top-links a {
  color: var(--light);
  font-weight: 500;
}

.top-left a:hover,
.top-links a:hover {
  color: var(--primary-gold);
}

.staff-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-weight: 600;
}

.staff-utility-link__chevron {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: var(--primary-gold);
  line-height: 1;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.top-social-link:hover {
  color: #ffffff;
  background: rgba(246, 170, 27, 0.16);
  border-color: rgba(246, 170, 27, 0.55);
  transform: translateY(-1px);
}

.top-social-link i {
  font-size: 12px;
}

/* ---------- MAIN HEADER ---------- */
.main-header {
  background: var(--light);
  border-top: 3px solid var(--primary-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

/* ---------- LOGO ---------- */
.logo img {
  height: 56px;
}

/* ---------- NAVIGATION ---------- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu > a,
.nav-item > a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

/* ACTIVE / HOVER LINE */
.nav-menu > a.active::after,
.nav-item > a.active::after,
.nav-menu > a:hover::after,
.nav-item > a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--primary-red);
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

/* ---------- DROPDOWNS (DESKTOP) ---------- */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--light);
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  border-top: 4px solid var(--primary-gold);
  display: none;
  flex-direction: column;
  padding: 12px 0;
}

.dropdown a {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.dropdown a:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  width: calc(100% - 36px);
  height: 1px;
  background: #e5e7eb;
}

.dropdown a:hover {
  background: rgba(246,170,27,.12);
  color: var(--primary-red);
}

.nav-item:hover .dropdown {
  display: flex;
}

/* ---------- DROPDOWN ARROWS ---------- */
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 11px;
  color: var(--primary-gold);
  transition: transform .25s ease;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ---------- HEADER ACTIONS ---------- */
.header-actions {
  display: flex;
  gap: 20px;
  font-size: 18px;
  cursor: pointer;
}

.header-actions i:hover {
  color: var(--primary-red);
}

/* =========================================================
   RESPONSIVE HEADER & MOBILE MENU
   ========================================================= */
.mobile-toggle {
  display: none;
}

@media (max-width: 992px) {

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--light);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 22px 22px;
    gap: 14px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
    border-left: 4px solid var(--primary-gold);
  }

  .nav-menu.show {
    transform: translateX(0);
  }

  .nav-item:hover .dropdown {
    display: none;
  }

  .dropdown {
    position: static;
    width: 100%;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }

  .nav-item.open .dropdown {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 900;
}

.mobile-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   SITE FOOTER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ PROFESSIONAL
   =============================== */

.site-footer {
  background: var(--action-blue);
  color: #d6dbe3;
  font-size: 0.9rem;
}

/* MAIN FOOTER GRID */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

/* COLUMN HEADINGS */
.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}

/* subtle divider under heading */
.footer-col h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: #df1f26; /* GiTi red accent */
  margin-top: 0.4rem;
}

/* TEXT */
.footer-col p {
  margin-bottom: 0.6rem;
  line-height: 21px;
  color: #cfd6df;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #cfd6df;
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.85rem;
  line-height: 0.6rem;
  color: #b8c0cc;
  background: rgba(var(--action-blue-rgb), 0.84);
}


@media (max-width: 768px) {

  .top-flex {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 0.9rem;
    row-gap: 0.55rem;
    padding: 8px 12px 10px;
  }

  .top-left {
    grid-column: 1;
    justify-self: center;
  }

  .top-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
    justify-self: stretch;
    row-gap: 0.4rem;
    column-gap: 0.85rem;
    margin-left: 0;
    padding-inline: 0.35rem;
    text-align: center;
  }

  .top-social {
    grid-column: 2;
    justify-self: center;
  }

  .footer-container {
    padding: 3rem 1.2rem 2.5rem;
    text-align: center;

    /* Grid centering */
    justify-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 420px;
  }

  .footer-col h4::after {
    margin: 0.4rem auto 0;
  }

  .footer-col a,
  .footer-col p {
    text-align: center;
  }

  .footer-col {
    margin-bottom: 1rem;
  }
}



/* =========================================================
   SUBSIDIARIES STRIP
   ========================================================= */
.subsidiary-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  height: 100%;
  border: none;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(9, 20, 37, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.subsidiary-card img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.subsidiary-card:hover {
  background: #fff7f7;
  box-shadow: 0 14px 28px rgba(9, 20, 37, 0.08);
  transform: translateY(-1px);
}


/* ===============================
   MOBILE MENU CLOSE BUTTON
   =============================== */
.menu-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--primary-red);
  cursor: pointer;

  position: absolute;
  top: 18px;
  right: 18px;

  display: none;
}

/* Show close button ONLY when menu is open */
@media (max-width: 992px) {
  .nav-menu.show .menu-close {
    display: block;
  }
}


.menu-logo {
  display: none;
}

@media (max-width: 992px) {


  .header-flex .logo {
    display: none;
  }


  .nav-menu .menu-logo {
    display: block;
  }


  .header-flex {
    justify-content: flex-end;
  }

  .header-actions {
    margin-left: auto;
  }
}


@media (max-width: 992px) {
  .nav-menu.show ~ .header-actions .mobile-toggle {
    display: none;
  }
}


/* Hide mobile logo by default */
.mobile-logo {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 991px) {

  /* Hide desktop logo */
  .logo {
    display: none;
  }

  /* Header layout */
  .header-flex {
    display: flex;
    align-items: center;
  }

  /* Header actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  /* MOBILE LOGO */
  .mobile-logo {
    display: flex;
    align-items: center;
    margin-right: auto;   /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ PUSH ICONS TO RIGHT */
  }

  .mobile-logo img {
    height: 44px;         /* Bigger */
    max-width: 180px;     /* Rectangular */
    width: auto;
    object-fit: contain;
  }

  /* Icons */
  .header-actions i {
    font-size: 18px;
    cursor: pointer;
  }
}

/* =========================================================
   HOMEPAGE LEADERSHIP
   ========================================================= */
.ceo-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--action-blue-rgb), 0.04) 100%);
}

.ceo-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 2.5rem;
  align-items: center;
}

.ceo-image-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #f5f6f8;

}

.ceo-image-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.ceo-content-card {
  background: #ffffff;

  border-radius: 10px;

  padding: 2.4rem;
}

.ceo-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--action-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ceo-role {
  margin-bottom: 0.6rem;
  color: #c00000;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ceo-name {
  margin-bottom: 1rem;
  color: #0f1720;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ceo-summary {
  max-width: 44rem;
  margin-bottom: 1.5rem;
  color: #485767;
  font-size: 1.02rem;
  line-height: 21px;
}

.ceo-bio-box {
  padding: 1.35rem 1.45rem;
  border-left: 4px solid var(--action-blue);
  background: rgba(var(--action-blue-rgb), 0.03);
}

.ceo-bio-box p {
  margin: 0;
  color: #24384e;
  font-size: 0.98rem;
  line-height: 21px;
}

@media (max-width: 991px) {
  .ceo-section {
    padding: 3rem 0;
  }

  .ceo-shell {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ceo-image-card img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .ceo-image-card,
  .ceo-content-card {
    border-radius: 12px;
  }

  .ceo-content-card {
    padding: 1.5rem;
  }

  .ceo-image-card img {
    min-height: 320px;
  }

  .ceo-name {
    font-size: 1.8rem;
  }

  .ceo-summary,
  .ceo-bio-box p {
    font-size: 0.97rem;
    line-height: 1.75;
  }

}

/* =========================================================
   INTERNAL PAGE HEROES
   ========================================================= */
.info-page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 6rem 0 4.2rem;
  background-color: var(--action-blue);
  background-image:
    linear-gradient(90deg, rgba(var(--action-blue-rgb), 0.96) 0%, rgba(var(--action-blue-rgb), 0.86) 34%, rgba(9, 20, 37, 0.76) 62%, rgba(9, 20, 37, 0.9) 100%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 28%, transparent 58%),
    var(--hero-image, linear-gradient(180deg, rgba(var(--action-blue-rgb), 1) 0%, rgba(var(--action-blue-rgb), 0.94) 100%));
  background-position: center center, center center, var(--hero-position, center center);
  background-size: auto, auto, var(--hero-size, cover);
  background-repeat: no-repeat;
}

.info-page-hero-title-only {
  padding: 7rem 0 5.1rem;
}

.info-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.04) 0%, rgba(8, 16, 30, 0.18) 100%);
}

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

.info-page-hero-inner {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.info-page-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.info-page-hero h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.3rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.info-page-hero p {
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.8;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.info-page-subnav {
  background: #ffffff;
  border-bottom: 1px solid rgba(var(--action-blue-rgb), 0.08);
}

.info-page-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.1rem 0;
}

.info-page-subnav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(var(--action-blue-rgb));
  border-radius: 999px;
  background: #ffffff;
  color: var(--action-blue);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.info-page-subnav-link:hover,
.info-page-subnav-link.active {

  border-color: rgba(var(--action-blue-rgb));
  color: var(--action-blue);
  transform: translateY(-1px);
}

.info-page-section {
  padding: 3.25rem 0;
}

.info-page-section-tight {
  padding-top: 0;
  padding-bottom: 4.5rem;
}

.info-page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 1.5rem;
  align-items: start;
}

.info-page-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.info-page-card {
  height: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;

}



.info-page-card-soft {
  background: rgba(var(--action-blue-rgb), 0.02);
  box-shadow: none;
}

.info-page-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--action-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-page-card h2,
.info-page-card h3 {
  margin-bottom: 0.85rem;
  color: #101927;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.info-page-card h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
}

.info-page-card h3 {
  font-size: 1.25rem;
}

.info-page-card p {
  margin-bottom: 1rem;
  color: #4b5a6a;
  font-size: 1rem;
  line-height: 21px;
}

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

.info-page-code {
  margin-bottom: 0.85rem;
  color: var(--action-blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.info-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.info-page-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #26394c;
  font-size: 0.98rem;
  line-height: 22px;
}

.info-page-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: black;
}

.info-page-divider {
  margin: 0 0 3.25rem;
  border-top: 2px dashed rgba(var(--action-blue-rgb), 0.24);
}

.info-page-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: 1.5rem;
  align-items: stretch;
}

.info-page-profile-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

.info-page-profile-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.info-page-meta {
  margin-bottom: 0.55rem;
  color: #c00000;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info-page-panel {
  padding: 1.35rem 1.45rem;
  border-left: 4px solid var(--action-blue);
  background: rgba(var(--action-blue-rgb), 0.04);
}

.info-page-panel p {
  color: #24384e;
}

.info-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.info-page-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: none;
  border-radius: 16px;
  background: #ffffff;
}

.info-page-cta-panel h2 {
  margin-bottom: 0.6rem;
  color: #101927;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.15;
}

.info-page-cta-panel p {
  max-width: 38rem;
  margin: 0;
  color: #4b5a6a;
  font-size: 0.98rem;
  line-height: 21px;
}

.info-page-empty-state {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.info-page-empty-state p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.info-page-empty-state .info-page-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.programme-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.programme-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border: none;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(9, 20, 37, 0.08);
}

.programme-category-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.programme-category-card-link:hover,
.programme-category-card-link:focus-visible {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(9, 20, 37, 0.14);
}

.programme-category-card-link:focus-visible {
  outline: 3px solid rgba(var(--action-blue-rgb), 0.18);
  outline-offset: 3px;
}

.programme-category-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: rgba(var(--action-blue-rgb), 0.05);
}

.programme-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.programme-category-card-link:hover .programme-category-media img,
.programme-category-card-link:focus-visible .programme-category-media img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.programme-category-body {
  padding: 1.35rem 1.45rem 1.55rem;
}

.programme-category-body .info-page-label {
  margin-bottom: 0.9rem;
}

.programme-category-body .info-page-list {
  gap: 0.72rem;
}

@media (max-width: 991px) {
  .info-page-hero {
    padding: 4rem 0 3.5rem;
    background-position: center center, center center, var(--hero-mobile-position, var(--hero-position, center center));
    background-size: auto, auto, var(--hero-mobile-size, var(--hero-size, cover));
  }

  .info-page-hero-title-only {
    padding: 4.9rem 0 4.2rem;
  }

  .info-page-split,
  .info-page-grid-2,
  .info-page-grid-3,
  .info-page-profile,
  .info-page-cta-panel {
    grid-template-columns: 1fr;
  }

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

  .info-page-profile-media img {
    min-height: 420px;
  }

  .info-page-cta-panel {
    display: grid;
  }
}

@media (max-width: 768px) {
  .btn:not(.w-100) {
    --bs-btn-padding-y: 0.72rem;
    --bs-btn-padding-x: 1.05rem;
    --bs-btn-font-size: 0.94rem;
    min-height: 44px;
  }

  .info-page-hero {
    padding: 3.35rem 0 2.9rem;
  }

  .info-page-hero-title-only {
    padding: 4.25rem 0 3.6rem;
  }

  .info-page-hero h1 {
    font-size: 2rem;
  }

  .info-page-hero-inner {
    margin: 0 auto;
    text-align: center;
  }

  .info-page-hero p,
  .info-page-card p,
  .info-page-list li,
  .info-page-cta-panel p {
    font-size: 0.97rem;
    line-height: 21px;
  }

  .info-page-hero p {
    margin: 0 auto;
    max-width: 36rem;
  }

  .info-page-subnav-inner {
    gap: 0.65rem;
    padding: 0.9rem 0;
    justify-content: flex-start;
  }

  .info-page-subnav-link,
  .info-page-subnav-inner .btn {
    width: auto;
    max-width: 100%;
  }

  .info-page-section {
    padding: 2.6rem 0;
  }

  .info-page-card,
  .programme-category-card,
  .info-page-profile-media,
  .info-page-cta-panel {
    border-radius: 20px;
  }

  .info-page-card,
  .programme-category-body,
  .info-page-cta-panel {
    padding: 1.5rem;
  }

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

  .info-page-profile-media img {
    min-height: 320px;
  }

  .info-page-panel {
    border-radius: 0 16px 16px 0;
  }

  .info-page-actions {
    width: auto;
    justify-content: flex-start;
  }

  .info-page-actions .btn {
    width: auto;
    max-width: 100%;
  }
}

.sector-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sector-company-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem;
  border: none;
  border-radius: 14px;
  background: #f7fafd;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.24s ease;
}

.sector-company-card:hover {
  background: #f7fafd;
  color: inherit;
}

.sector-company-card:focus-visible {
  outline: 2px solid rgba(var(--action-blue-rgb), 0.22);
  outline-offset: 4px;
}

.sector-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  margin-bottom: 0;
  padding: 1.5rem;
  border: none;
  border-radius: 18px;
  background: #f4f7fb;
}

.sector-company-logo img {
  max-width: min(100%, 220px);
  max-height: 86px;
  width: auto;
  object-fit: contain;
}

.sector-company-content {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.sector-company-card .info-page-label {
  margin-bottom: 0;
}

.sector-company-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.18;
}

.sector-company-card p {
  margin-bottom: 0;
  max-width: 34rem;
  color: #4e6074;
  line-height: 1.7;
}

.sector-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: stretch;
}

.sector-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 2rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--action-blue-rgb), 0.02) 100%);
}

.sector-logo-card img {
  max-width: min(100%, 320px);
  max-height: 130px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .sector-company-grid,
  .sector-profile {
    grid-template-columns: 1fr;
  }

  .sector-logo-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .sector-company-logo,
  .sector-logo-card {
    border-radius: 20px;
  }

  .sector-company-card {
    padding: 1.4rem;
    gap: 1rem;
    border-radius: 22px;
  }

  .sector-company-logo {
    min-height: 128px;
    padding: 1.25rem;
  }

  .sector-company-logo img {
    max-height: 76px;
  }

  .sector-logo-card {
    min-height: 220px;
    padding: 1.5rem;
  }

  .sector-logo-card img {
    max-height: 108px;
  }
}
