/* International Journalists Association - Global Edition 4.0 */
:root {
  --ija-primary: #a10f20;
  --ija-primary-dark: #760817;
  --ija-gold: #cda43b;
  --ija-ink: #121c26;
  --ija-muted: #66727d;
  --ija-line: #e2e5e7;
  --ija-paper: #f5f4f0;
  --ija-white: #fff;
  --ija-container: 1280px;
  --ija-shadow: 0 22px 60px rgba(18, 28, 38, .1);
  --ija-font: inherit;
}

.ija-landing,
.ija-landing * {
  box-sizing: border-box;
}

.ija-landing {
  width: 100%;
  margin: 0;
  color: var(--ija-ink);
  background: #fff;
  font-family: var(--ija-font);
  line-height: 1.75;
  overflow: clip;
}

.ija-landing a {
  color: inherit;
  text-decoration: none;
}

.ija-landing img {
  max-width: 100%;
}

.ija-site-frame {
  width: 100%;
}

/* Header */
.ija-topbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px max(24px, calc((100% - var(--ija-container)) / 2));
  color: rgba(255, 255, 255, .72);
  background: var(--ija-ink);
  border-bottom: 2px solid var(--ija-primary);
  font-size: 11px;
}

.ija-topbar b {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.ija-brand-header,
.ija-brand-header[style] {
  position: relative;
  z-index: 50;
  min-height: 190px !important;
  display: grid;
  grid-template-columns: minmax(390px, 1fr) auto;
  grid-template-areas:
    "utility utility"
    "brand actions"
    "nav nav";
  grid-template-rows: 42px 94px 54px;
  gap: 0 34px;
  padding: 0 max(24px, calc((100% - var(--ija-container)) / 2));
  background: #fff !important;
  border-bottom: 1px solid var(--ija-line);
  box-shadow: 0 8px 28px rgba(18, 28, 38, .05);
}

.ija-header-utility {
  grid-area: utility;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--ija-line);
}

.ija-utility-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ija-utility-nav a {
  position: relative;
  color: #34414c;
  font-size: 13px;
  font-weight: 800;
}

.ija-utility-nav a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--ija-gold);
  border-radius: 50%;
}

.ija-social-mini,
.ija-language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ija-header-utility .ija-social-mini {
  margin-inline-start: auto;
}

.ija-social-mini a,
.ija-social-mini > span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--ija-ink);
  border-radius: 4px;
  font: 800 11px/1 Arial, sans-serif;
  transition: background .2s ease, transform .2s ease;
}

.ija-social-mini a:hover {
  background: var(--ija-primary);
  transform: translateY(-1px);
}

.ija-language-switcher {
  padding-inline-start: 14px;
  border-inline-start: 1px solid var(--ija-line);
}

.ija-language-switcher a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  color: #3f4b56;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.ija-language-switcher a:hover {
  color: var(--ija-primary);
  border-color: var(--ija-line);
}

.ija-brand-lockup {
  grid-area: brand;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
  transform: none !important;
}

.ija-brand-lockup img,
.ija-brand-lockup img[style] {
  width: 205px !important;
  height: 86px !important;
  max-width: 205px !important;
  max-height: 86px !important;
  display: block;
  object-fit: contain;
  transform: none !important;
}

.ija-brand-lockup > div {
  min-width: 0;
}

.ija-brand-lockup strong {
  display: block;
  color: var(--ija-ink);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.ija-brand-lockup small {
  display: block;
  max-width: 510px;
  margin-top: 4px;
  color: var(--ija-muted);
  font-size: 12px;
}

.ija-logo-text-hide_text .ija-brand-lockup > div {
  display: none;
}

.ija-brand-actions,
.ija-brand-actions[style] {
  grid-area: actions;
  width: auto !important;
  max-width: none !important;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  transform: none !important;
}

.ija-brand-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 17px;
  color: var(--ija-ink);
  background: #fff;
  border: 1px solid #d8dde1;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  transition: .2s ease;
}

.ija-brand-actions a span {
  color: var(--ija-gold);
}

.ija-brand-actions .ija-action-join {
  color: #fff;
  background: var(--ija-primary);
  border-color: var(--ija-primary);
}

.ija-brand-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 28, 38, .12);
}

.ija-main-nav,
.ija-main-nav[style] {
  grid-area: nav;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3px !important;
  margin: 0;
  border-top: 1px solid var(--ija-line);
  transform: none !important;
}

.ija-nav-item {
  position: relative;
}

.ija-main-nav .ija-nav-item > a,
.ija-main-nav .ija-nav-item > a[style] {
  position: relative;
  height: 54px !important;
  min-height: 54px !important;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: #303d48;
  font-size: 14px !important;
  font-weight: 900;
  white-space: nowrap;
}

.ija-main-nav .ija-nav-item > a::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -1px;
  left: 15px;
  height: 3px;
  background: var(--ija-primary);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.ija-main-nav .ija-nav-item > a:hover,
.ija-main-nav .ija-nav-item > a.active {
  color: var(--ija-primary);
}

.ija-main-nav .ija-nav-item > a:hover::after,
.ija-main-nav .ija-nav-item > a.active::after {
  transform: scaleX(1);
}

.ija-main-nav .ija-nav-item > a span {
  color: var(--ija-gold);
}

.ija-main-nav em {
  font-style: normal;
}

.ija-subnav {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 70;
  width: 225px;
  display: none;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-top: 3px solid var(--ija-primary);
  box-shadow: var(--ija-shadow);
}

.ija-nav-item:hover .ija-subnav,
.ija-nav-item:focus-within .ija-subnav {
  display: grid;
}

.ija-subnav a {
  padding: 9px 10px;
  color: #34414c;
  border-bottom: 1px solid #edf0f2;
  font-size: 12px;
  font-weight: 800;
}

.ija-mobile-menu-toggle {
  display: none;
}

/* Ticker */
.ija-ticker {
  min-height: 44px;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #26343f;
  overflow: hidden;
}

.ija-ticker > strong {
  min-width: 145px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  background: var(--ija-primary);
  font-size: 12px;
}

.ija-ticker-window {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ija-ticker-track {
  width: max-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-inline: 28px;
  animation: ijaTicker 40s linear infinite;
}

.ija-ticker-track span {
  white-space: nowrap;
  font-size: 12px;
}

.ija-ticker-track i {
  width: 5px;
  height: 5px;
  background: var(--ija-gold);
  border-radius: 50%;
}

@keyframes ijaTicker {
  to { transform: translateX(50%); }
}

/* Main editorial hero */
.ija-news-slider {
  position: relative;
  width: min(var(--ija-container), calc(100% - 48px));
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 28px auto 0;
  overflow: hidden;
  background: #dfe5e8;
  border-radius: 8px;
  box-shadow: var(--ija-shadow);
}

.ija-news-slides,
.ija-news-slide {
  position: absolute;
  inset: 0;
}

.ija-news-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.ija-news-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.ija-news-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 19, .03) 8%, rgba(8, 14, 19, .2) 48%, rgba(8, 14, 19, .92) 100%);
}

.ija-news-slide > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ija-news-slide-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8f8f5, #dde6e9);
}

.ija-news-slide-placeholder img {
  width: min(330px, 35%);
  max-height: 220px;
  object-fit: contain;
}

.ija-hero-identity,
.ija-hero-caption {
  display: none;
}

.ija-news-slide-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(30px, 5vw, 75px);
  width: min(590px, 54%);
  padding: 27px 30px;
  color: #fff;
  background: rgba(14, 23, 31, .62);
  border-right: 4px solid var(--ija-primary);
  border-radius: 5px;
  backdrop-filter: blur(4px);
  transform: translateY(-50%);
}

.ija-news-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
}

.ija-news-meta span {
  color: #f0d376;
  font-weight: 900;
}

.ija-news-meta time {
  padding-right: 11px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.ija-slide-count {
  position: absolute;
  top: -54px;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: rgba(255, 255, 255, .58);
  font: 700 12px/1 Arial, sans-serif;
}

.ija-slide-count b {
  color: var(--ija-gold);
  font-size: 31px;
}

.ija-slide-count i {
  font-style: normal;
}

.ija-news-slide-content h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  font-weight: 900;
}

.ija-news-slide-content p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .77);
  font-size: 14px;
  line-height: 1.9;
}

.ija-news-slide-content > a {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 7px 17px;
  color: #fff;
  background: var(--ija-primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.ija-news-main-controls {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 7px;
}

.ija-news-main-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 14, 19, .55);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  cursor: pointer;
  font: 700 23px/1 Arial, sans-serif;
}

.ija-news-main-nav:hover {
  background: var(--ija-primary);
}

.ija-news-dots {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 6px;
}

.ija-news-dots button {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .7);
  background: rgba(8, 14, 19, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  cursor: pointer;
  font: 700 10px/1 Arial, sans-serif;
}

.ija-news-dots button.is-active {
  color: #fff;
  background: var(--ija-primary);
}

.ija-hero-progress {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, .18);
}

.ija-hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ija-gold);
  transform-origin: right center;
  animation: ijaHeroProgress 5.6s linear forwards;
}

@keyframes ijaHeroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Shared sections */
.ija-section,
.ija-achievements-inner {
  width: min(var(--ija-container), calc(100% - 48px));
  margin-inline: auto;
}

.ija-section {
  padding: 76px 0;
}

.ija-section-head {
  position: relative;
  margin-bottom: 31px;
  padding-right: 17px;
  border-right: 4px solid var(--ija-primary);
}

.ija-section-head > span {
  display: block;
  color: var(--ija-primary);
  font-size: 11px;
  font-weight: 900;
}

.ija-section-head h2 {
  margin: 2px 0 0;
  color: var(--ija-ink);
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.25;
  font-weight: 900;
}

.ija-section-head p {
  margin: 7px 0 0;
  color: var(--ija-muted);
  font-size: 13px;
}

/* Board immediately after hero */
#ija-board {
  margin-top: 38px;
  background: linear-gradient(180deg, #f7f5f0, #fff);
  border-block: 1px solid #e7e0d3;
}

#ija-board .ija-board {
  padding-top: 64px;
  padding-bottom: 72px;
}

.ija-board .ija-section-head {
  text-align: center;
  padding: 0 0 15px;
  border: 0;
}

.ija-board .ija-section-head::after {
  content: "";
  width: 58px;
  height: 3px;
  display: block;
  margin: 13px auto 0;
  background: var(--ija-gold);
}

.ija-board-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.ija-board-card {
  position: relative;
  min-width: 0;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 13px;
  text-align: center;
  background: #fff;
  border: 1px solid #dfd9cd;
  border-radius: 7px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ija-board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ija-shadow);
}

.ija-board-card.is-president {
  min-height: 370px;
  padding-top: 31px;
  background: linear-gradient(145deg, #fffdf7, #fff);
  border: 2px solid var(--ija-gold);
  box-shadow: 0 24px 55px rgba(92, 65, 20, .15);
  transform: translateY(-15px);
}

.ija-board-card.is-president::before {
  content: "رئيس مجلس الإدارة";
  position: absolute;
  top: -14px;
  right: 50%;
  min-width: 138px;
  padding: 5px 11px;
  color: #fff;
  background: var(--ija-primary);
  border-radius: 4px;
  transform: translateX(50%);
  font-size: 10px;
  font-weight: 900;
}

.ija-board-photo {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  overflow: hidden;
  color: #fff;
  background: var(--ija-ink);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d9d2c5, 0 12px 27px rgba(18, 28, 38, .12);
  font-size: 24px;
  font-weight: 900;
}

.ija-board-card.is-president .ija-board-photo {
  width: 164px;
  height: 164px;
  outline: 3px solid rgba(205, 164, 59, .35);
}

.ija-board-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ija-board-card h3 {
  margin: 4px 0 5px;
  color: var(--ija-ink);
  font-size: 16px;
  font-weight: 900;
}

.ija-board-card.is-president h3 {
  font-size: 21px;
}

.ija-board-card > strong {
  color: var(--ija-primary);
  font-size: 11px;
}

.ija-board-card p {
  margin: 8px 0 0;
  color: var(--ija-muted);
  font-size: 11px;
}

.ija-board-profile-link {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 6px 13px;
  color: #fff !important;
  background: var(--ija-ink);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.ija-board-card.is-president .ija-board-profile-link {
  background: var(--ija-primary);
}

.ija-board-action {
  margin-top: 24px;
  text-align: center;
}

.ija-board-action a {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  padding: 7px 17px;
  color: #fff;
  background: var(--ija-ink);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

/* Content gates */
.ija-section-news-gates {
  padding-top: 75px;
}

.ija-feature-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ija-gate-card {
  min-width: 0;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-top: 4px solid var(--ija-primary);
  border-radius: 7px;
  box-shadow: 0 13px 35px rgba(18, 28, 38, .06);
}

.ija-feature-card-head {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  float: left;
  color: #fff;
  background: var(--ija-primary);
  border-radius: 4px;
}

.ija-gate-card > h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
}

.ija-gate-card > p {
  min-height: 48px;
  margin: 6px 0 18px;
  color: var(--ija-muted);
  font-size: 12px;
}

.ija-gate-post {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ija-line);
}

.ija-gate-post-image {
  width: 170px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  grid-row: span 2;
}

.ija-gate-post-image img,
.ija-gate-mini-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ija-gate-post-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.ija-gate-post small {
  color: var(--ija-muted);
  font-size: 10px;
}

.ija-gate-mini-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ija-gate-mini-post {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 9px;
}

.ija-gate-mini-thumb {
  width: 72px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ija-paper);
  border-radius: 3px;
}

.ija-gate-mini-post strong {
  font-size: 11px;
  line-height: 1.45;
}

.ija-gate-empty {
  padding: 17px;
  color: var(--ija-muted);
  background: var(--ija-paper);
  border-radius: 4px;
  font-size: 12px;
}

.ija-feature-hint {
  display: inline-flex;
  margin-top: 16px;
  color: var(--ija-primary);
  font-size: 11px;
  font-weight: 900;
}

.ija-feature-controls {
  display: none;
}

/* About */
.ija-about {
  width: 100%;
  max-width: none;
  padding: 82px max(24px, calc((100% - var(--ija-container)) / 2));
  background:
    radial-gradient(circle at 86% 15%, rgba(161, 15, 32, .07), transparent 32%),
    #eef3f4;
  border-block: 1px solid #dce4e6;
}

.ija-about-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 320px;
  align-items: stretch;
  gap: 40px;
}

.ija-about-visual {
  min-height: 285px;
  display: grid;
  place-items: center;
}

.ija-about-identity-card {
  width: 100%;
  height: 100%;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe3e5;
  border-top: 4px solid var(--ija-gold);
  box-shadow: 0 18px 45px rgba(30, 55, 65, .09);
}

.ija-about-logo {
  width: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
}

.ija-about-logo img {
  width: min(210px, 90%);
  max-height: 145px;
  object-fit: contain;
}

.ija-about-identity-card > strong {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 900;
}

.ija-about-identity-card > span {
  color: var(--ija-muted);
  font-size: 10px;
}

.ija-about-identity-card > ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ija-about-identity-card > ul li {
  padding: 8px;
  text-align: center;
  background: var(--ija-paper);
}

.ija-about-identity-card > ul b,
.ija-about-identity-card > ul em {
  display: block;
  font-size: 9px;
  font-style: normal;
}

.ija-about-identity-card > ul em {
  color: var(--ija-primary);
  font-weight: 900;
}

.ija-about-content {
  align-self: center;
}

.ija-about-badge {
  color: var(--ija-primary);
  font-size: 11px;
  font-weight: 900;
}

.ija-about-content h2 {
  margin: 6px 0 14px;
  font-size: clamp(31px, 4vw, 45px);
  font-weight: 900;
}

.ija-about-content p {
  margin: 0;
  color: #53626d;
  font-size: 14px;
  line-height: 2;
}

.ija-about-side {
  display: flex;
  align-items: center;
}

.ija-about-side > ul {
  width: 100%;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ija-about-side li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 11px;
  padding: 14px;
  background: #fff;
  border-right: 3px solid var(--ija-primary);
  box-shadow: 0 8px 24px rgba(30, 55, 65, .06);
}

.ija-about-side li > span {
  grid-row: span 2;
  color: var(--ija-gold);
  font-weight: 900;
}

.ija-about-side li strong {
  font-size: 13px;
}

.ija-about-side li em {
  color: var(--ija-muted);
  font-size: 10px;
  font-style: normal;
}

/* Timeline */
.ija-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  padding-top: 31px;
}

.ija-timeline::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 3%;
  left: 3%;
  height: 3px;
  background: var(--ija-gold);
}

.ija-timeline article {
  position: relative;
  min-height: 150px;
  padding: 22px 17px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-radius: 5px;
}

.ija-timeline article::before {
  content: "";
  position: absolute;
  top: -25px;
  right: 20px;
  width: 15px;
  height: 15px;
  background: var(--ija-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ija-primary);
}

.ija-timeline strong {
  color: var(--ija-primary);
  font-size: 18px;
  font-weight: 900;
}

.ija-timeline p {
  margin: 8px 0 0;
  color: var(--ija-muted);
  font-size: 12px;
}

/* Achievements inspired by Takween */
.ija-achievements {
  position: relative;
  padding: 86px 0;
  background:
    radial-gradient(circle at 83% 14%, rgba(161, 15, 32, .13), transparent 30%),
    radial-gradient(circle at 16% 88%, rgba(205, 164, 59, .08), transparent 27%),
    #080a0b;
  overflow: hidden;
}

.ija-achievements::before {
  content: "IMPACT";
  position: absolute;
  top: 42px;
  left: max(24px, calc((100% - var(--ija-container)) / 2));
  color: var(--ija-gold);
  font: 700 12px/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.ija-achievements .ija-section-head {
  border-right-color: var(--ija-gold);
}

.ija-achievements .ija-section-head > span {
  color: var(--ija-gold);
}

.ija-achievements .ija-section-head h2 {
  color: #fff;
}

.ija-achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.ija-achievements-grid article {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 38%), #161510;
  border: 1px solid rgba(205, 164, 59, .35);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .3);
  transition: transform .25s ease, border-color .25s ease;
}

.ija-achievements-grid article:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, .09), transparent 38%), #111923;
  border-color: rgba(67, 113, 161, .48);
}

.ija-achievements-grid article:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 38%), #10231d;
  border-color: rgba(55, 131, 99, .46);
}

.ija-achievements-grid article:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 38%), #251429;
  border-color: rgba(134, 75, 145, .45);
}

.ija-achievements-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--ija-gold);
}

.ija-achievements-grid b {
  position: absolute;
  top: 22px;
  left: 25px;
  color: #f1c850;
  font: 900 53px/1 Arial, sans-serif;
}

.ija-achievements-grid h3 {
  position: relative;
  margin: 0 0 13px;
  color: #fff;
  font-size: 20px;
}

.ija-achievements-grid ul,
.ija-membership-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ija-achievements-grid li,
.ija-membership-grid li {
  position: relative;
  margin: 7px 0;
  padding-right: 16px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
}

.ija-achievements-grid li::before,
.ija-membership-grid li::before {
  content: "";
  position: absolute;
  top: .8em;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--ija-gold);
  border-radius: 50%;
}

/* Membership */
.ija-membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ija-membership-grid article {
  padding: 27px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-top: 4px solid var(--ija-primary);
  border-radius: 6px;
}

.ija-membership-grid h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.ija-membership-grid li {
  color: var(--ija-muted);
}

.ija-membership-grid article > a {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  padding: 7px 15px;
  color: #fff;
  background: var(--ija-primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.ija-membership-partners blockquote {
  margin: 27px 0 0;
  padding: 26px 29px;
  color: #fff;
  background: var(--ija-ink);
  border-right: 5px solid var(--ija-gold);
}

.ija-membership-partners blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.ija-membership-partners blockquote strong {
  display: block;
  margin-top: 9px;
  color: var(--ija-gold);
  font-size: 14px;
}

/* Footer */
.ija-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 55px;
  padding: 62px max(24px, calc((100% - var(--ija-container)) / 2));
  color: var(--ija-footer-text);
  background-color: var(--ija-footer-bg);
  background-image: var(--ija-footer-bg-image);
  background-size: cover;
  border-top: 5px solid var(--ija-primary);
}

.ija-footer-logo img {
  width: var(--ija-footer-logo-width);
  max-height: 95px;
  object-fit: contain;
}

.ija-footer h2,
.ija-footer h3 {
  margin: 0 0 12px;
  color: inherit;
  font-weight: 900;
}

.ija-footer h2 {
  font-size: 21px;
}

.ija-footer h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-size: 14px;
}

.ija-footer p,
.ija-footer a {
  display: block;
  margin: 6px 0;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
}

.ija-footer-brand > p {
  max-width: 470px;
  font-size: 12px;
}

.ija-footer .ija-social-mini {
  margin-top: 17px;
}

.ija-copy {
  padding: 13px 20px;
  color: rgba(255, 255, 255, .5);
  background: #080d11;
  text-align: center;
  font-size: 10px;
}

/* Internal pages */
.ija-profile-page,
.ija-member-profile,
.ija-form,
.ija-notice {
  width: min(1000px, calc(100% - 40px));
  margin-inline: auto;
}

.ija-profile-page {
  padding: 65px 0;
}

.ija-content-page-head {
  margin-bottom: 27px;
  text-align: center;
}

.ija-content-page-head span {
  color: var(--ija-primary);
  font-size: 11px;
  font-weight: 900;
}

.ija-content-page-head h1 {
  margin: 3px 0 0;
  font-size: 40px;
  font-weight: 900;
}

.ija-content-page-head::after {
  content: "";
  width: 55px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  background: var(--ija-gold);
}

.ija-profile-intro p {
  color: #485762;
  font-size: 15px;
  line-height: 2;
}

.ija-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 31px;
}

.ija-vision-grid article {
  position: relative;
  padding: 25px;
  color: #fff;
  background: var(--ija-ink);
  border-top: 4px solid var(--ija-gold);
  border-radius: 5px;
}

.ija-vision-grid article > span {
  position: absolute;
  top: 17px;
  left: 19px;
  color: rgba(255, 255, 255, .12);
  font: 900 44px/1 Arial, sans-serif;
}

.ija-vision-grid h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 21px;
}

.ija-vision-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.ija-objectives {
  margin-top: 44px;
}

.ija-objectives > h2 {
  font-size: 27px;
}

.ija-objectives > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.ija-objectives article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-radius: 5px;
}

.ija-objectives b {
  color: var(--ija-gold);
  font-size: 11px;
}

.ija-objectives h3 {
  margin: 5px 0 6px;
  font-size: 15px;
}

.ija-objectives p {
  margin: 0;
  color: var(--ija-muted);
  font-size: 11px;
}

.ija-internal-page .entry-header,
.ija-internal-page .page-header,
.ija-internal-page .page-title,
.ija-internal-page .entry-title,
.ija-internal-page .breadcrumb,
.ija-internal-page .breadcrumbs,
.ija-internal-page .sidebar,
.ija-internal-page aside.sidebar,
.ija-internal-page #sidebar,
.ija-internal-page .widget-area {
  display: none !important;
}

.ija-internal-page .content-area,
.ija-internal-page .main-content,
.ija-internal-page #primary,
.ija-internal-page .site-content,
.ija-internal-page article.page,
.ija-internal-page article.ija_board_member {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.ija-member-profile {
  margin-top: 40px;
  margin-bottom: 75px;
}

.ija-member-profile-hero {
  display: grid;
  grid-template-columns: 285px 1fr;
  align-items: center;
  gap: 44px;
  padding: 43px;
  color: #fff;
  background: linear-gradient(125deg, rgba(161, 15, 32, .94), rgba(18, 28, 38, .98));
  border-bottom: 5px solid var(--ija-gold);
  border-radius: 8px;
}

.ija-member-profile-photo {
  width: 255px;
  height: 255px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #26343f;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(205, 164, 59, .4);
  font-size: 42px;
  font-weight: 900;
}

.ija-member-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ija-member-profile-hero h1 {
  margin: 6px 0;
  color: #fff;
  font-size: clamp(35px, 5vw, 55px);
}

.ija-member-profile-hero strong {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
}

.ija-member-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.ija-member-contact a {
  padding: 7px 13px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.ija-member-contact .is-whatsapp {
  background: #16854a;
  border-color: #16854a;
}

.ija-member-bio {
  padding: 39px 43px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-top: 0;
}

.ija-member-bio h2 {
  margin: 4px 0 14px;
  font-size: 28px;
}

.ija-member-bio p {
  color: var(--ija-muted);
  font-size: 15px;
  line-height: 2;
}

.ija-form {
  display: grid;
  gap: 15px;
  margin-top: 35px;
  margin-bottom: 55px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ija-line);
  border-top: 4px solid var(--ija-primary);
  border-radius: 6px;
  box-shadow: var(--ija-shadow);
}

.ija-form h2,
.ija-form p {
  margin: 0;
}

.ija-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.ija-form input,
.ija-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  border: 1px solid #cfd6dc;
  border-radius: 4px;
  font: inherit;
}

.ija-form button {
  min-height: 45px;
  color: #fff;
  background: var(--ija-primary);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font: 800 13px var(--ija-font);
}

.ija-notice {
  margin-top: 25px;
  padding: 14px;
  color: #155a34;
  background: #eaf7ef;
  border-right: 4px solid #21864f;
}

/* Tablet */
@media (max-width: 1080px) {
  .ija-brand-header,
  .ija-brand-header[style] {
    grid-template-columns: 1fr auto;
  }

  .ija-brand-lockup small {
    display: none;
  }

  .ija-main-nav .ija-nav-item > a,
  .ija-main-nav .ija-nav-item > a[style] {
    padding-inline: 9px;
    font-size: 12px !important;
  }

  .ija-board-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ija-board-card.is-president {
    grid-column: 2;
    grid-row: 1;
  }

  .ija-about-panel {
    grid-template-columns: 220px 1fr;
  }

  .ija-about-side {
    grid-column: 1 / -1;
  }

  .ija-about-side > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile navigation and layout */
@media (max-width: 820px) {
  .ija-topbar {
    display: none;
  }

  .ija-brand-header,
  .ija-brand-header[style] {
    min-height: 128px !important;
    grid-template-columns: 1fr 48px;
    grid-template-areas:
      "utility utility"
      "brand menu";
    grid-template-rows: 40px 88px;
    gap: 0 10px;
    padding: 0 14px;
  }

  .ija-header-utility {
    gap: 7px;
  }

  .ija-utility-nav {
    display: none;
  }

  .ija-header-utility .ija-social-mini {
    margin: 0;
  }

  .ija-social-mini a,
  .ija-social-mini > span {
    width: 27px;
    height: 27px;
  }

  .ija-language-switcher {
    margin-inline-start: auto;
    padding: 0;
    border: 0;
  }

  .ija-language-switcher a {
    padding-inline: 6px;
    font-size: 10px;
  }

  .ija-brand-lockup {
    justify-self: start !important;
  }

  .ija-brand-lockup img,
  .ija-brand-lockup img[style] {
    width: 170px !important;
    height: 72px !important;
    max-width: 170px !important;
    max-height: 72px !important;
  }

  .ija-brand-lockup > div {
    display: none;
  }

  .ija-mobile-menu-toggle {
    grid-area: menu;
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: center;
    color: #fff;
    background: var(--ija-primary);
    border: 0;
    border-radius: 4px;
    cursor: pointer;
  }

  .ija-mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    background: #fff;
  }

  .ija-main-nav,
  .ija-main-nav[style] {
    position: absolute;
    top: calc(100% + 7px);
    right: 12px;
    left: 12px;
    z-index: 80;
    max-height: 62vh;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px !important;
    padding: 112px 10px 10px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--ija-line);
    border-top: 4px solid var(--ija-primary);
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(18, 28, 38, .22);
  }

  .ija-brand-header.ija-mobile-menu-open .ija-main-nav {
    display: flex;
  }

  .ija-main-nav .ija-nav-item > a,
  .ija-main-nav .ija-nav-item > a[style] {
    height: auto !important;
    min-height: 42px !important;
    padding: 8px 11px;
    background: var(--ija-paper);
    border-radius: 3px;
    font-size: 12px !important;
  }

  .ija-main-nav .ija-nav-item > a::after {
    display: none;
  }

  .ija-brand-actions,
  .ija-brand-actions[style] {
    position: absolute;
    top: calc(100% + 18px);
    right: 23px;
    left: 23px;
    z-index: 82;
    display: none;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ija-line);
  }

  .ija-brand-header.ija-mobile-menu-open .ija-brand-actions {
    display: grid;
  }

  .ija-brand-actions a {
    min-height: 42px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .ija-news-slider {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .ija-news-slide-content {
    right: 21px;
    width: calc(100% - 42px);
  }

  .ija-news-slide-content h2 {
    font-size: 31px;
  }

  .ija-news-slide-content p {
    display: none;
  }

  .ija-slide-count {
    display: none;
  }

  .ija-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ija-board-card.is-president {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(350px, 100%);
    justify-self: center;
    transform: none;
  }

  .ija-feature-track,
  .ija-membership-grid,
  .ija-vision-grid {
    grid-template-columns: 1fr;
  }

  .ija-about-panel {
    grid-template-columns: 1fr;
  }

  .ija-about-side {
    grid-column: auto;
  }

  .ija-about-side > ul {
    grid-template-columns: 1fr;
  }

  .ija-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .ija-timeline::before {
    display: none;
  }

  .ija-timeline article::before {
    top: 17px;
    right: auto;
    left: 17px;
  }

  .ija-footer {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .ija-footer-brand {
    grid-column: 1 / -1;
  }

  .ija-member-profile-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ija-member-contact {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .ija-header-utility .ija-social-mini a:nth-child(n+4),
  .ija-header-utility .ija-social-mini > span:nth-child(n+4) {
    display: none;
  }

  .ija-language-switcher a {
    font-size: 0;
  }

  .ija-language-switcher a::first-letter {
    font-size: 13px;
  }

  .ija-news-slider {
    aspect-ratio: 16 / 9;
    border-radius: 5px;
  }

  .ija-news-slide::after {
    background: linear-gradient(0deg, rgba(8, 14, 19, .94), rgba(8, 14, 19, .05) 75%);
  }

  .ija-news-slide-content {
    top: auto;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 12px 14px;
    background: rgba(14, 23, 31, .62);
    transform: none;
  }

  .ija-news-meta {
    display: none;
  }

  .ija-news-slide-content h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
  }

  .ija-news-slide-content > a {
    min-height: 33px;
    margin-top: 9px;
    padding: 5px 11px;
    font-size: 10px;
  }

  .ija-news-main-controls {
    top: 10px;
    bottom: auto;
    left: 10px;
  }

  .ija-news-main-nav {
    width: 34px;
    height: 34px;
  }

  .ija-news-dots,
  .ija-hero-progress {
    display: none;
  }

  .ija-section,
  .ija-achievements-inner {
    width: calc(100% - 30px);
  }

  .ija-section {
    padding: 54px 0;
  }

  .ija-board-grid,
  .ija-achievements-grid,
  .ija-timeline,
  .ija-objectives > div {
    grid-template-columns: 1fr;
  }

  .ija-board-card.is-president {
    grid-column: auto;
  }

  .ija-gate-post {
    grid-template-columns: 115px 1fr;
  }

  .ija-gate-post-image {
    width: 115px;
  }

  .ija-gate-mini-posts {
    grid-template-columns: 1fr;
  }

  .ija-about {
    padding: 58px 15px;
  }

  .ija-achievements-grid article {
    min-height: 225px;
  }

  .ija-footer {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 48px 20px;
  }

  .ija-footer-brand {
    grid-column: auto;
  }

  .ija-member-profile-photo {
    width: 200px;
    height: 200px;
  }

  .ija-member-bio {
    padding: 27px 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ija-ticker-track {
    animation: none;
  }

  .ija-landing *,
  .ija-landing *::before,
  .ija-landing *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Reference-inspired light hero and entry experience */
.ija-entry-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ija-entry-loader-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.1%;
  background: #fff;
  transition: transform .75s cubic-bezier(.76, 0, .24, 1);
}

.ija-entry-loader-panel.is-right {
  right: 0;
  border-left: 1px solid #ece7dc;
}

.ija-entry-loader-panel.is-left {
  left: 0;
}

.ija-entry-loader-mark {
  position: relative;
  z-index: 2;
  width: 180px;
  text-align: center;
  transition: opacity .25s ease, transform .55s ease;
}

.ija-entry-loader-mark img {
  width: 180px;
  height: 115px;
  object-fit: contain;
}

.ija-entry-loader-mark span {
  width: 54px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  background: var(--ija-gold);
  animation: ijaLoaderLine .9s ease-in-out infinite alternate;
}

@keyframes ijaLoaderLine {
  from { transform: scaleX(.2); }
  to { transform: scaleX(1); }
}

.ija-entry-loader.is-open .ija-entry-loader-panel.is-right {
  transform: translateX(101%);
}

.ija-entry-loader.is-open .ija-entry-loader-panel.is-left {
  transform: translateX(-101%);
}

.ija-entry-loader.is-open .ija-entry-loader-mark {
  opacity: 0;
  transform: scale(.82);
}

.ija-language-switcher button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  color: #3f4b56;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font: 800 11px/1.2 var(--ija-font);
}

.ija-language-switcher button:hover {
  color: var(--ija-primary);
  border-color: var(--ija-line);
}

#ija-google-translate,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.ija-news-slider {
  overflow: visible;
  margin-top: 88px;
  background: #f2f1ed;
  box-shadow: 0 26px 70px rgba(18, 28, 38, .13);
}

.ija-news-slides {
  overflow: hidden;
  border-radius: 8px;
}

.ija-news-slide::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .02) 10%, rgba(18, 28, 38, .06) 52%, rgba(18, 28, 38, .28) 100%);
}

.ija-news-slide-content {
  top: auto;
  right: 42px;
  bottom: 42px;
  width: min(590px, calc(100% - 84px));
  padding: 25px 28px;
  color: var(--ija-ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-right: 5px solid var(--ija-primary);
  box-shadow: 0 18px 48px rgba(18, 28, 38, .15);
  backdrop-filter: blur(8px);
  transform: none;
}

.ija-news-meta {
  color: #71808b;
}

.ija-news-meta span {
  color: var(--ija-primary);
}

.ija-news-meta time {
  border-color: #d8dde0;
}

.ija-slide-count {
  top: 24px;
  right: auto;
  left: 25px;
  color: #98a1a8;
}

.ija-slide-count b {
  color: var(--ija-gold);
}

.ija-news-slide-content h2 {
  color: var(--ija-ink);
  font-size: clamp(29px, 3.5vw, 48px);
}

.ija-news-slide-content p {
  color: #5f6d78;
}

.ija-news-slide-content > a {
  color: #fff;
}

.ija-hero-quicklinks {
  position: absolute;
  z-index: 10;
  top: -62px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ija-hero-quicklinks a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  color: var(--ija-ink);
  background: #fff;
  border: 1px solid var(--ija-line);
  border-bottom: 3px solid var(--ija-gold);
  border-radius: 5px 5px 0 0;
  box-shadow: 0 10px 28px rgba(18, 28, 38, .08);
  font-size: 12px;
  font-weight: 900;
  transition: .2s ease;
}

.ija-hero-quicklinks a span {
  color: var(--ija-primary);
  font-size: 18px;
}

.ija-hero-quicklinks a:hover {
  color: #fff;
  background: var(--ija-primary);
  border-color: var(--ija-primary);
  transform: translateY(-3px);
}

.ija-hero-quicklinks a:hover span {
  color: var(--ija-gold);
}

.ija-news-main-controls {
  bottom: 22px;
}

.ija-news-main-nav {
  color: var(--ija-ink);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 24px rgba(18, 28, 38, .14);
}

.ija-news-main-nav:hover {
  color: #fff;
}

.ija-news-dots button {
  color: var(--ija-ink);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .95);
}

.ija-news-dots button.is-active {
  color: #fff;
}

@media (max-width: 820px) {
  .ija-language-switcher button {
    padding-inline: 6px;
    font-size: 10px;
  }

  .ija-news-slider {
    margin-top: 70px;
  }

  .ija-hero-quicklinks {
    top: -52px;
    gap: 5px;
  }

  .ija-hero-quicklinks a {
    min-height: 44px;
    padding: 6px;
    font-size: 10px;
  }

  .ija-news-slide-content {
    right: 21px;
    bottom: 21px;
    width: calc(100% - 42px);
  }
}

@media (max-width: 560px) {
  .ija-language-switcher button {
    font-size: 0;
  }

  .ija-language-switcher button::first-letter {
    font-size: 12px;
  }

  .ija-entry-loader-mark {
    width: 145px;
  }

  .ija-entry-loader-mark img {
    width: 145px;
    height: 95px;
  }

  .ija-news-slider {
    margin-top: 60px;
  }

  .ija-hero-quicklinks {
    top: -46px;
  }

  .ija-hero-quicklinks a {
    min-height: 40px;
  }

  .ija-hero-quicklinks a b {
    display: none;
  }

  .ija-hero-quicklinks a span {
    font-size: 18px;
  }

  .ija-news-slide-content {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 11px 13px;
  }

  .ija-news-slide-content h2 {
    color: var(--ija-ink);
    font-size: 19px;
  }
}

/* v4.2 exact reference slider */
.ija-hero-quicklinks {
  display: none !important;
}

.ija-news-slider {
  margin-top: 30px;
  margin-bottom: 130px;
  border-radius: 0;
  border-bottom: 4px solid var(--ija-gold);
  box-shadow: 0 22px 60px rgba(18, 28, 38, .14);
}

.ija-news-slides {
  border-radius: 0;
}

.ija-news-slide::after {
  background: linear-gradient(90deg, rgba(18, 28, 38, .04), rgba(18, 28, 38, .14));
}

.ija-news-slide-content {
  top: 50%;
  right: auto;
  left: 3.5%;
  bottom: auto;
  width: min(880px, 48%);
  min-height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px 34px;
  color: var(--ija-ink);
  background: #fff;
  border: 1px solid #e4e7e9;
  border-right: 7px solid var(--ija-primary);
  border-radius: 5px 0 0 5px;
  box-shadow: 0 24px 60px rgba(18, 28, 38, .18);
  backdrop-filter: none;
  transform: translateY(-50%);
}

.ija-news-meta {
  position: absolute;
  top: 30px;
  right: 42px;
  left: 42px;
  justify-content: flex-start;
  color: #71808b;
  font-size: 12px;
}

.ija-news-meta span {
  order: 2;
  margin-right: auto;
  padding-right: 16px;
  color: var(--ija-primary);
  border-right: 1px solid #d8dde0;
  font-weight: 900;
}

.ija-news-meta time {
  order: 1;
  padding: 0;
  border: 0;
}

.ija-slide-count {
  top: 34px;
  right: 38px;
  left: auto;
  color: #88949d;
}

.ija-slide-count b {
  color: var(--ija-gold);
  font-size: 42px;
}

.ija-news-slide-content h2 {
  margin: 50px 0 0;
  color: var(--ija-ink);
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 1.28;
}

.ija-news-slide-content p {
  margin-top: 18px;
  color: #60707c;
  font-size: 14px;
  line-height: 2;
}

.ija-news-slide-content > a {
  align-self: flex-start;
  min-height: 52px;
  margin-top: 23px;
  padding: 10px 23px;
  font-size: 13px;
}

.ija-news-main-controls {
  right: 26px;
  left: auto;
  bottom: 25px;
  direction: ltr;
}

.ija-news-main-nav {
  width: 48px;
  height: 48px;
  color: var(--ija-ink);
  background: #fff;
  border: 1px solid #e2e5e7;
  box-shadow: 0 8px 24px rgba(18, 28, 38, .14);
}

.ija-news-dots {
  right: auto;
  left: 26px;
  bottom: 25px;
  direction: ltr;
}

.ija-news-dots button {
  width: 46px;
  height: 46px;
  color: var(--ija-ink);
  background: #fff;
  border: 1px solid #e2e5e7;
  border-radius: 4px;
  box-shadow: 0 7px 20px rgba(18, 28, 38, .12);
  font-size: 11px;
}

.ija-news-dots button.is-active {
  color: #fff;
  background: var(--ija-primary);
  border-color: var(--ija-primary);
}

.ija-hero-category-rail {
  position: absolute;
  z-index: 12;
  right: 12%;
  bottom: -95px;
  left: 12%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 18px 45px rgba(18, 28, 38, .12);
}

.ija-hero-category-rail button {
  min-width: 0;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px;
  color: var(--ija-ink);
  background: #f4f4f4;
  border: 0;
  border-left: 1px solid #dfe2e4;
  cursor: pointer;
  text-align: right;
  transition: background .2s ease, color .2s ease;
}

.ija-hero-category-rail button:last-child {
  border-left: 0;
}

.ija-hero-category-rail button > .dashicons {
  width: 45px;
  height: 45px;
  color: #25313a;
  font-size: 45px;
}

.ija-hero-category-rail button > span:last-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ija-hero-category-rail small {
  color: #71808b;
  font-size: 11px;
  white-space: nowrap;
}

.ija-hero-category-rail b {
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ija-hero-category-rail button.is-active {
  color: #fff;
  background: var(--ija-primary);
}

.ija-hero-category-rail button.is-active > .dashicons,
.ija-hero-category-rail button.is-active small {
  color: #fff;
}

@media (max-width: 1080px) {
  .ija-news-slide-content {
    width: 57%;
    padding-inline: 35px;
  }

  .ija-news-slide-content h2 {
    font-size: 40px;
  }

  .ija-hero-category-rail {
    right: 5%;
    left: 5%;
  }

  .ija-hero-category-rail button {
    gap: 12px;
    padding-inline: 14px;
  }
}

@media (max-width: 820px) {
  .ija-news-slider {
    margin-top: 20px;
    margin-bottom: 92px;
  }

  .ija-news-slide-content {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    min-height: 0;
    padding: 55px 22px 20px;
    transform: none;
  }

  .ija-news-slide-content h2 {
    margin-top: 15px;
    font-size: 29px;
  }

  .ija-news-meta {
    top: 18px;
    right: 20px;
    left: 20px;
  }

  .ija-slide-count {
    display: none;
  }

  .ija-news-main-controls,
  .ija-news-dots {
    display: none;
  }

  .ija-hero-category-rail {
    right: 14px;
    bottom: -72px;
    left: 14px;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  .ija-hero-category-rail button {
    min-height: 90px;
  }
}

@media (max-width: 560px) {
  .ija-news-slider {
    margin-bottom: 78px;
  }

  .ija-news-slide-content {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 42px 13px 12px;
    border-right-width: 4px;
  }

  .ija-news-meta {
    top: 11px;
    right: 12px;
    left: 12px;
    font-size: 9px;
  }

  .ija-news-slide-content h2 {
    margin: 5px 0 0;
    font-size: 18px;
  }

  .ija-news-slide-content > a {
    min-height: 32px;
    margin-top: 8px;
    padding: 5px 10px;
    font-size: 9px;
  }

  .ija-hero-category-rail {
    bottom: -64px;
    grid-template-columns: repeat(4, 145px);
  }

  .ija-hero-category-rail button {
    min-height: 78px;
    gap: 8px;
    padding: 10px;
  }

  .ija-hero-category-rail button > .dashicons {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  .ija-hero-category-rail b {
    font-size: 13px;
  }
}

/* v4.2 compact three-column header */
.ija-brand-header,
.ija-brand-header[style] {
  min-height: 150px !important;
  grid-template-columns: 230px minmax(0, 1fr) 315px;
  grid-template-areas:
    "utility utility utility"
    "brand nav actions";
  grid-template-rows: 42px 108px;
  gap: 0 24px;
}

.ija-brand-lockup {
  justify-self: start;
}

.ija-brand-lockup > div {
  display: none !important;
}

.ija-brand-lockup img,
.ija-brand-lockup img[style] {
  width: 210px !important;
  height: 92px !important;
  max-width: 210px !important;
  max-height: 92px !important;
}

.ija-main-nav,
.ija-main-nav[style] {
  align-self: stretch;
  justify-content: center;
  border-top: 0;
}

.ija-main-nav .ija-nav-item > a,
.ija-main-nav .ija-nav-item > a[style] {
  height: 108px !important;
  min-height: 108px !important;
  padding-inline: 11px;
  font-size: 13px !important;
}

.ija-main-nav .ija-nav-item > a::after {
  bottom: 0;
}

.ija-brand-actions,
.ija-brand-actions[style] {
  align-self: center;
}

.ija-brand-actions a {
  min-height: 49px;
  padding-inline: 15px;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .ija-brand-header,
  .ija-brand-header[style] {
    grid-template-columns: 200px minmax(0, 1fr) 270px;
    gap: 0 14px;
  }

  .ija-brand-lockup img,
  .ija-brand-lockup img[style] {
    width: 185px !important;
  }

  .ija-main-nav .ija-nav-item > a,
  .ija-main-nav .ija-nav-item > a[style] {
    padding-inline: 7px;
    font-size: 11px !important;
  }

  .ija-brand-actions a {
    padding-inline: 10px;
    font-size: 11px;
  }
}

@media (max-width: 820px) {
  .ija-brand-header,
  .ija-brand-header[style] {
    min-height: 128px !important;
    grid-template-columns: 1fr 48px;
    grid-template-areas:
      "utility utility"
      "brand menu";
    grid-template-rows: 40px 88px;
    gap: 0 10px;
  }

  .ija-brand-lockup img,
  .ija-brand-lockup img[style] {
    width: 170px !important;
    height: 72px !important;
  }

  .ija-main-nav,
  .ija-main-nav[style] {
    position: absolute;
    top: calc(100% + 7px);
    right: 12px;
    left: 12px;
    align-self: auto;
    border-top: 4px solid var(--ija-primary);
  }

  .ija-main-nav .ija-nav-item > a,
  .ija-main-nav .ija-nav-item > a[style] {
    height: auto !important;
    min-height: 42px !important;
  }
}

/* v4.3 full-image slider: reference model 1, no white content panel */
.ija-news-slide::after {
  background:
    linear-gradient(90deg, rgba(18, 28, 38, .08) 0%, rgba(18, 28, 38, .18) 38%, rgba(118, 8, 23, .72) 100%),
    linear-gradient(0deg, rgba(18, 28, 38, .32), transparent 48%);
}

.ija-news-slide-content {
  top: 50%;
  right: 8%;
  bottom: auto;
  left: auto;
  width: min(650px, 47%);
  min-height: 0;
  display: block;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-50%);
}

.ija-news-meta {
  position: static;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .78);
}

.ija-news-meta span {
  order: 1;
  margin: 0;
  padding: 5px 11px;
  color: #fff;
  background: var(--ija-primary);
  border: 0;
  border-radius: 3px;
}

.ija-news-meta time {
  order: 2;
  padding-right: 11px;
  color: rgba(255, 255, 255, .78);
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.ija-slide-count {
  display: none;
}

.ija-news-slide-content h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.3;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .28);
}

.ija-news-slide-content p {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.9;
}

.ija-news-slide-content > a {
  min-height: 49px;
  margin-top: 21px;
  padding: 9px 22px;
  color: #fff;
  background: var(--ija-primary);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .16);
}

@media (max-width: 820px) {
  .ija-news-slide-content {
    top: 50%;
    right: 6%;
    bottom: auto;
    left: auto;
    width: 70%;
    padding: 0;
    background: transparent;
    transform: translateY(-50%);
  }

  .ija-news-slide-content h2 {
    font-size: 31px;
  }

  .ija-news-slide-content p {
    display: none;
  }
}

@media (max-width: 560px) {
  .ija-news-slide::after {
    background:
      linear-gradient(0deg, rgba(18, 28, 38, .88), rgba(18, 28, 38, .04) 72%),
      linear-gradient(90deg, rgba(118, 8, 23, .16), transparent);
  }

  .ija-news-slide-content {
    top: auto;
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
    transform: none;
  }

  .ija-news-meta {
    display: none;
  }

  .ija-news-slide-content h2 {
    color: #fff;
    font-size: 20px;
  }

  .ija-news-slide-content > a {
    min-height: 33px;
    margin-top: 9px;
    padding: 5px 11px;
    font-size: 10px;
  }
}

/* v4.3.2 final override: never render a white slider panel. */
html body .ija-landing .ija-news-slider .ija-news-slide-content {
  top: 50% !important;
  right: 8% !important;
  bottom: auto !important;
  left: auto !important;
  width: min(650px, 47%) !important;
  min-height: 0 !important;
  display: block !important;
  padding: 0 !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: translateY(-50%) !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
  display: -webkit-box !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: #fff !important;
  overflow: hidden !important;
  font-size: clamp(30px, 3.35vw, 50px) !important;
  line-height: 1.32 !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .38) !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content p {
  max-width: 590px !important;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 17px !important;
  line-height: 1.85 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .28) !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta {
  position: static !important;
  margin-bottom: 13px !important;
}

html body .ija-landing .ija-main-nav,
html body .ija-landing .ija-main-nav[style] {
  gap: 10px !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a,
html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
  padding-inline: 16px !important;
  font-size: 15px !important;
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    right: 6% !important;
    width: 70% !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: 30px !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    padding-inline: 11px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    top: auto !important;
    right: 14px !important;
    bottom: 18px !important;
    left: 14px !important;
    width: auto !important;
    transform: none !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: 19px !important;
  }
}

/* v4.3.5: lower-third headline and collision-free slider navigation. */
html body .ija-landing .ija-news-slider {
  margin-bottom: 165px !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content {
  top: auto !important;
  right: 8% !important;
  bottom: 125px !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots {
  right: 26px !important;
  bottom: 24px !important;
  left: auto !important;
  z-index: 20 !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-controls {
  right: auto !important;
  bottom: 24px !important;
  left: 26px !important;
  z-index: 20 !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail {
  right: 12% !important;
  bottom: -132px !important;
  left: 12% !important;
  z-index: 12 !important;
}

@media (max-width: 1080px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 105px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    right: 5% !important;
    left: 5% !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider {
    margin-bottom: 120px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    top: auto !important;
    right: 18px !important;
    bottom: 70px !important;
    left: 18px !important;
    width: auto !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    right: 14px !important;
    bottom: -98px !important;
    left: 14px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider {
    margin-bottom: 95px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    right: 12px !important;
    bottom: 15px !important;
    left: 12px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    bottom: -76px !important;
  }
}

/* v4.4 editorial section gates: one 16:9 lead story and two visual secondary stories. */
html body .ija-landing .ija-section-news-gates {
  padding-top: 82px;
}

html body .ija-landing .ija-section-news-gates .ija-feature-track {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  overflow: visible !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-card {
  min-width: 0 !important;
  padding: 0 0 22px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #e1e5e8 !important;
  border-top: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 48px rgba(18, 28, 38, .09) !important;
}

html body .ija-landing .ija-section-news-gates .ija-feature-card-head {
  width: 46px !important;
  height: 46px !important;
  margin: 22px 22px 0 !important;
  float: left !important;
  color: #fff !important;
  background: var(--ija-primary) !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-card > h3 {
  margin: 20px 22px 0 !important;
  color: var(--ija-ink) !important;
  font-size: 25px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-card > p {
  min-height: 0 !important;
  margin: 5px 22px 20px !important;
  color: var(--ija-muted) !important;
  font-size: 12px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-posts {
  padding: 0 22px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post {
  position: relative !important;
  display: block !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--ija-ink) !important;
  border: 0 !important;
  border-radius: 6px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(10, 17, 23, .92), rgba(10, 17, 23, .04) 68%) !important;
  pointer-events: none !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post-image {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform .4s ease !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post:hover img {
  transform: scale(1.035) !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post-title {
  position: absolute !important;
  z-index: 2 !important;
  right: 20px !important;
  bottom: 35px !important;
  left: 20px !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post small {
  position: absolute !important;
  z-index: 2 !important;
  right: 20px !important;
  bottom: 13px !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 10px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-posts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-post {
  position: relative !important;
  min-height: 150px !important;
  display: block !important;
  overflow: hidden !important;
  background: var(--ija-ink) !important;
  border-radius: 5px !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-post::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(10, 17, 23, .9), rgba(10, 17, 23, .04) 70%) !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-thumb {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-mini-post strong {
  position: absolute !important;
  z-index: 2 !important;
  right: 12px !important;
  bottom: 11px !important;
  left: 12px !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

html body .ija-landing .ija-section-news-gates .ija-feature-hint {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 18px 22px 0 !important;
  padding: 6px 14px !important;
  color: #fff !important;
  background: var(--ija-primary) !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

@media (max-width: 820px) {
  html body .ija-landing .ija-section-news-gates .ija-feature-track {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-section-news-gates .ija-gate-card > h3 {
    font-size: 22px !important;
  }

  html body .ija-landing .ija-section-news-gates .ija-gate-post-title {
    right: 14px !important;
    bottom: 29px !important;
    left: 14px !important;
    font-size: 16px !important;
  }

  html body .ija-landing .ija-section-news-gates .ija-gate-post small {
    right: 14px !important;
    bottom: 10px !important;
  }

  html body .ija-landing .ija-section-news-gates .ija-gate-mini-posts {
    grid-template-columns: 1fr !important;
  }

  html body .ija-landing .ija-section-news-gates .ija-gate-mini-post {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* v4.5 premium identity: warm utility bar, pill navigation, and layered section backgrounds. */
html body .ija-landing .ija-brand-header,
html body .ija-landing .ija-brand-header[style] {
  min-height: 174px !important;
  grid-template-rows: 58px 116px !important;
  background:
    radial-gradient(circle at 86% 38%, rgba(205, 164, 59, .08), transparent 24%),
    #fff !important;
}

html body .ija-landing .ija-header-utility {
  min-height: 58px !important;
  gap: 15px !important;
  padding: 7px 12px !important;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .36), transparent 36%),
    #e8bd61 !important;
  border: 0 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 7px 20px rgba(103, 71, 15, .1) !important;
}

html body .ija-landing .ija-utility-nav {
  gap: 9px !important;
}

html body .ija-landing .ija-utility-nav a {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 15px !important;
  color: #181c21 !important;
  background: rgba(255, 255, 255, .73) !important;
  border: 1px solid rgba(125, 88, 18, .18) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 13px rgba(84, 56, 9, .08) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-utility-nav a + a::before {
  display: none !important;
}

html body .ija-landing .ija-header-utility .ija-social-mini {
  gap: 7px !important;
  margin-inline-start: auto !important;
}

html body .ija-landing .ija-header-utility .ija-social-mini a,
html body .ija-landing .ija-header-utility .ija-social-mini > span {
  width: 38px !important;
  height: 38px !important;
  border: 2px solid rgba(255, 255, 255, .82) !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(38, 31, 20, .14) !important;
  font-size: 13px !important;
}

html body .ija-landing .ija-social-facebook {
  background: #1877f2 !important;
}

html body .ija-landing .ija-social-x {
  background: #050505 !important;
}

html body .ija-landing .ija-social-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045) !important;
}

html body .ija-landing .ija-social-youtube {
  background: #ff0000 !important;
}

html body .ija-landing .ija-social-linkedin {
  background: #0a66c2 !important;
}

html body .ija-landing .ija-language-switcher {
  gap: 7px !important;
  padding-inline-start: 0 !important;
  border: 0 !important;
}

html body .ija-landing .ija-language-switcher button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  color: #20252a !important;
  background: rgba(255, 255, 255, .78) !important;
  border: 1px solid rgba(125, 88, 18, .2) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 13px rgba(84, 56, 9, .08) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-language-switcher button span {
  font-size: 17px !important;
  line-height: 1 !important;
}

html body .ija-landing .ija-language-switcher button:hover,
html body .ija-landing .ija-utility-nav a:hover {
  color: #fff !important;
  background: var(--ija-primary) !important;
  border-color: var(--ija-primary) !important;
  transform: translateY(-1px) !important;
}

html body .ija-landing .ija-brand-header,
html body .ija-landing .ija-brand-header[style] {
  grid-template-columns: 225px minmax(0, 1fr) 310px !important;
}

html body .ija-landing .ija-main-nav,
html body .ija-landing .ija-main-nav[style] {
  align-self: center !important;
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 8px 12px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(205, 164, 59, .11), transparent 28%),
    #121518 !important;
  border: 1px solid #292d30 !important;
  border-radius: 9px !important;
  box-shadow: 0 15px 34px rgba(18, 21, 24, .15) !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a,
html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
  height: 44px !important;
  min-height: 44px !important;
  padding: 7px 16px !important;
  color: #e7e2da !important;
  background: #202326 !important;
  border: 1px solid rgba(205, 164, 59, .28) !important;
  border-radius: 999px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a span {
  display: none !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a::after {
  display: none !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a:hover,
html body .ija-landing .ija-main-nav .ija-nav-item > a.active {
  color: #17130b !important;
  background: linear-gradient(135deg, #f0d27d, #c99e36) !important;
  border-color: #e4c56c !important;
  transform: translateY(-2px) !important;
}

html body .ija-landing .ija-brand-actions a {
  border-radius: 999px !important;
}

/* Soft layered backgrounds instead of flat white bands. */
html body .ija-landing .ija-section-news-gates {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  padding: 88px max(24px, calc((100% - var(--ija-container)) / 2)) !important;
  background:
    radial-gradient(circle at 8% 16%, rgba(205, 164, 59, .16) 0 62px, transparent 64px),
    radial-gradient(circle at 95% 82%, rgba(109, 118, 124, .1) 0 95px, transparent 97px),
    linear-gradient(135deg, rgba(255, 255, 255, .62), transparent 48%),
    #eeeae2 !important;
}

html body .ija-landing #ija-board {
  background:
    radial-gradient(circle at 92% 12%, rgba(205, 164, 59, .13) 0 72px, transparent 74px),
    radial-gradient(circle at 8% 88%, rgba(92, 100, 106, .09) 0 108px, transparent 110px),
    linear-gradient(180deg, #f3f1ec, #e9ecec) !important;
}

html body .ija-landing .ija-about {
  background:
    radial-gradient(circle at 8% 22%, rgba(205, 164, 59, .16) 0 75px, transparent 77px),
    radial-gradient(circle at 92% 75%, rgba(91, 103, 110, .1) 0 120px, transparent 122px),
    linear-gradient(125deg, rgba(255, 255, 255, .65), transparent 52%),
    #e8edef !important;
}

html body .ija-landing .ija-journey {
  position: relative !important;
}

html body .ija-landing .ija-journey::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  inset: 20px -120px !important;
  background:
    radial-gradient(circle at 12% 30%, rgba(205, 164, 59, .11) 0 80px, transparent 82px),
    radial-gradient(circle at 86% 70%, rgba(90, 99, 105, .08) 0 120px, transparent 122px),
    #f4f2ed !important;
}

html body .ija-landing .ija-membership-partners {
  position: relative !important;
}

html body .ija-landing .ija-membership-partners::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  inset: 20px -120px !important;
  background:
    radial-gradient(circle at 90% 20%, rgba(205, 164, 59, .13) 0 85px, transparent 87px),
    linear-gradient(135deg, #edf0ef, #f5f1e9) !important;
}

@media (max-width: 1180px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    grid-template-columns: 190px minmax(0, 1fr) 265px !important;
    gap: 0 12px !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    padding-inline: 11px !important;
    font-size: 12px !important;
  }

  html body .ija-landing .ija-language-switcher button {
    padding-inline: 8px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    min-height: 144px !important;
    grid-template-columns: 1fr 48px !important;
    grid-template-areas:
      "utility utility"
      "brand menu" !important;
    grid-template-rows: 56px 88px !important;
    padding-inline: 10px !important;
  }

  html body .ija-landing .ija-header-utility {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-inline: 8px !important;
    scrollbar-width: none !important;
  }

  html body .ija-landing .ija-header-utility::-webkit-scrollbar {
    display: none !important;
  }

  html body .ija-landing .ija-utility-nav {
    display: flex !important;
    flex: 0 0 auto !important;
  }

  html body .ija-landing .ija-header-utility .ija-social-mini {
    flex: 0 0 auto !important;
    margin-inline-start: 0 !important;
  }

  html body .ija-landing .ija-language-switcher {
    flex: 0 0 auto !important;
    margin-inline-start: 0 !important;
  }

  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    position: absolute !important;
    top: calc(100% + 7px) !important;
    right: 12px !important;
    left: 12px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 112px 10px 10px !important;
    background: #121518 !important;
    border-top: 4px solid var(--ija-gold) !important;
  }

  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-main-nav {
    display: flex !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 7px !important;
  }

  html body .ija-landing .ija-section-news-gates {
    padding-inline: 15px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-header-utility {
    min-height: 54px !important;
  }

  html body .ija-landing .ija-utility-nav a {
    min-height: 34px !important;
    padding-inline: 11px !important;
    font-size: 12px !important;
  }

  html body .ija-landing .ija-language-switcher button {
    min-height: 34px !important;
    font-size: 0 !important;
  }

  html body .ija-landing .ija-language-switcher button span {
    font-size: 18px !important;
  }

  html body .ija-landing .ija-header-utility .ija-social-mini a,
  html body .ija-landing .ija-header-utility .ija-social-mini > span {
    width: 34px !important;
    height: 34px !important;
  }
}

/* v4.5.1 - Reference-matched editorial slider. */
html body .ija-landing .ija-news-slider {
  position: relative !important;
  isolation: isolate !important;
  width: min(100% - 30px, var(--ija-container)) !important;
  max-width: var(--ija-container) !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  margin: 28px auto 154px !important;
  overflow: visible !important;
  background: #17110f !important;
  border: 0 !important;
  border-bottom: 5px solid #dda72b !important;
  border-radius: 0 !important;
  box-shadow: 0 24px 55px rgba(35, 25, 19, .18) !important;
}

html body .ija-landing .ija-news-slider .ija-news-slides {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  background: #17110f !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.045) !important;
  filter: saturate(1.04) contrast(1.02) !important;
  will-change: transform !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide.is-active > img {
  animation: ijaReferenceKenBurns 5.6s cubic-bezier(.2, .65, .25, 1) both !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide::after {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(18, 9, 7, .04) 0%, rgba(18, 9, 7, .04) 38%, rgba(20, 9, 7, .79) 100%),
    linear-gradient(90deg, rgba(224, 157, 35, .46) 0%, rgba(174, 102, 26, .18) 42%, rgba(137, 4, 34, .3) 70%, rgba(136, 5, 37, .76) 100%) !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content {
  position: absolute !important;
  z-index: 3 !important;
  inset: auto 8.5% 57px 8.5% !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  display: block !important;
  padding: 0 0 0 132px !important;
  color: #fff !important;
  text-align: right !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-slide-count,
html body .ija-landing .ija-news-slider .ija-hero-caption,
html body .ija-landing .ija-news-slider .ija-hero-progress {
  display: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta {
  position: absolute !important;
  right: 0 !important;
  bottom: calc(100% + clamp(330px, 35vw, 540px)) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 9px !important;
  width: auto !important;
  margin: 0 !important;
  color: #fff !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta span,
html body .ija-landing .ija-news-slider .ija-news-meta time {
  display: inline-flex !important;
  min-height: 48px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 10px 18px !important;
  color: #fff !important;
  background: #ed873b !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 3px !important;
  box-shadow: 0 9px 24px rgba(80, 20, 10, .18) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
  width: 100% !important;
  max-width: none !important;
  display: -webkit-box !important;
  margin: 0 0 14px !important;
  overflow: hidden !important;
  color: #fff !important;
  font-size: clamp(31px, 3.7vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.23 !important;
  letter-spacing: 0 !important;
  text-align: right !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .45) !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content p {
  width: min(78%, 900px) !important;
  max-width: none !important;
  display: -webkit-box !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: rgba(255, 255, 255, .94) !important;
  font-size: clamp(15px, 1.35vw, 20px) !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  text-align: right !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45) !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
  position: absolute !important;
  left: 0 !important;
  bottom: 2px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 11px 20px !important;
  color: #fff !important;
  background: #ed873b !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 3px !important;
  box-shadow: 0 10px 24px rgba(70, 18, 8, .22) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content > a:hover {
  color: #261208 !important;
  background: #f5b04b !important;
  transform: translateY(-2px) !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-controls {
  position: absolute !important;
  z-index: 7 !important;
  right: auto !important;
  left: 24px !important;
  bottom: 24px !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 9px !important;
  width: auto !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-nav {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 !important;
  color: #1d2429 !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, .75) !important;
  border-radius: 4px !important;
  box-shadow: 0 7px 21px rgba(0, 0, 0, .2) !important;
  font-size: 38px !important;
  font-family: Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-nav:hover {
  color: #fff !important;
  background: #ed873b !important;
  border-color: #ed873b !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots {
  position: absolute !important;
  z-index: 7 !important;
  right: 24px !important;
  left: auto !important;
  bottom: 24px !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots button {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: transparent !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, .82) !important;
  border-radius: 3px !important;
  box-shadow: 0 7px 21px rgba(0, 0, 0, .16) !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots button span {
  color: transparent !important;
  font-size: 0 !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots button.is-active {
  color: #fff !important;
  background: #ed873b !important;
  border-color: #ed873b !important;
  transform: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots button.is-active span {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail {
  position: absolute !important;
  z-index: 6 !important;
  right: 50% !important;
  bottom: -135px !important;
  left: auto !important;
  width: min(82%, 1120px) !important;
  height: 136px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #e2e4e5 !important;
  border-radius: 0 !important;
  box-shadow: 0 20px 40px rgba(26, 31, 34, .12) !important;
  transform: translateX(50%) !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
  min-width: 0 !important;
  height: 100% !important;
  border-radius: 0 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide.is-active .ija-news-meta {
  animation: ijaReferenceMetaIn .58s .08s cubic-bezier(.2, .8, .2, 1) both !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide.is-active h2 {
  animation: ijaReferenceTextIn .72s .16s cubic-bezier(.2, .8, .2, 1) both !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide.is-active p {
  animation: ijaReferenceTextIn .72s .3s cubic-bezier(.2, .8, .2, 1) both !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide.is-active .ija-news-slide-content > a {
  animation: ijaReferenceButtonIn .58s .46s cubic-bezier(.2, .8, .2, 1) both !important;
}

@keyframes ijaReferenceKenBurns {
  from { transform: scale(1.065); }
  to { transform: scale(1); }
}

@keyframes ijaReferenceMetaIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ijaReferenceTextIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes ijaReferenceButtonIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1100px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 6% 62px 6% !important;
    padding-left: 112px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    bottom: calc(100% + clamp(235px, 33vw, 360px)) !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider {
    width: calc(100% - 20px) !important;
    margin-top: 16px !important;
    margin-bottom: 118px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 20px 52px 20px !important;
    padding: 0 0 0 90px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    bottom: calc(100% + clamp(110px, 26vw, 190px)) !important;
    gap: 5px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 34px !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    margin-bottom: 5px !important;
    font-size: clamp(19px, 4.4vw, 31px) !important;
    line-height: 1.25 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    width: 100% !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 1 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 12px !important;
    bottom: 12px !important;
    gap: 5px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    font-size: 27px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 12px !important;
    bottom: 12px !important;
    gap: 4px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    bottom: -101px !important;
    width: calc(100% - 28px) !important;
    height: 102px !important;
    overflow-x: auto !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider {
    aspect-ratio: 16 / 10 !important;
    margin-bottom: 96px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 14px 48px 14px !important;
    padding-left: 68px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    bottom: calc(100% + 64px) !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 27px !important;
    padding: 4px 7px !important;
    font-size: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(16px, 5vw, 23px) !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    display: none !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
    min-height: 30px !important;
    padding: 6px 9px !important;
    font-size: 9px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 7px !important;
    bottom: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    font-size: 22px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 7px !important;
    bottom: 8px !important;
    gap: 3px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    bottom: -81px !important;
    width: calc(100% - 16px) !important;
    height: 82px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .ija-landing .ija-news-slider .ija-news-slide.is-active > img,
  html body .ija-landing .ija-news-slider .ija-news-slide.is-active .ija-news-meta,
  html body .ija-landing .ija-news-slider .ija-news-slide.is-active h2,
  html body .ija-landing .ija-news-slider .ija-news-slide.is-active p,
  html body .ija-landing .ija-news-slider .ija-news-slide.is-active .ija-news-slide-content > a {
    animation: none !important;
  }
}


/* v4.5.2: final single-line premium hero fix. */
html body .ija-landing .ija-news-slider {
  margin-bottom: 138px !important;
  overflow: visible !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide {
  overflow: hidden !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide::after {
  background:
    linear-gradient(90deg, rgba(205, 164, 59, .58) 0%, rgba(18, 28, 38, .18) 43%, rgba(161, 15, 32, .72) 100%),
    linear-gradient(0deg, rgba(18, 28, 38, .62) 0%, rgba(18, 28, 38, .12) 48%, rgba(18, 28, 38, .06) 100%) !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content {
  inset: auto 7% 76px 7% !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 0 0 176px !important;
  display: block !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  z-index: 18 !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta {
  position: absolute !important;
  inset: auto auto calc(100% + 330px) 0 !important;
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: auto !important;
  margin: 0 !important;
  z-index: 21 !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta span,
html body .ija-landing .ija-news-slider .ija-news-meta time {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  color: #fff !important;
  background: #f28b36 !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18) !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
  display: block !important;
  width: 100% !important;
  max-width: calc(100% - 190px) !important;
  margin: 0 0 14px auto !important;
  color: #fff !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-size: clamp(31px, 3.45vw, 55px) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: -.02em !important;
  text-align: right !important;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .5) !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content p {
  display: -webkit-box !important;
  max-width: min(720px, calc(100% - 220px)) !important;
  margin: 0 0 0 auto !important;
  overflow: hidden !important;
  color: rgba(255, 255, 255, .92) !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  text-align: right !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .42) !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 10px 23px !important;
  color: #fff !important;
  background: #f28b36 !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22) !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots {
  right: 7% !important;
  bottom: 28px !important;
  left: auto !important;
  z-index: 22 !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots button {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  border-radius: 4px !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-controls {
  right: auto !important;
  left: 7% !important;
  bottom: 28px !important;
  z-index: 22 !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-nav {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  border-radius: 4px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail {
  right: 12% !important;
  left: 12% !important;
  bottom: -112px !important;
  height: 112px !important;
  z-index: 16 !important;
}

@media (max-width: 1100px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 6% 66px 6% !important;
    padding-left: 142px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-meta {
    bottom: calc(100% + 255px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    max-width: calc(100% - 150px) !important;
    font-size: clamp(27px, 3.8vw, 43px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    max-width: calc(100% - 170px) !important;
    font-size: 15px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider {
    margin-bottom: 112px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 16px 54px 16px !important;
    padding-left: 0 !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-meta {
    display: none !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    max-width: 100% !important;
    font-size: clamp(20px, 4.7vw, 31px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    display: none !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
    display: none !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 12px !important;
    bottom: 10px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 12px !important;
    bottom: 10px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    right: 12px !important;
    left: 12px !important;
    bottom: -96px !important;
    height: 96px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider {
    margin-bottom: 88px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    inset: auto 12px 48px 12px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(17px, 5vw, 22px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    bottom: -78px !important;
    height: 78px !important;
  }
}


/* v4.5.3 - center 4 bottom tabs, smaller one-line title, cleaner spacing */
html body .ija-landing .ija-news-slider .ija-news-slide-content {
  left: 24px !important;
  right: 24px !important;
  bottom: 108px !important;
  padding: 0 0 0 112px !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta {
  top: 18px !important;
  bottom: auto !important;
  right: 24px !important;
  left: auto !important;
  justify-content: flex-start !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
  display: block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-size: clamp(24px, 2.45vw, 42px) !important;
  line-height: 1.15 !important;
  -webkit-line-clamp: unset !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content p {
  width: min(70%, 760px) !important;
  margin: 0 0 0 auto !important;
  font-size: clamp(14px, 1.05vw, 17px) !important;
  line-height: 1.65 !important;
  -webkit-line-clamp: 2 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
  left: 0 !important;
  bottom: 0 !important;
}

html body .ija-landing .ija-news-slider .ija-news-main-controls {
  left: 24px !important;
  bottom: 28px !important;
}

html body .ija-landing .ija-news-slider .ija-news-dots {
  right: 24px !important;
  bottom: 28px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail {
  left: 50% !important;
  right: auto !important;
  bottom: -126px !important;
  width: min(74%, 980px) !important;
  height: 126px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  transform: translateX(-50%) !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 18px 16px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
  width: 36px !important;
  height: 36px !important;
  font-size: 36px !important;
  flex: 0 0 36px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail button > span:last-child {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
  font-size: 11px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
  font-size: 17px !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 96px !important;
    padding-left: 104px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(22px, 2.85vw, 34px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    width: min(78%, 680px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    width: min(86%, 920px) !important;
    bottom: -118px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 78px !important;
    padding-left: 86px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(18px, 3.8vw, 28px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    width: 100% !important;
    font-size: 12px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 14px !important;
    right: 18px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 12px !important;
    bottom: 16px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 12px !important;
    bottom: 16px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 28px) !important;
    bottom: -102px !important;
    height: 102px !important;
    transform: translateX(-50%) !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    gap: 10px !important;
    padding: 12px 10px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
    width: 28px !important;
    height: 28px !important;
    font-size: 28px !important;
    flex-basis: 28px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    font-size: 14px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    left: 14px !important;
    right: 14px !important;
    bottom: 56px !important;
    padding-left: 60px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(15px, 4vw, 22px) !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content p {
    display: none !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    width: calc(100% - 16px) !important;
    bottom: -84px !important;
    height: 84px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    padding: 10px 8px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
    font-size: 9px !important;
  }
  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    font-size: 12px !important;
  }
}

/* v4.6.0 Premium control panel final defaults */
html body .ija-landing .ija-news-slider .ija-news-meta{
  top:var(--ija-slider-badge-top,22px)!important;
  right:var(--ija-slider-badge-right,24px)!important;
  bottom:auto!important;
}
html body .ija-landing .ija-news-slider .ija-news-slide-content h2{
  font-size:var(--ija-slider-title-size,34px)!important;
  color:var(--ija-slider-title,#fff)!important;
}
html body .ija-landing .ija-news-slider .ija-news-slide-content p{
  font-size:var(--ija-slider-excerpt-size,15px)!important;
  color:var(--ija-slider-excerpt,#fff)!important;
}
html body .ija-landing .ija-news-slider .ija-news-meta span,
html body .ija-landing .ija-news-slider .ija-news-meta time,
html body .ija-landing .ija-news-slider .ija-news-dots button.is-active{
  background:var(--ija-slider-orange,#ed873b)!important;
  border-color:var(--ija-slider-orange,#ed873b)!important;
  color:var(--ija-slider-badge-text,#fff)!important;
}
html body .ija-landing .ija-news-slider .ija-hero-category-rail{
  left:50%!important;right:auto!important;transform:translateX(-50%)!important;width:min(74%,980px)!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;
}


/* v4.6.1 guaranteed fix: slider badges are independent from headline area */
html body .ija-landing .ija-news-slider .ija-news-slide {
  position: absolute !important;
}

html body .ija-landing .ija-news-slider .ija-news-meta {
  position: absolute !important;
  z-index: 9 !important;
  top: var(--ija-slider-badge-top, 24px) !important;
  right: var(--ija-slider-badge-right, 24px) !important;
  bottom: auto !important;
  left: auto !important;
  display: inline-flex !important;
  gap: 8px !important;
  width: auto !important;
  max-width: calc(100% - 48px) !important;
  margin: 0 !important;
  transform: none !important;
  pointer-events: auto !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content {
  z-index: 8 !important;
  bottom: 108px !important;
  left: 24px !important;
  right: 24px !important;
  padding-left: 112px !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  font-size: var(--ija-slider-title-size, 30px) !important;
  line-height: 1.16 !important;
  -webkit-line-clamp: unset !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide-content p {
  width: min(70%, 760px) !important;
  margin: 0 0 0 auto !important;
  font-size: var(--ija-slider-excerpt-size, 15px) !important;
  line-height: 1.65 !important;
}

@media (max-width: 820px) {
  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 14px !important;
    right: 16px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 76px !important;
    left: 16px !important;
    right: 16px !important;
    padding-left: 84px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(18px, 3.8vw, 27px) !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 10px !important;
    right: 10px !important;
    gap: 5px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 54px !important;
    left: 12px !important;
    right: 12px !important;
    padding-left: 58px !important;
  }
  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(15px, 4vw, 21px) !important;
  }
}


/* v4.6.2 - Wide premium layout up to 1600px, removes large white side gaps */
html body .ija-landing{
  width:100% !important;
  max-width:var(--ija-site-max-width,1600px) !important;
  margin-inline:auto !important;
  background:var(--ija-landing-bg,#f8f4ea) !important;
  overflow-x:hidden !important;
}

html body .ija-landing .ija-brand-header,
html body .ija-landing .ija-header-utility,
html body .ija-landing .ija-ticker,
html body .ija-landing .ija-news-slider,
html body .ija-landing .ija-section,
html body .ija-landing .ija-section-news-gates,
html body .ija-landing #ija-board,
html body .ija-landing .ija-about,
html body .ija-landing .ija-journey,
html body .ija-landing .ija-membership-partners,
html body .ija-landing .ija-footer{
  width:min(calc(100% - (var(--ija-site-side-gap,16px) * 2)), var(--ija-site-max-width,1600px)) !important;
  max-width:var(--ija-site-max-width,1600px) !important;
  margin-inline:auto !important;
}

html body .ija-landing .ija-news-slider{
  width:min(calc(100% - (var(--ija-site-side-gap,16px) * 2)), var(--ija-site-max-width,1600px)) !important;
  margin-top:28px !important;
}

html body .ija-landing .ija-ticker{
  border-radius:0 !important;
}

html body .ija-landing .ija-brand-header{
  border-radius:0 0 14px 14px !important;
}

html body .ija-landing .ija-news-slider .ija-hero-category-rail{
  width:min(74%, 1120px) !important;
}

@media (min-width:1601px){
  html body .ija-landing{
    box-shadow:0 0 0 1px rgba(0,0,0,.04), 0 30px 80px rgba(22,29,37,.08) !important;
  }
}

@media (max-width:820px){
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-header-utility,
  html body .ija-landing .ija-ticker,
  html body .ija-landing .ija-news-slider,
  html body .ija-landing .ija-section,
  html body .ija-landing .ija-section-news-gates,
  html body .ija-landing #ija-board,
  html body .ija-landing .ija-about,
  html body .ija-landing .ija-journey,
  html body .ija-landing .ija-membership-partners,
  html body .ija-landing .ija-footer{
    width:calc(100% - 20px) !important;
  }
}


/* v4.6.3 - Mobile-only fixes: no horizontal overflow, clean hero rail, compact board carousel */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  html body .ija-landing {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body .ija-landing .ija-header-utility,
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-ticker,
  html body .ija-landing .ija-news-slider,
  html body .ija-landing .ija-section,
  html body .ija-landing .ija-section-news-gates,
  html body .ija-landing #ija-board,
  html body .ija-landing .ija-about,
  html body .ija-landing .ija-journey,
  html body .ija-landing .ija-membership-partners,
  html body .ija-landing .ija-footer {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body .ija-landing .ija-news-slider {
    aspect-ratio: 16 / 11 !important;
    margin-top: 18px !important;
    margin-bottom: 126px !important;
    border-radius: 0 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    left: 14px !important;
    right: 14px !important;
    bottom: 72px !important;
    padding-left: 78px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    max-width: 100% !important;
    font-size: clamp(18px, 4.2vw, 28px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 18px !important;
    right: 16px !important;
    gap: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 44px !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 14px !important;
    bottom: 24px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 14px !important;
    bottom: 24px !important;
    gap: 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    left: 50% !important;
    right: auto !important;
    bottom: -104px !important;
    width: min(92%, 720px) !important;
    max-width: calc(100% - 28px) !important;
    height: 104px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 18px 34px rgba(22, 29, 37, .16) !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    min-width: 0 !important;
    height: 100% !important;
    gap: 8px !important;
    padding: 10px 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    font-size: 28px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
    font-size: 9px !important;
    white-space: nowrap !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body .ija-landing #ija-board {
    margin-top: 22px !important;
    overflow: hidden !important;
  }

  html body .ija-landing #ija-board .ija-board {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  html body .ija-landing .ija-board-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(210px, 68vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 0 !important;
    padding: 18px 12px 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }

  html body .ija-landing .ija-board-card {
    min-width: 0 !important;
    min-height: 278px !important;
    width: auto !important;
    padding: 20px 12px !important;
    scroll-snap-align: center !important;
  }

  html body .ija-landing .ija-board-card.is-president {
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
    min-height: 302px !important;
    transform: none !important;
  }

  html body .ija-landing .ija-board-photo {
    width: 112px !important;
    height: 112px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 128px !important;
    height: 128px !important;
  }

  html body .ija-landing .ija-board-card h3 {
    font-size: 16px !important;
  }

  html body .ija-landing .ija-board-card.is-president h3 {
    font-size: 18px !important;
  }

  html body .ija-landing .ija-board-card p {
    display: none !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider {
    aspect-ratio: 16 / 12 !important;
    margin-bottom: 112px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 14px !important;
    right: 12px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 38px !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 64px !important;
    padding-left: 0 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(17px, 5.2vw, 24px) !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
    display: none !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    bottom: -92px !important;
    height: 92px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    gap: 5px !important;
    padding: 8px 4px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
    width: 23px !important;
    height: 23px !important;
    flex-basis: 23px !important;
    font-size: 23px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
    font-size: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    font-size: 10px !important;
  }

  html body .ija-landing .ija-board-grid {
    grid-auto-columns: minmax(205px, 76vw) !important;
    padding-inline: 8px !important;
  }
}

/* IJA v4.8.0 Premium institutional cleanup */
html body .ija-landing {
  --ija-premium-red: #8f101c;
  --ija-premium-red-deep: #670b14;
  --ija-premium-gold: #d6a735;
  --ija-premium-ink: #101820;
  --ija-premium-muted: #67717c;
  --ija-premium-soft: #f8f4ea;
}

html body .ija-landing .ija-topbar {
  border-radius: 0 0 22px 22px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #fff7df, #f0ca74) !important;
  box-shadow: 0 10px 30px rgba(16, 24, 32, .08);
}

html body .ija-landing .ija-brand-header,
html body .ija-landing .ija-brand-header[style] {
  min-height: 212px !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) auto minmax(280px, 1fr) !important;
  grid-template-areas:
    "utility utility utility"
    "brand nav actions" !important;
  align-items: center !important;
  gap: 14px 22px !important;
  padding: 16px 24px 22px !important;
  border: 1px solid rgba(214, 167, 53, .28) !important;
  border-radius: 0 0 30px 30px !important;
  background:
    radial-gradient(circle at 12% 15%, rgba(214,167,53,.13), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 44%, #f8f4ea 100%) !important;
  box-shadow: 0 18px 55px rgba(16, 24, 32, .10) !important;
  overflow: visible !important;
}

html body .ija-landing .ija-header-utility {
  grid-area: utility !important;
  min-height: 42px !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(16, 24, 32, .07) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .74) !important;
  backdrop-filter: blur(10px);
}

html body .ija-landing .ija-brand-lockup {
  grid-area: brand !important;
  justify-self: start !important;
  max-width: 430px !important;
  gap: 14px !important;
}

html body .ija-landing .ija-brand-lockup img,
html body .ija-landing .ija-brand-lockup img[style] {
  width: 190px !important;
  height: auto !important;
  max-height: 106px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 20px rgba(16,24,32,.10));
}

html body .ija-landing .ija-brand-lockup strong {
  color: var(--ija-premium-ink) !important;
  font-size: clamp(23px, 2vw, 34px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.3px !important;
}

html body .ija-landing .ija-brand-lockup small {
  display: block !important;
  margin-top: 7px !important;
  color: var(--ija-premium-muted) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  max-width: 360px !important;
}

html body .ija-landing .ija-main-nav,
html body .ija-landing .ija-main-nav[style] {
  grid-area: nav !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--ija-premium-ink), #1d2730) !important;
  box-shadow: inset 0 0 0 1px rgba(214,167,53,.24), 0 14px 34px rgba(16,24,32,.16) !important;
  transform: none !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a,
html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(214,167,53,.24) !important;
  background: rgba(255,255,255,.04) !important;
  color: #fff7df !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a:hover,
html body .ija-landing .ija-main-nav .ija-nav-item > a.active {
  background: linear-gradient(135deg, var(--ija-premium-red), var(--ija-premium-red-deep)) !important;
  color: #fff !important;
  border-color: rgba(214,167,53,.7) !important;
  transform: translateY(-1px) !important;
}

html body .ija-landing .ija-brand-actions,
html body .ija-landing .ija-brand-actions[style] {
  grid-area: actions !important;
  justify-self: end !important;
  width: 340px !important;
  max-width: 340px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  transform: none !important;
}

html body .ija-landing .ija-brand-actions a {
  min-height: 48px !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 28px rgba(16,24,32,.13) !important;
}

html body .ija-landing .ija-section-head {
  max-width: 920px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

html body .ija-landing .ija-section-head > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  background: rgba(143,16,28,.08) !important;
  color: var(--ija-premium-red) !important;
  border: 1px solid rgba(143,16,28,.12) !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-section-head h2 {
  color: var(--ija-premium-ink) !important;
  font-size: clamp(28px, 3vw, 46px) !important;
  letter-spacing: -.5px !important;
}

html body .ija-landing .ija-board {
  position: relative !important;
  border-radius: 34px !important;
  padding-block: 44px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(214,167,53,.16), transparent 32%),
    linear-gradient(135deg, #fff, #fbf6ea) !important;
  border: 1px solid rgba(214,167,53,.22) !important;
}

html body .ija-landing .ija-board-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

html body .ija-landing .ija-board-card {
  position: relative !important;
  min-height: 315px !important;
  padding: 28px 18px 22px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff, #fffaf0) !important;
  border: 1px solid rgba(214,167,53,.24) !important;
  box-shadow: 0 16px 36px rgba(16,24,32,.10) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
  overflow: hidden !important;
}

html body .ija-landing .ija-board-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ija-premium-red), var(--ija-premium-gold));
}

html body .ija-landing .ija-board-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 55px rgba(16,24,32,.16) !important;
  border-color: rgba(214,167,53,.55) !important;
}

html body .ija-landing .ija-board-card.is-president {
  background:
    radial-gradient(circle at 50% 0%, rgba(214,167,53,.28), transparent 44%),
    linear-gradient(180deg, #fffdf7, #fff4d7) !important;
  border: 2px solid rgba(214,167,53,.68) !important;
  box-shadow: 0 22px 60px rgba(143,16,28,.16) !important;
}

html body .ija-landing .ija-board-card.is-president::after {
  content: "رئيس مجلس الإدارة";
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ija-premium-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

html body .ija-landing .ija-board-photo {
  width: 114px !important;
  height: 114px !important;
  margin-inline: auto !important;
  border: 4px solid #fff !important;
  outline: 2px solid rgba(214,167,53,.56) !important;
  box-shadow: 0 12px 30px rgba(16,24,32,.15) !important;
}

html body .ija-landing .ija-board-card h3 {
  margin-top: 18px !important;
  color: var(--ija-premium-ink) !important;
  font-size: 19px !important;
  font-weight: 900 !important;
}

html body .ija-landing .ija-board-card strong {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  background: rgba(143,16,28,.08) !important;
  color: var(--ija-premium-red) !important;
  font-size: 12px !important;
}

html body .ija-landing .ija-board-profile-link,
html body .ija-landing .ija-board-action a {
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--ija-premium-ink), #25313b) !important;
  color: #fff !important;
  border: 1px solid rgba(214,167,53,.35) !important;
}

html body .ija-landing .ija-section-news-gates .ija-feature-track {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  transform: none !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-card {
  min-width: 0 !important;
  border-radius: 28px !important;
  border: 1px solid rgba(16,24,32,.08) !important;
  background: linear-gradient(180deg, #ffffff, #fffaf2) !important;
  box-shadow: 0 16px 40px rgba(16,24,32,.09) !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-card .ija-feature-card-head {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--ija-premium-red), var(--ija-premium-red-deep)) !important;
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(143,16,28,.22) !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post.is-featured {
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(214,167,53,.24) !important;
}

html body .ija-landing .ija-about-panel-pro {
  border-radius: 34px !important;
  background: linear-gradient(135deg, #fff, #fff7e6) !important;
  border: 1px solid rgba(214,167,53,.24) !important;
  box-shadow: 0 18px 50px rgba(16,24,32,.09) !important;
}

@media (max-width: 1240px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    grid-template-columns: 1fr !important;
    grid-template-areas: "utility" "brand" "actions" "nav" !important;
  }
  html body .ija-landing .ija-brand-lockup,
  html body .ija-landing .ija-brand-actions,
  html body .ija-landing .ija-brand-actions[style] {
    justify-self: center !important;
  }
  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    flex-wrap: wrap !important;
    border-radius: 22px !important;
  }
  html body .ija-landing .ija-board-grid,
  html body .ija-landing .ija-section-news-gates .ija-feature-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    min-height: auto !important;
    padding: 14px !important;
    border-radius: 0 0 22px 22px !important;
  }
  html body .ija-landing .ija-header-utility {
    display: none !important;
  }
  html body .ija-landing .ija-brand-lockup {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  html body .ija-landing .ija-brand-lockup img,
  html body .ija-landing .ija-brand-lockup img[style] {
    width: 132px !important;
    max-height: 78px !important;
  }
  html body .ija-landing .ija-brand-lockup strong {
    font-size: 22px !important;
  }
  html body .ija-landing .ija-brand-actions,
  html body .ija-landing .ija-brand-actions[style] {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
  }
  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    display: none !important;
    width: 100% !important;
    padding: 10px !important;
    border-radius: 18px !important;
  }
  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-main-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    width: 100% !important;
    justify-content: center !important;
  }
  html body .ija-landing .ija-board-grid,
  html body .ija-landing .ija-section-news-gates .ija-feature-track {
    grid-template-columns: 1fr !important;
  }
  html body .ija-landing .ija-board-card {
    min-height: auto !important;
  }
}


/* v4.8.1 - Mobile stability rollback
   Keeps the new premium identity on desktop while restoring the proven mobile layout from the last stable mobile build. */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  html body .ija-landing {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body .ija-landing .ija-header-utility,
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-ticker,
  html body .ija-landing .ija-news-slider,
  html body .ija-landing .ija-section,
  html body .ija-landing .ija-section-news-gates,
  html body .ija-landing #ija-board,
  html body .ija-landing .ija-about,
  html body .ija-landing .ija-journey,
  html body .ija-landing .ija-membership-partners,
  html body .ija-landing .ija-footer {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body .ija-landing .ija-topbar {
    display: none !important;
  }

  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    position: relative !important;
    min-height: 144px !important;
    display: grid !important;
    grid-template-columns: 1fr 48px !important;
    grid-template-areas:
      "utility utility"
      "brand menu" !important;
    grid-template-rows: 56px 88px !important;
    gap: 0 10px !important;
    padding: 0 10px !important;
    border-radius: 0 0 14px 14px !important;
    overflow: visible !important;
  }

  html body .ija-landing .ija-header-utility {
    grid-area: utility !important;
    display: flex !important;
    min-height: 40px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding-inline: 8px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    border-radius: 0 0 12px 12px !important;
  }

  html body .ija-landing .ija-header-utility::-webkit-scrollbar {
    display: none !important;
  }

  html body .ija-landing .ija-utility-nav,
  html body .ija-landing .ija-header-utility .ija-social-mini,
  html body .ija-landing .ija-language-switcher {
    display: flex !important;
    flex: 0 0 auto !important;
    margin-inline-start: 0 !important;
  }

  html body .ija-landing .ija-brand-lockup {
    grid-area: brand !important;
    width: auto !important;
    max-width: 100% !important;
    justify-self: start !important;
    justify-content: flex-start !important;
    text-align: start !important;
    gap: 0 !important;
  }

  html body .ija-landing .ija-brand-lockup img,
  html body .ija-landing .ija-brand-lockup img[style] {
    width: 170px !important;
    height: 72px !important;
    max-width: 170px !important;
    max-height: 72px !important;
    object-fit: contain !important;
  }

  html body .ija-landing .ija-brand-lockup > div,
  html body .ija-landing .ija-brand-lockup strong,
  html body .ija-landing .ija-brand-lockup small {
    display: none !important;
  }

  html body .ija-landing .ija-mobile-menu-toggle {
    grid-area: menu !important;
    width: 46px !important;
    height: 46px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    align-self: center !important;
    justify-self: end !important;
    color: #fff !important;
    background: var(--ija-primary, #8f101c) !important;
    border: 0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    box-shadow: none !important;
  }

  html body .ija-landing .ija-mobile-menu-toggle span {
    width: 21px !important;
    height: 2px !important;
    background: #fff !important;
  }

  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    position: absolute !important;
    top: calc(100% + 7px) !important;
    right: 12px !important;
    left: 12px !important;
    z-index: 80 !important;
    max-height: 62vh !important;
    width: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    padding: 112px 10px 10px !important;
    overflow-y: auto !important;
    background: #121518 !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-top: 4px solid var(--ija-gold, #d6a735) !important;
    border-radius: 8px !important;
    box-shadow: 0 24px 60px rgba(18, 28, 38, .22) !important;
    transform: none !important;
  }

  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-main-nav,
  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-main-nav[style] {
    display: flex !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item,
  html body .ija-landing .ija-main-nav .ija-nav-item[style] {
    width: 100% !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    width: 100% !important;
    height: auto !important;
    min-height: 42px !important;
    justify-content: center !important;
    padding: 8px 11px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
    white-space: normal !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a::after {
    display: none !important;
  }

  html body .ija-landing .ija-brand-actions,
  html body .ija-landing .ija-brand-actions[style] {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    right: 23px !important;
    left: 23px !important;
    z-index: 82 !important;
    width: auto !important;
    max-width: none !important;
    display: none !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255,255,255,.13) !important;
    transform: none !important;
  }

  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-brand-actions,
  html body .ija-landing .ija-brand-header.ija-mobile-menu-open .ija-brand-actions[style] {
    display: grid !important;
  }

  html body .ija-landing .ija-brand-actions a {
    min-height: 42px !important;
    padding: 7px 9px !important;
    font-size: 11px !important;
    border-radius: 8px !important;
  }

  html body .ija-landing .ija-news-slider {
    aspect-ratio: 16 / 11 !important;
    margin-top: 18px !important;
    margin-bottom: 126px !important;
    border-radius: 0 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    left: 14px !important;
    right: 14px !important;
    bottom: 72px !important;
    padding-left: 78px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    max-width: 100% !important;
    font-size: clamp(18px, 4.2vw, 28px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 18px !important;
    right: 16px !important;
    gap: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 44px !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-main-controls {
    left: 14px !important;
    bottom: 24px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots {
    right: 14px !important;
    bottom: 24px !important;
    gap: 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    left: 50% !important;
    right: auto !important;
    bottom: -104px !important;
    width: min(92%, 720px) !important;
    max-width: calc(100% - 28px) !important;
    height: 104px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 18px 34px rgba(22, 29, 37, .16) !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    min-width: 0 !important;
    height: 100% !important;
    gap: 8px !important;
    padding: 10px 6px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    font-size: 28px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
    font-size: 9px !important;
    white-space: nowrap !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body .ija-landing #ija-board {
    margin-top: 22px !important;
    overflow: hidden !important;
  }

  html body .ija-landing #ija-board .ija-board {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  html body .ija-landing .ija-board-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(210px, 68vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 0 !important;
    padding: 18px 12px 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }

  html body .ija-landing .ija-board-card {
    min-width: 0 !important;
    min-height: 278px !important;
    width: auto !important;
    padding: 20px 12px !important;
    scroll-snap-align: center !important;
  }

  html body .ija-landing .ija-board-card.is-president {
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
    min-height: 302px !important;
    transform: none !important;
  }

  html body .ija-landing .ija-board-photo {
    width: 112px !important;
    height: 112px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 128px !important;
    height: 128px !important;
  }

  html body .ija-landing .ija-board-card h3 {
    font-size: 16px !important;
  }

  html body .ija-landing .ija-board-card.is-president h3 {
    font-size: 18px !important;
  }

  html body .ija-landing .ija-board-card p {
    display: none !important;
  }

  html body .ija-landing .ija-section-news-gates .ija-feature-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-news-slider {
    aspect-ratio: 16 / 12 !important;
    margin-bottom: 112px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta {
    top: 14px !important;
    right: 12px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-meta span,
  html body .ija-landing .ija-news-slider .ija-news-meta time {
    min-height: 38px !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content {
    bottom: 64px !important;
    padding-left: 0 !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content h2 {
    font-size: clamp(17px, 5.2vw, 24px) !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-slide-content > a {
    display: none !important;
  }

  html body .ija-landing .ija-news-slider .ija-news-dots button,
  html body .ija-landing .ija-news-slider .ija-news-main-nav {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    bottom: -92px !important;
    height: 92px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button {
    gap: 5px !important;
    padding: 8px 4px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail button > .dashicons {
    width: 23px !important;
    height: 23px !important;
    flex-basis: 23px !important;
    font-size: 23px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail small {
    font-size: 8px !important;
  }

  html body .ija-landing .ija-news-slider .ija-hero-category-rail b {
    font-size: 10px !important;
  }

  html body .ija-landing .ija-board-grid {
    grid-auto-columns: minmax(205px, 76vw) !important;
    padding-inline: 8px !important;
  }
}

/* v4.8.3 - Premium navigation scale + media-pattern board leadership focus */
html body .ija-landing .ija-main-nav,
html body .ija-landing .ija-main-nav[style] {
  min-height: 72px !important;
  padding: 12px 16px !important;
  gap: 13px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 167, 53, .13), transparent 30%),
    linear-gradient(135deg, #101820 0%, #16232d 48%, #0b1117 100%) !important;
  border: 1px solid rgba(214, 167, 53, .42) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    0 18px 40px rgba(16, 24, 32, .22) !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a,
html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: -.12px !important;
  background: rgba(255, 255, 255, .055) !important;
  color: #fff9e8 !important;
  border: 1px solid rgba(214, 167, 53, .36) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06) !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a:hover,
html body .ija-landing .ija-main-nav .ija-nav-item > a.active {
  background: linear-gradient(135deg, #a40f22 0%, #8f101c 55%, #6f0b16 100%) !important;
  color: #ffffff !important;
  border-color: rgba(214, 167, 53, .82) !important;
  box-shadow: 0 12px 26px rgba(143, 16, 28, .22), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a::after {
  background: linear-gradient(90deg, transparent, rgba(214, 167, 53, .95), transparent) !important;
}

html body .ija-landing #ija-board .ija-board,
html body .ija-landing .ija-board {
  isolation: isolate !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 9% 20%, rgba(214, 167, 53, .12), transparent 26%),
    radial-gradient(circle at 86% 13%, rgba(143, 16, 28, .08), transparent 28%),
    linear-gradient(135deg, rgba(244, 246, 248, .96), rgba(232, 236, 240, .82)) !important;
  border: 1px solid rgba(16, 24, 32, .08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 22px 60px rgba(16, 24, 32, .08) !important;
}

html body .ija-landing #ija-board .ija-board::before,
html body .ija-landing .ija-board::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  opacity: .48 !important;
  background-image:
    radial-gradient(circle, rgba(16, 24, 32, .14) 0 1.1px, transparent 1.2px),
    repeating-radial-gradient(circle at 72% 32%, rgba(16, 24, 32, .08) 0 1px, transparent 1px 32px),
    linear-gradient(115deg, transparent 0 46%, rgba(214, 167, 53, .08) 46% 47%, transparent 47% 100%) !important;
  background-size: 24px 24px, 360px 360px, 100% 100% !important;
}

html body .ija-landing .ija-board-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 22px !important;
}

html body .ija-landing .ija-board-card.is-president {
  min-height: 390px !important;
  transform: translateY(-14px) scale(1.08) !important;
  z-index: 3 !important;
  background:
    radial-gradient(circle at 50% -4%, rgba(214, 167, 53, .36), transparent 44%),
    linear-gradient(180deg, #fffef9 0%, #fff5dc 100%) !important;
  border: 2px solid rgba(214, 167, 53, .82) !important;
  box-shadow: 0 30px 76px rgba(143, 16, 28, .18), 0 14px 36px rgba(16, 24, 32, .11) !important;
}

html body .ija-landing .ija-board-card.is-president:hover {
  transform: translateY(-18px) scale(1.09) !important;
}

html body .ija-landing .ija-board-card.is-president::after {
  top: 18px !important;
  inset-inline-end: 18px !important;
  padding: 8px 14px !important;
  font-size: 12px !important;
  box-shadow: 0 10px 24px rgba(143, 16, 28, .22) !important;
}

html body .ija-landing .ija-board-card.is-president .ija-board-photo {
  width: 142px !important;
  height: 142px !important;
  outline-width: 3px !important;
  box-shadow: 0 18px 38px rgba(16, 24, 32, .18) !important;
}

html body .ija-landing .ija-board-card.is-president h3 {
  font-size: 23px !important;
  margin-top: 22px !important;
}

html body .ija-landing .ija-board-card.is-president strong,
html body .ija-landing .ija-board-card.is-president p {
  font-size: 13px !important;
}

@media (max-width: 1240px) {
  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    gap: 8px !important;
    padding: 10px 12px !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    min-height: 0 !important;
    gap: 5px !important;
    padding: 112px 10px 10px !important;
    border-radius: 8px !important;
    background: #121518 !important;
    box-shadow: 0 24px 60px rgba(18, 28, 38, .22) !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    height: auto !important;
    min-height: 44px !important;
    padding: 9px 12px !important;
    border-radius: 7px !important;
    font-size: 13px !important;
  }

  html body .ija-landing .ija-board-card.is-president,
  html body .ija-landing .ija-board-card.is-president:hover {
    transform: none !important;
    min-height: 315px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 132px !important;
    height: 132px !important;
  }
}

@media (max-width: 560px) {
  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    font-size: 12.5px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 126px !important;
    height: 126px !important;
  }
}


/* v4.8.4 - Desktop header collision fix: keep premium nav large without overlapping action buttons */
@media (min-width: 1241px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    grid-template-columns: minmax(300px, .95fr) minmax(0, auto) minmax(360px, .95fr) !important;
    column-gap: 34px !important;
    padding-inline: 34px !important;
  }

  html body .ija-landing .ija-brand-actions,
  html body .ija-landing .ija-brand-actions[style] {
    width: 455px !important;
    max-width: 455px !important;
    min-width: 455px !important;
    justify-self: start !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    z-index: 4 !important;
  }

  html body .ija-landing .ija-brand-actions a,
  html body .ija-landing .ija-brand-actions a[style] {
    min-height: 60px !important;
    padding-inline: 18px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    max-width: min(1210px, calc(100vw - 780px)) !important;
    width: max-content !important;
    justify-self: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 11px 14px !important;
    min-height: 70px !important;
    z-index: 3 !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item,
  html body .ija-landing .ija-main-nav .ija-nav-item[style] {
    flex: 0 0 auto !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    height: 50px !important;
    min-height: 50px !important;
    padding-inline: 17px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1241px) and (max-width: 1680px) {
  html body .ija-landing .ija-brand-header,
  html body .ija-landing .ija-brand-header[style] {
    grid-template-columns: minmax(250px, .8fr) minmax(0, auto) minmax(330px, .8fr) !important;
    column-gap: 22px !important;
    padding-inline: 24px !important;
  }

  html body .ija-landing .ija-brand-actions,
  html body .ija-landing .ija-brand-actions[style] {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
  }

  html body .ija-landing .ija-brand-actions a,
  html body .ija-landing .ija-brand-actions a[style] {
    min-height: 54px !important;
    font-size: 13px !important;
    padding-inline: 12px !important;
  }

  html body .ija-landing .ija-main-nav,
  html body .ija-landing .ija-main-nav[style] {
    max-width: min(1040px, calc(100vw - 660px)) !important;
    gap: 7px !important;
    padding: 10px 12px !important;
  }

  html body .ija-landing .ija-main-nav .ija-nav-item > a,
  html body .ija-landing .ija-main-nav .ija-nav-item > a[style] {
    padding-inline: 13px !important;
    font-size: 14.5px !important;
  }
}


/* =========================================================
   v4.8.5 - Premium category chips / taxonomy navigation polish
   Keeps WordPress/theme category rows aligned with IJA identity.
   ========================================================= */
html body .ija-category-strip,
html body .ija-taxonomy-strip,
html body .ija-term-strip,
html body .post-categories,
html body .entry-categories,
html body .cat-links,
html body .post-cat-wrap,
html body .post-cats,
html body .single-post .entry-header .post-meta,
html body .single-post .entry-header .entry-meta {
  direction: rtl;
}

html body .post-categories,
html body .entry-categories,
html body .cat-links,
html body .post-cat-wrap,
html body .post-cats,
html body .ija-category-strip,
html body .ija-taxonomy-strip,
html body .ija-term-strip,
html body .single-post .entry-header .post-meta,
html body .single-post .entry-header .entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: min(1320px, calc(100vw - 32px));
  margin: 18px auto 24px;
  padding: 10px 14px;
}

html body .post-categories li {
  list-style: none;
  margin: 0;
  padding: 0;
}

html body .post-categories a,
html body .entry-categories a,
html body .cat-links a,
html body .post-cat-wrap a,
html body .post-cats a,
html body .ija-category-strip a,
html body .ija-taxonomy-strip a,
html body .ija-term-strip a,
html body .single-post .entry-header .post-meta a[rel="category tag"],
html body .single-post .entry-header .entry-meta a[rel="category tag"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(214, 167, 53, .38) !important;
  background: linear-gradient(135deg, #15212b 0%, #101820 52%, #231315 100%) !important;
  color: #fff7e8 !important;
  font-family: var(--ija-font, inherit);
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.25;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(16, 24, 32, .10), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}

html body .post-categories a:hover,
html body .entry-categories a:hover,
html body .cat-links a:hover,
html body .post-cat-wrap a:hover,
html body .post-cats a:hover,
html body .ija-category-strip a:hover,
html body .ija-taxonomy-strip a:hover,
html body .ija-term-strip a:hover,
html body .single-post .entry-header .post-meta a[rel="category tag"]:hover,
html body .single-post .entry-header .entry-meta a[rel="category tag"]:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9b111e 0%, #b51626 55%, #d6a735 130%) !important;
  border-color: rgba(214, 167, 53, .72) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(155, 17, 30, .18), inset 0 1px 0 rgba(255,255,255,.16);
}

html body .post-categories a::before,
html body .entry-categories a::before,
html body .cat-links a::before,
html body .post-cat-wrap a::before,
html body .post-cats a::before,
html body .ija-category-strip a::before,
html body .ija-taxonomy-strip a::before,
html body .ija-term-strip a::before,
html body .single-post .entry-header .post-meta a[rel="category tag"]::before,
html body .single-post .entry-header .entry-meta a[rel="category tag"]::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: #d6a735;
  box-shadow: 0 0 0 4px rgba(214,167,53,.13);
  flex: 0 0 auto;
}

/* Common theme category bars/tags that appear as orange pills above article titles. */
html body .single-post .entry-header a[href*="/category/"],
html body .single-post .entry-header a[href*="/tag/"],
html body .breadcrumb + div a[href*="/category/"],
html body .breadcrumbs + div a[href*="/category/"],
html body .breadcrumb-trail + div a[href*="/category/"] {
  border-radius: 16px !important;
  background: linear-gradient(135deg, #15212b 0%, #101820 55%, #231315 100%) !important;
  color: #fff7e8 !important;
  border: 1px solid rgba(214, 167, 53, .38) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(16, 24, 32, .10) !important;
}

@media (max-width: 1024px) {
  html body .post-categories,
  html body .entry-categories,
  html body .cat-links,
  html body .post-cat-wrap,
  html body .post-cats,
  html body .ija-category-strip,
  html body .ija-taxonomy-strip,
  html body .ija-term-strip,
  html body .single-post .entry-header .post-meta,
  html body .single-post .entry-header .entry-meta {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 10px 12px 14px;
    margin: 14px auto 20px;
  }

  html body .post-categories a,
  html body .entry-categories a,
  html body .cat-links a,
  html body .post-cat-wrap a,
  html body .post-cats a,
  html body .ija-category-strip a,
  html body .ija-taxonomy-strip a,
  html body .ija-term-strip a,
  html body .single-post .entry-header .post-meta a[rel="category tag"],
  html body .single-post .entry-header .entry-meta a[rel="category tag"] {
    scroll-snap-align: start;
    min-height: 40px;
    padding: 10px 14px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  html body .post-categories,
  html body .entry-categories,
  html body .cat-links,
  html body .post-cat-wrap,
  html body .post-cats,
  html body .ija-category-strip,
  html body .ija-taxonomy-strip,
  html body .ija-term-strip,
  html body .single-post .entry-header .post-meta,
  html body .single-post .entry-header .entry-meta {
    max-width: calc(100vw - 18px);
    gap: 8px;
  }

  html body .post-categories a,
  html body .entry-categories a,
  html body .cat-links a,
  html body .post-cat-wrap a,
  html body .post-cats a,
  html body .ija-category-strip a,
  html body .ija-taxonomy-strip a,
  html body .ija-term-strip a,
  html body .single-post .entry-header .post-meta a[rel="category tag"],
  html body .single-post .entry-header .entry-meta a[rel="category tag"] {
    border-radius: 14px !important;
    min-height: 38px;
    padding: 9px 12px !important;
    font-size: 13px !important;
  }
}

/* =========================================================
   v4.8.6 - Premium category hub + category archive templates
   ========================================================= */
html body .ija-category-hub,
html body .ija-category-archive {
  direction: rtl;
  font-family: var(--ija-font, inherit);
}

html body .ija-category-hub {
  width: min(var(--ija-site-max-width, 1600px), calc(100% - 32px));
  margin: 28px auto;
  padding: 30px;
  border: 1px solid rgba(214, 167, 53, .22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 167, 53, .10), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,244,234,.88));
  box-shadow: 0 24px 70px rgba(16, 24, 32, .08);
  overflow: hidden;
}

html body .ija-category-hub.is-compact {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 28px;
}

html body .ija-category-hub-head {
  text-align: center;
  margin-bottom: 20px;
}

html body .ija-category-hub-head > span,
html body .ija-category-kicker,
html body .ija-category-section-title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: #9b111e;
  background: rgba(155, 17, 30, .07);
  border: 1px solid rgba(155, 17, 30, .14);
  font-weight: 900;
  font-size: 13px;
}

html body .ija-category-hub-head h2 {
  margin: 12px 0 8px;
  color: #101820;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 950;
}

html body .ija-category-hub-head p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(16, 24, 32, .68);
  font-size: 16px;
  line-height: 1.9;
}

html body .ija-category-hub-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

html body .ija-category-hub-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  color: #f8f2df !important;
  background: linear-gradient(135deg, #101820, #1d2730);
  border: 1px solid rgba(214, 167, 53, .48);
  box-shadow: 0 12px 26px rgba(16, 24, 32, .12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}

html body .ija-category-hub-chip:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9b111e, #5d0710);
  box-shadow: 0 18px 34px rgba(155, 17, 30, .18);
}

html body .ija-category-hub-chip .dashicons {
  width: 22px;
  height: 22px;
  font-size: 22px;
  color: #d6a735;
}

html body .ija-category-hub-chip b {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
}

html body .ija-category-hub-chip small {
  display: inline-flex;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  padding-inline-start: 8px;
  border-inline-start: 1px solid rgba(214, 167, 53, .35);
}

html body .ija-category-archive {
  background: #f5f5f2;
  min-height: 70vh;
  padding-bottom: 50px;
}

html body .ija-category-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #101820, #1f2a33 58%, #9b111e);
  border-bottom: 1px solid rgba(214, 167, 53, .32);
}

html body .ija-category-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .40;
  background:
    radial-gradient(circle at 18% 22%, rgba(214, 167, 53, .28) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.16) 0 1px, transparent 2px),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 44px, rgba(214,167,53,.10) 45px 47px, transparent 48px 92px);
  pointer-events: none;
}

html body .ija-category-hero-inner {
  position: relative;
  width: min(var(--ija-site-max-width, 1600px), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
  text-align: center;
}

html body .ija-category-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
}

html body .ija-category-breadcrumb a {
  color: #f8f2df !important;
  text-decoration: none !important;
}

html body .ija-category-hero h1 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.03em;
}

html body .ija-category-hero p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.95;
}

html body .ija-category-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

html body .ija-category-hero-meta span,
html body .ija-category-hero-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid rgba(214, 167, 53, .42);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

html body .ija-category-hero-meta b {
  color: #d6a735;
  margin-inline-end: 6px;
}

html body .ija-category-posts-section {
  width: min(var(--ija-site-max-width, 1600px), calc(100% - 32px));
  margin: 28px auto 0;
  padding: 34px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(214, 167, 53, .22);
  box-shadow: 0 22px 70px rgba(16, 24, 32, .08);
}

html body .ija-category-section-title {
  text-align: center;
  margin-bottom: 26px;
}

html body .ija-category-section-title h2 {
  margin: 12px 0 0;
  color: #101820;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 950;
}

html body .ija-category-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

html body .ija-category-post-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fffdf8;
  border: 1px solid rgba(214, 167, 53, .22);
  box-shadow: 0 16px 42px rgba(16, 24, 32, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

html body .ija-category-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 24, 32, .12);
}

html body .ija-category-post-image {
  display: block;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #101820, #9b111e);
  overflow: hidden;
}

html body .ija-category-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

html body .ija-category-post-card:hover .ija-category-post-image img {
  transform: scale(1.04);
}

html body .ija-category-post-body {
  padding: 20px;
}

html body .ija-category-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: rgba(16, 24, 32, .58);
  font-size: 12px;
  font-weight: 900;
}

html body .ija-category-post-meta span {
  color: #9b111e;
  background: rgba(155, 17, 30, .07);
  border-radius: 999px;
  padding: 5px 10px;
}

html body .ija-category-post-body h3 {
  margin: 0 0 10px;
  color: #101820;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
  font-weight: 950;
}

html body .ija-category-post-body h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

html body .ija-category-post-body p {
  margin: 0 0 18px;
  color: rgba(16, 24, 32, .68);
  line-height: 1.85;
  font-size: 15px;
}

html body .ija-category-read-more {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: #f8f2df !important;
  background: #101820;
  border: 1px solid rgba(214, 167, 53, .45);
  text-decoration: none !important;
  font-weight: 900;
}

html body .ija-category-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

html body .ija-category-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none !important;
  color: #101820;
  background: #fff;
  border: 1px solid rgba(16,24,32,.12);
  font-weight: 900;
}

html body .ija-category-pagination .page-numbers.current {
  color: #fff;
  background: #9b111e;
  border-color: #9b111e;
}

html body .ija-category-empty-state {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(248,244,234,.92), rgba(255,255,255,.98));
  border: 1px dashed rgba(155, 17, 30, .26);
}

html body .ija-category-empty-state .dashicons {
  width: 54px;
  height: 54px;
  font-size: 54px;
  color: #d6a735;
}

html body .ija-category-empty-state h3 {
  margin: 14px 0 8px;
  color: #101820;
  font-size: 26px;
  font-weight: 950;
}

html body .ija-category-empty-state p {
  color: rgba(16,24,32,.68);
  line-height: 1.9;
}

html body .ija-category-empty-state a {
  display: inline-flex;
  margin-top: 14px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: #9b111e;
  text-decoration: none !important;
  font-weight: 900;
}

@media (max-width: 1100px) {
  html body .ija-category-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html body .ija-category-hub,
  html body .ija-category-posts-section {
    width: calc(100% - 18px);
    padding: 18px;
    border-radius: 24px;
  }

  html body .ija-category-hub-grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  html body .ija-category-hub-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 48px;
    padding: 9px 14px;
  }

  html body .ija-category-hub-chip b {
    font-size: 14px;
  }

  html body .ija-category-hub-chip small {
    display: none;
  }

  html body .ija-category-hero-inner {
    width: calc(100% - 24px);
    padding: 46px 0;
  }

  html body .ija-category-hero h1 {
    font-size: 36px;
  }

  html body .ija-category-posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  html body .ija-category-post-body {
    padding: 17px;
  }
}


/* v4.8.7 - Board member image tuning and card width balance */
html body .ija-landing .ija-board-grid {
  grid-template-columns: minmax(185px, 1.05fr) minmax(185px, 1.05fr) minmax(260px, 1.45fr) minmax(185px, 1.05fr) minmax(185px, 1.05fr) !important;
  gap: 20px !important;
}

html body .ija-landing .ija-board-card {
  min-height: 420px !important;
  padding: 30px 20px 24px !important;
}

html body .ija-landing .ija-board-card.is-president {
  min-height: 455px !important;
  padding: 36px 24px 28px !important;
}

html body .ija-landing .ija-board-photo {
  width: 144px !important;
  height: 144px !important;
  border-width: 5px !important;
  outline-width: 3px !important;
  background: linear-gradient(180deg, #f8f8f8, #ececec) !important;
}

html body .ija-landing .ija-board-card.is-president .ija-board-photo {
  width: 186px !important;
  height: 186px !important;
}

html body .ija-landing .ija-board-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  transform: scale(1.03) !important;
}

html body .ija-landing .ija-board-card h3 {
  margin-top: 20px !important;
  margin-bottom: 10px !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
}

html body .ija-landing .ija-board-card.is-president h3 {
  font-size: 24px !important;
  line-height: 1.35 !important;
}

html body .ija-landing .ija-board-card strong {
  max-width: 100% !important;
  min-height: 40px !important;
  padding: 8px 16px !important;
  line-height: 1.6 !important;
  white-space: normal !important;
  text-align: center !important;
}

html body .ija-landing .ija-board-profile-link {
  min-height: 52px !important;
  padding: 10px 22px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

@media (max-width: 1380px) {
  html body .ija-landing .ija-board-grid {
    grid-template-columns: repeat(2, minmax(190px, 1fr)) minmax(240px, 1.3fr) repeat(2, minmax(190px, 1fr)) !important;
    gap: 18px !important;
  }
}

@media (max-width: 1240px) {
  html body .ija-landing .ija-board-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr)) minmax(220px, 1.25fr) repeat(2, minmax(170px, 1fr)) !important;
  }

  html body .ija-landing .ija-board-photo {
    width: 132px !important;
    height: 132px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 170px !important;
    height: 170px !important;
  }
}

@media (max-width: 820px) {
  html body .ija-landing .ija-board-card {
    min-height: 310px !important;
    padding: 22px 14px !important;
  }

  html body .ija-landing .ija-board-card.is-president {
    min-height: 336px !important;
    padding: 24px 14px !important;
  }

  html body .ija-landing .ija-board-photo {
    width: 116px !important;
    height: 116px !important;
  }

  html body .ija-landing .ija-board-card.is-president .ija-board-photo {
    width: 138px !important;
    height: 138px !important;
  }

  html body .ija-landing .ija-board-card h3 {
    font-size: 17px !important;
  }

  html body .ija-landing .ija-board-card.is-president h3 {
    font-size: 19px !important;
  }

  html body .ija-landing .ija-board-card strong {
    min-height: 34px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
  }

  html body .ija-landing .ija-board-profile-link {
    min-height: 46px !important;
    font-size: 14px !important;
  }
}

/* v4.8.8 - Official sections in main navigation; no category hub block on homepage */
html body .ija-landing > .ija-site-frame > .ija-category-hub,
html body .ija-landing .ija-category-hub:not(.is-compact) {
  display: none !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item.has-children {
  position: relative !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item.has-children > a em {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  margin-inline-start: 4px !important;
  border-radius: 999px !important;
  background: rgba(214,167,53,.16) !important;
  color: var(--ija-premium-gold) !important;
  font-style: normal !important;
  font-size: 13px !important;
}

html body .ija-landing .ija-subnav {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  inset-inline-start: 50% !important;
  z-index: 80 !important;
  min-width: 250px !important;
  padding: 10px !important;
  display: grid !important;
  gap: 8px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff, #fff8e7) !important;
  border: 1px solid rgba(214,167,53,.34) !important;
  box-shadow: 0 24px 60px rgba(16,24,32,.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(8px) !important;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item.has-children:hover .ija-subnav,
html body .ija-landing .ija-main-nav .ija-nav-item.has-children:focus-within .ija-subnav {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

html body .ija-landing .ija-subnav a {
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  border-radius: 16px !important;
  background: rgba(16,24,32,.045) !important;
  border: 1px solid rgba(16,24,32,.06) !important;
  color: var(--ija-premium-ink) !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

html body .ija-landing .ija-subnav a:hover {
  background: var(--ija-premium-red) !important;
  color: #ffffff !important;
  border-color: rgba(143,16,28,.28) !important;
}

html body .ija-landing .ija-subnav a span {
  color: var(--ija-premium-gold) !important;
  font-size: 16px !important;
}

html body .ija-landing .ija-subnav a:hover span {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  html body .ija-landing .ija-subnav {
    position: static !important;
    inset: auto !important;
    min-width: 0 !important;
    width: 100% !important;
    margin-top: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 18px !important;
  }
}


/* v4.8.10 - Direct main nav: no sections dropdown, cleaner compact labels */
html body .ija-landing .ija-main-nav .ija-nav-item.has-children > .ija-dropdown,
html body .ija-landing .ija-main-nav .ija-nav-item.has-children > .ija-dropdown-panel {
  display: none !important;
}

html body .ija-landing .ija-main-nav .ija-nav-item > a {
  white-space: nowrap !important;
}

@media (min-width: 1241px) {
  html body .ija-landing .ija-main-nav {
    gap: 8px !important;
  }
  html body .ija-landing .ija-main-nav .ija-nav-item > a {
    padding-inline: 18px !important;
    font-size: 16px !important;
  }
}


/* v4.8.11 - Natural images: remove global color overlays from photos
   Keep only a very light lower readability shade for text areas. */
html body .ija-landing .ija-news-slider .ija-news-slide::after,
html body .ija-landing .ija-news-slide::after {
  background: linear-gradient(0deg, rgba(8,14,19,.42) 0%, rgba(8,14,19,.18) 28%, rgba(8,14,19,0) 58%) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide > img,
html body .ija-landing .ija-news-slide > img,
html body .ija-landing .ija-news-slider img,
html body .ija-landing .ija-feature-post img,
html body .ija-landing .ija-gate-post img,
html body .ija-landing .ija-gate-mini-post img,
html body .ija-category-post-card img,
html body .ija-post-card img,
html body .ija-landing article img {
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

html body .ija-landing .ija-section-news-gates .ija-gate-post::after,
html body .ija-landing .ija-section-news-gates .ija-gate-mini-post::after {
  background: linear-gradient(0deg, rgba(10,17,23,.52), rgba(10,17,23,0) 62%) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

html body .ija-landing .ija-news-slider .ija-news-slide::before,
html body .ija-landing .ija-news-slide::before,
html body .ija-landing .ija-feature-post::before,
html body .ija-landing .ija-gate-post::before,
html body .ija-landing .ija-gate-mini-post::before {
  background: none !important;
  opacity: 0 !important;
  display: none !important;
}

/* Hide wrong/default category badges when old posts still carry them. */
html body .ija-news-meta span:has(> a[href*="/category/blog"]),
html body .ija-news-meta span:has(> a[href*="/category/uncategorized"]),
html body .ija-news-meta span:has(> a[href*="/category/sياحة"]),
html body .ija-news-meta a[href*="/category/blog"],
html body .ija-news-meta a[href*="/category/uncategorized"] {
  display: none !important;
}
