.ija-section,
.ija-ticker,
.ija-form,
.ija-landing {
  font-family: var(--ija-font);
}

.ija-landing {
  color: var(--ija-dark);
}

.ija-site-frame {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201, 162, 71, .32);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(21, 21, 21, .18);
}

.ija-site-frame .ija-section,
.ija-site-frame .ija-ticker,
.ija-site-frame .ija-hero {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.ija-topbar,
.ija-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 28px;
  color: rgba(255, 255, 255, .78);
  background: #101112;
  border-bottom: 1px solid rgba(201, 162, 71, .16);
}

.ija-language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ija-language-switcher a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(201, 162, 71, .2);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.ija-language-switcher a:hover {
  color: #171717;
  background: var(--ija-gold);
}

.ija-social-mini {
  display: flex;
  gap: 7px;
}

.ija-social-mini a,
.ija-social-mini span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.ija-main-nav {
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
  background: var(--ija-header-bg);
}

.ija-main-nav a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, .72);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  font-weight: 900;
}

.ija-main-nav a.active,
.ija-main-nav a:hover {
  color: var(--ija-gold);
  border-bottom-color: var(--ija-gold);
}

.ija-hero {
  margin: 0;
  border-radius: 0;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 46px);
  position: relative;
  overflow: hidden;
  color: var(--ija-light);
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 162, 71, .22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(139, 16, 22, .38), transparent 26%),
    linear-gradient(135deg, #101010, #1b1b1d 52%, #2a1718);
  border: 1px solid rgba(201, 162, 71, .4);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(21, 21, 21, .28);
}

.ija-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 162, 71, .16);
  border-radius: 14px;
  pointer-events: none;
}

.ija-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-start: -180px;
  bottom: -240px;
  border: 1px solid rgba(201, 162, 71, .15);
  border-radius: 50%;
  pointer-events: none;
}

.ija-hero-content,
.ija-hero-media {
  position: relative;
  z-index: 1;
}

.ija-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ija-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.ija-brand-line img,
.ija-brand-line > span {
  width: var(--ija-logo-width);
  height: var(--ija-logo-height);
  display: grid;
  place-items: center;
  object-fit: contain;
  color: #171717;
  background: linear-gradient(135deg, var(--ija-gold), #f2d37d);
  border-radius: 18px;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  transform: translate(var(--ija-logo-x), var(--ija-logo-y));
}

.ija-brand-line strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.ija-brand-line small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.ija-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: #171717;
  background: linear-gradient(135deg, var(--ija-gold), #f1d27c);
  border-radius: 999px;
  font-weight: 900;
}

.ija-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ija-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.9;
}

.ija-hero-actions,
.ija-hero-stats,
.ija-slide-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ija-slide-dots {
  gap: 8px;
  margin-top: 18px;
}

.ija-slide-dots span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.ija-slide-dots span.active {
  width: 28px;
  background: var(--ija-gold);
  border-radius: 999px;
}

.ija-hero-actions a,
.ija-cta-grid a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: #171717;
  background: var(--ija-gold);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.ija-hero-actions a:nth-child(2) {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
}

.ija-hero-stats span {
  min-width: 118px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}

.ija-hero-stats strong,
.ija-hero-stats small {
  display: block;
}

.ija-hero-stats small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
}

.ija-hero-media {
  display: grid;
  place-items: center;
}

.ija-hero-media img,
.ija-hero-placeholder {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 71, .26);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 24px 60px rgba(0, 0, 0, .22);
}

.ija-hero-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  background:
    linear-gradient(rgba(21, 21, 21, .55), rgba(21, 21, 21, .9)),
    repeating-linear-gradient(135deg, rgba(201, 162, 71, .08) 0 1px, transparent 1px 14px);
}

.ija-hero-placeholder .dashicons {
  width: 90px;
  height: 90px;
  color: var(--ija-gold);
  font-size: 90px;
}

.ija-hero-placeholder strong {
  font-size: 28px;
}

.ija-ticker {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  color: var(--ija-light);
  background: linear-gradient(135deg, var(--ija-primary), #5f0b10);
  border: 1px solid rgba(201, 162, 71, .45);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(139, 16, 22, .18);
}

.ija-ticker strong {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  color: #171717;
  background: var(--ija-gold);
  white-space: nowrap;
}

.ija-ticker-window {
  overflow: hidden;
}

.ija-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  white-space: nowrap;
  animation: ijaTicker 34s linear infinite;
}

.ija-ticker:hover .ija-ticker-track {
  animation-play-state: paused;
}

.ija-ticker-track span {
  font-weight: 800;
}

.ija-ticker-track i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ija-gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 71, .15);
}

@keyframes ijaTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.ija-section {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto;
}

.ija-section-head {
  margin-bottom: 20px;
  text-align: center;
}

.ija-section-head span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 14px;
  color: var(--ija-primary);
  background: rgba(201, 162, 71, .16);
  border-radius: 999px;
  font-weight: 900;
}

.ija-section-head h2 {
  margin: 0;
  color: var(--ija-dark);
  font-size: clamp(28px, 4vw, 44px);
}

.ija-home-blocks,
.ija-home-blocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ija-board-grid {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
}

.ija-home-card,
.ija-board-card,
.ija-form,
.ija-about-panel {
  background: #fff;
  border: 1px solid rgba(201, 162, 71, .28);
  border-radius: 12px;
  box-shadow: 0 16px 46px rgba(21, 21, 21, .08);
}

.ija-about-panel {
  padding: clamp(24px, 4vw, 44px);
  color: var(--ija-dark);
  position: relative;
  overflow: hidden;
}

.ija-about-panel::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(var(--ija-primary), var(--ija-gold));
}

.ija-about-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 14px;
  color: #171717;
  background: rgba(201, 162, 71, .22);
  border-radius: 999px;
  font-weight: 900;
}

.ija-about-panel h2 {
  margin: 0 0 12px;
  color: var(--ija-primary);
  font-size: clamp(28px, 4vw, 46px);
}

.ija-about-panel p {
  max-width: 920px;
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 2;
}

.ija-home-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.ija-home-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(var(--ija-primary), var(--ija-gold));
}

.ija-home-card .dashicons {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #171717;
  background: var(--ija-gold);
  border-radius: 12px;
  font-size: 24px;
}

.ija-home-card h3,
.ija-board-card h3 {
  margin: 14px 0 8px;
  color: var(--ija-primary);
  font-size: 18px;
  line-height: 1.35;
}

.ija-board-card strong {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  color: #171717;
  background: rgba(201, 162, 71, .24);
  border-radius: 999px;
}

.ija-home-card p,
.ija-board-card p,
.ija-form p {
  color: #666;
  line-height: 1.8;
}

.ija-board-card a {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 14px;
  color: #fff;
  background: var(--ija-primary);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.ija-board-card {
  width: min(190px, 20%);
  padding: 18px;
  text-align: center;
}

.ija-board-card.is-president {
  width: min(218px, 22%);
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 12%, rgba(201, 162, 71, .24), transparent 32%),
    linear-gradient(135deg, var(--ija-primary), #151515);
}

.ija-board-card.is-president h3 {
  color: #fff;
  font-size: 22px;
}

.ija-board-card.is-president p {
  color: rgba(255, 255, 255, .78);
}

.ija-board-card.is-president strong {
  color: #171717;
  background: var(--ija-gold);
}

.ija-board-card.is-president .ija-board-photo {
  width: 118px;
  height: 118px;
  margin: 0 auto 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.ija-board-photo {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--ija-primary), var(--ija-gold));
  border-radius: 50%;
  font-size: 42px;
  font-weight: 900;
}

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

.ija-form {
  width: min(780px, calc(100% - 32px));
  margin: 30px auto;
  padding: 24px;
}

.ija-form h2 {
  margin-top: 0;
  color: var(--ija-primary);
}

.ija-form label {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  font-weight: 800;
  color: var(--ija-dark);
}

.ija-form input,
.ija-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(21, 21, 21, .18);
  border-radius: 8px;
  background: #fff;
}

.ija-form button {
  min-height: 46px;
  padding: 11px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--ija-primary), #5f0b10);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 900;
}

.ija-form button:hover {
  filter: brightness(1.08);
}

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

.ija-cta-grid article {
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: linear-gradient(135deg, var(--ija-dark), var(--ija-primary));
  border: 1px solid rgba(201, 162, 71, .25);
  border-radius: 16px;
  box-shadow: 0 22px 64px rgba(21, 21, 21, .16);
}

.ija-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: clamp(26px, 4vw, 44px);
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 162, 71, .16), transparent 30%),
    linear-gradient(135deg, #101112, #191b20);
  border-top: 1px solid rgba(201, 162, 71, .24);
}

.ija-footer h2,
.ija-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

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

.ija-footer p {
  line-height: 1.8;
}

.ija-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.ija-footer a:hover {
  color: var(--ija-gold);
}

.ija-copy {
  padding: 12px 22px;
  color: #fff;
  background: var(--ija-primary);
  text-align: center;
  font-size: 13px;
}

.ija-cta-grid h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(26px, 4vw, 40px);
}

.ija-cta-grid p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
}

.ija-notice {
  width: min(780px, calc(100% - 32px));
  margin: 18px auto;
  padding: 14px 18px;
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
  border-radius: 10px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .ija-hero {
    grid-template-columns: 1fr;
  }

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

  .ija-board-grid {
    flex-wrap: wrap;
  }

  .ija-board-card,
  .ija-board-card.is-president {
    width: min(220px, calc(50% - 10px));
  }

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

@media (max-width: 640px) {
  .ija-hero {
    min-height: auto;
    padding: 22px;
    border-radius: 12px;
  }

  .ija-brand-line {
    align-items: flex-start;
  }

  .ija-hero-media img,
  .ija-hero-placeholder {
    min-height: 260px;
  }

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

  .ija-ticker strong {
    justify-content: center;
  }

  .ija-home-blocks,
  .ija-cta-grid {
    grid-template-columns: 1fr;
  }

  .ija-board-card,
  .ija-board-card.is-president {
    width: 100%;
  }
}
