:root {
  --navy: #041a3d;
  --blue: #075aa8;
  --cyan: #09b5d6;
  --gold: #f4c04e;
  --text: #10233f;
  --muted: #66758d;
  --soft: #f4f8ff;
  --white: #fff;
  --shadow: 0 22px 60px rgba(5, 26, 61, 0.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
}
a {
  text-decoration: none;
}
.topbar {
  background: linear-gradient(90deg, var(--navy), #063d78);
  color: #fff;
  font-size: 14px;
  padding: 9px 0;
}
.container {
  width: min(1200px, 94%);
  margin: auto;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a {
  color: #fff;
  margin-left: 18px;
}
.topbar .flex > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-menu {
  position: relative;
  margin-left: 18px;
}
.topbar-menu-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.topbar-menu-button .fa-angle-down {
  margin-left: 4px;
  font-size: 11px;
}
.topbar-dropdown {
  display: none;
  position: absolute;
  z-index: 1100;
  top: calc(100% + 9px);
  right: 0;
  min-width: 210px;
  padding: 9px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.topbar-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 9px;
}
.topbar-dropdown a {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  white-space: nowrap;
}
.topbar-dropdown a:hover {
  background: #edf5ff;
  color: var(--blue);
}
.topbar-menu:hover .topbar-dropdown,
.topbar-menu:focus-within .topbar-dropdown,
.topbar-menu.open .topbar-dropdown {
  display: block;
}
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(4, 26, 61, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
}
.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}
.brand b {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}
.menu {
  display: flex;
  align-items: center;
  gap: 3px;
}
.menu a,
.dropbtn {
  color: var(--navy);
  font-weight: 400;
  padding: 18px 5px;
  border-radius: 12px;
}
.dropbtn {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.menu a:hover,
.drop:hover .dropbtn {
  background: #edf5ff;
  color: var(--blue);
}
.drop {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.drop:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 11px 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 900;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(244, 192, 78, 0.35);
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.hero {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(9, 181, 214, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #031631, #07366b);
  overflow: hidden;
}
.hero-slider img {
  width: 100%;
  display: block;
}
.section {
  padding: 80px 0;
}
.title {
  text-align: center;
  margin-bottom: 42px;
}
.title .tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.title h2 {
  font-size: 38px;
  margin: 10px 0 0;
  color: var(--navy);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef8;
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-8px);
}
.icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eaf7ff, #fff5d7);
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 18px;
}
.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}
.card p {
  color: var(--muted);
  line-height: 1.75;
}
.stats {
  background: #fff;
}
.statbox {
  text-align: center;
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #eef7ff);
  box-shadow: var(--shadow);
}
.statbox b {
  font-size: 42px;
  color: var(--blue);
}
.blueblock {
  background: linear-gradient(135deg, var(--navy), #075aa8);
  color: #fff;
  border-radius: 34px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.blueblock::after {
  content: "\2211  \03C0  \221A\221E";
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: -0.12em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.09);
  font-weight: 700;
  letter-spacing: clamp(2px, 0.4vw, 7px);
  white-space: nowrap;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  user-select: none;
}
.journal {
  display: flex;
  gap: 24px;
  align-items: center;
}
.journal img {
  width: 220px;
  border-radius: 18px;
  /* box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22); */
}
.news {
  background: #fff;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 12px 35px rgba(4, 26, 61, 0.08);
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #d9e5f5;
  border-radius: 15px;
  font: inherit;
  margin-bottom: 14px;
}
.footer {
  background: #031631;
  color: #c9d7ec;
  padding: 55px 0 18px;
}
.footer h4 {
  color: #fff;
}
.footer a {
  display: block;
  color: #c9d7ec;
  margin: 8px 0;
}
.footer a:hover {
  color: var(--gold);
} /* Premium Breadcrumb / Journal Hero */
.page-hero {
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(244, 192, 78, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(4, 26, 61, 0.96), rgba(7, 90, 168, 0.94)),
    url("assets/banner2.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}
.journals-page .page-hero {
  background-image:
    radial-gradient(
      circle at 82% 22%,
      rgba(244, 192, 78, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(4, 26, 61, 0.96), rgba(7, 90, 168, 0.94)),
    url("../assets/banner2.jpg");
}
.page-hero::before {
  content: "\2211  \03C0  \221A\221E  \222B  dx";
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: clamp(3px, 0.55vw, 9px);
  white-space: nowrap;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  user-select: none;
}
.page-hero:after {
  content: "SEAJMMS";
  position: absolute;
  right: -25px;
  bottom: -22px;
  font-size: 118px;
  font-weight: 900;
  color: rgba(244, 192, 78, 0.08);
  letter-spacing: 4px;
  pointer-events: none;
}
.journals-page.journal-tag-jrsmams .page-hero::after {
  content: "JRSMAMS";
}
.journals-page.journal-tag-seajmams .page-hero::after {
  content: "SEAJMMS";
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 44px;
  margin: 0;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}
.journal-intro-line {
  max-width: 920px;
  margin-top: 13px;
  color: #fff7dc;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #d9ecff;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-weight: 700;
}
.breadcrumb a {
  color: #ffe08a;
}
.breadcrumb span {
  color: #fff;
}
.mobile-toggle {
  display: none;
}
@media (max-width: 900px) {
  .flex,
  .journal {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar .flex > div {
    max-width: 100%;
  }
  .topbar .flex > div:last-child {
    width: 100%;
    gap: 7px 14px;
  }
  .topbar .flex > div:last-child > a,
  .topbar-menu {
    margin-left: 0;
  }
  .nav,
  .brand,
  .brand span {
    min-width: 0;
  }
  .brand {
    max-width: calc(100% - 58px);
  }
  .brand small {
    overflow-wrap: anywhere;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .topbar-dropdown {
    right: auto;
    left: 0;
  }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .menu.active {
    display: flex;
  }
  .drop:hover .dropdown {
    position: static;
    box-shadow: none;
    display: block;
  }
  .drop .dropdown {
    position: static;
    box-shadow: none;
  }
  .drop.open .dropdown {
    display: block;
  }
  .mobile-toggle {
    display: block;
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
  }
  .title h2 {
    font-size: 28px;
  }
  .brand b {
    font-size: 17px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .section {
    padding: 55px 0;
  }
  .page-hero h1 {
    font-size: 32px;
  }
}

/* Premium Journal Pages */
.journal-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.journal-sidebar {
  position: sticky;
  top: 112px;
}
.journal-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.journal-card-head {
  background: linear-gradient(135deg, var(--navy), #075aa8);
  color: #fff;
  padding: 20px 22px;
  font-weight: 900;
}
.side-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid #edf2fa;
}
.side-menu a:hover,
.side-menu a.active {
  background: #edf7ff;
  color: var(--blue);
}
.journal-main {
  min-width: 0;
}
.journal-banner {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(244, 192, 78, 0.24),
      transparent 24%
    ),
    linear-gradient(135deg, #031631, #074e90);
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.journal-banner::after {
  content: "\03C0  \2211  \221A\221E";
  position: absolute;
  right: clamp(12px, 2.5vw, 34px);
  bottom: -0.18em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.075);
  letter-spacing: clamp(2px, 0.45vw, 7px);
  white-space: nowrap;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
  pointer-events: none;
  user-select: none;
}
.journal-banner > * {
  position: relative;
  z-index: 1;
}
.journal-banner h1 {
  font-size: 36px;
  margin: 0 0 8px;
}
.journal-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(244, 192, 78, 0.15);
  border: 1px solid rgba(244, 192, 78, 0.45);
  color: #ffe08a;
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 900;
  margin-bottom: 14px;
}
.issue-box {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid #edf2fa;
  background: #fff;
}
.issue-no {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf7ff, #fff5d7);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
}
.issue-no b {
  font-size: 30px;
  line-height: 1;
}
.issue-box h3 {
  margin: 0 0 7px;
  color: var(--navy);
}
.issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f3f8ff;
  border: 1px solid #dfeaf7;
  border-radius: 999px;
  padding: 8px 12px;
}
.article-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 14px 42px rgba(4, 26, 61, 0.08);
}
.article-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.35;
}
.article-authors {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 10px;
}
.article-card p {
  color: var(--muted);
  line-height: 1.7;
}
.article-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  background: #edf7ff;
  color: var(--blue);
}
.mini-btn.gold {
  background: #fff5d7;
  color: #8a6100;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.archive-volume {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 42px rgba(4, 26, 61, 0.08);
}
.archive-volume h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
}
.issue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.issue-links a {
  background: #f3f8ff;
  color: var(--blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 9px 13px;
}
.journal-contents-section {
  background:
    linear-gradient(180deg, rgba(225, 237, 250, 0.65), transparent 300px),
    var(--soft);
}
.contents-summary-card {
  margin-top: 22px;
}
.contents-banner {
  box-shadow: 0 22px 55px rgba(4, 26, 61, 0.16);
}
.contents-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.contents-banner-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 13px;
  color: #d9e9f8;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.contents-banner-stats b {
  color: #ffe08a;
  font-size: 17px;
}
.contents-search {
  align-items: center;
  border-color: #d7e4f2;
}
.contents-search > i {
  margin-left: 5px;
  color: var(--blue);
  font-size: 19px;
}
.contents-search > span {
  padding: 8px 11px;
  color: var(--blue);
  background: #edf7ff;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.contents-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.contents-volume-card {
  padding: 0;
  overflow: hidden;
  border-color: #d7e4f2;
  box-shadow:
    0 15px 40px rgba(4, 26, 61, 0.085),
    0 3px 9px rgba(4, 26, 61, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.contents-volume-card:hover {
  transform: translateY(-3px);
  border-color: #b9d4eb;
  box-shadow: 0 21px 50px rgba(4, 26, 61, 0.13);
}
.contents-volume-card[hidden] {
  display: none;
}
.contents-volume-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 18px 19px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(9, 181, 214, 0.23), transparent 28%),
    linear-gradient(135deg, #031631, #075aa8);
}
.contents-volume-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #fff, #ffe39a);
  border-radius: 14px;
}
.contents-volume-head small,
.contents-volume-head h2 {
  display: block;
}
.contents-volume-head small {
  color: #bed6ec;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
.contents-volume-head h2 {
  margin: 2px 0 0;
  font-size: 21px;
}
.contents-volume-total {
  padding: 7px 9px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}
.contents-issue-list {
  display: grid;
  gap: 9px;
  padding: 15px;
}
.contents-issue-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  color: var(--navy);
  background: #f6f9fd;
  border: 1px solid #e2ebf5;
  border-radius: 14px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.contents-issue-link:hover {
  color: var(--blue);
  background: #edf7ff;
  border-color: #b8d8ef;
  transform: translateX(3px);
}
.contents-issue-number {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid #dce8f4;
  border-radius: 11px;
}
.contents-issue-link b,
.contents-issue-link small {
  display: block;
}
.contents-issue-link b {
  font-size: 12px;
}
.contents-issue-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}
.contents-issue-link > i {
  color: #9cb2c9;
  font-size: 11px;
}
.news-mini {
  padding: 16px 18px;
  border-bottom: 1px solid #edf2fa;
  color: var(--text);
  font-weight: 700;
}
.news-mini i {
  color: var(--gold);
  margin-right: 8px;
}
.searchbar {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 14px 42px rgba(4, 26, 61, 0.08);
  margin: 24px 0;
}
.searchbar input {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
}
.searchbar button {
  border: 0;
}
.journal-top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .journal-shell {
    grid-template-columns: 1fr;
  }
  .journal-sidebar {
    position: static;
  }
  .issue-box {
    grid-template-columns: 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .journal-banner h1 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .contents-volume-head {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .contents-volume-total {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .contents-search > span {
    display: none;
  }
}

/* Author Guidelines */
.journal-page-guidelines .journal-guidelines-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  background:
    radial-gradient(circle at 86% 20%, rgba(9, 181, 214, 0.3), transparent 28%),
    linear-gradient(135deg, #031631, #075aa8);
}
.journal-page-guidelines .guidelines-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 8px 12px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.journal-page-guidelines .journal-about-section {
  padding: 72px 0 86px;
  background:
    linear-gradient(180deg, rgba(220, 235, 250, 0.46), transparent 220px),
    var(--soft);
  border-top: 1px solid #d8e6f5;
}
.journal-page-guidelines .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 28px;
}
.journal-page-guidelines .journal-about-main {
  min-width: 0;
  padding: 38px;
  background: #fff;
  border: 1px solid #dbe7f4;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(4, 26, 61, 0.1);
}
.journal-page-guidelines .journal-about-main > .journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.journal-page-guidelines .journal-about-main > h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.7px;
}
.guidelines-introduction {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 27px 28px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(9, 181, 214, 0.26), transparent 30%),
    linear-gradient(135deg, #031a3a, #075aa8);
  border-radius: 22px;
}
.guidelines-introduction > div {
  position: relative;
  z-index: 1;
}
.guidelines-introduction span {
  color: #ffe08a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}
.guidelines-introduction h3 {
  margin: 8px 0 7px;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
}
.guidelines-introduction p {
  max-width: 650px;
  margin: 0;
  color: #d8e9f9;
  font-size: 13px;
  line-height: 1.7;
}
.guidelines-introduction > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 17px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.guidelines-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.guidelines-highlights > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  background: #f5f9fe;
  border: 1px solid #dce8f4;
  border-radius: 17px;
}
.guidelines-highlights i {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  color: var(--blue);
  background: #e3f3ff;
  border-radius: 12px;
}
.guidelines-highlights span,
.guidelines-highlights b,
.guidelines-highlights small {
  min-width: 0;
  display: block;
}
.guidelines-highlights b {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.35;
}
.guidelines-highlights small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.guidelines-detail-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e1eaf4;
}
.guidelines-detail-heading > span {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 13px;
}
.guidelines-detail-heading small,
.guidelines-detail-heading h3 {
  display: block;
}
.guidelines-detail-heading small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
}
.guidelines-detail-heading h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 18px;
}

.journal-page-guidelines .journal-managed-content {
  color: #33465e;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}
.journal-page-guidelines .journal-managed-content table,
.journal-page-guidelines .journal-managed-content tbody,
.journal-page-guidelines .journal-managed-content tr,
.journal-page-guidelines .journal-managed-content td {
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 !important;
}
.journal-page-guidelines .journal-managed-content table {
  border: 0 !important;
  border-spacing: 0;
}
.journal-page-guidelines .journal-managed-content tr {
  margin-bottom: 16px !important;
  padding: 24px;
  background: #fbfdff;
  border: 1px solid #dfe9f4;
  border-radius: 19px;
}
.journal-page-guidelines .journal-managed-content tr:nth-child(2) {
  display: none;
}
.journal-page-guidelines .journal-managed-content tr:nth-child(6) {
  background: #fffaf0;
  border-color: #f1dfa6;
}
.journal-page-guidelines .journal-managed-content tr:last-child {
  background: #f3f9ff;
  border-color: #cfe2f4;
}
.journal-page-guidelines .journal-managed-content td {
  padding: 0 !important;
  text-align: left !important;
}
.journal-page-guidelines .journal-managed-content :is(p, li, span, div) {
  max-width: 100%;
  color: inherit !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.journal-page-guidelines .journal-managed-content p {
  margin: 0 0 13px;
}
.journal-page-guidelines .journal-managed-content p:last-child {
  margin-bottom: 0;
}
.journal-page-guidelines .journal-managed-content ul,
.journal-page-guidelines .journal-managed-content ol {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding-left: 23px;
}
.journal-page-guidelines .journal-managed-content ul > ul {
  display: none;
}
.journal-page-guidelines .journal-managed-content li {
  padding-left: 6px;
}
.journal-page-guidelines .journal-managed-content li:empty {
  display: none;
}
.journal-page-guidelines .journal-managed-content li::marker {
  color: var(--blue);
  font-weight: 900;
}
.journal-page-guidelines .journal-managed-content tr > td > span:first-child > strong,
.journal-page-guidelines .journal-managed-content tr > td > p:first-child strong,
.journal-page-guidelines .journal-managed-content .gmail_default:first-child strong {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.journal-page-guidelines .journal-managed-content blockquote {
  margin: 14px 0 0;
  padding: 17px 19px;
  background: #eef7ff;
  border-left: 4px solid var(--cyan);
  border-radius: 0 14px 14px 0;
}
.journal-page-guidelines .journal-managed-content a {
  color: var(--blue) !important;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(7, 90, 168, 0.3);
  text-underline-offset: 3px;
}
.journal-page-guidelines .journal-managed-content a:hover {
  color: #03447f !important;
  text-decoration-color: currentColor;
}

.journal-page-guidelines .journal-action-panel {
  position: sticky;
  top: 126px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe7f4;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(4, 26, 61, 0.1);
}
.journal-page-guidelines .journal-action-panel h3 {
  margin: 0;
  padding: 20px 21px;
  color: #fff;
  background: linear-gradient(135deg, #031a3a, #075aa8);
  font-size: 17px;
}
.guidelines-panel-note {
  display: flex;
  gap: 11px;
  margin: 16px;
  padding: 15px;
  color: #195c42;
  background: #effaf5;
  border: 1px solid #ccebdd;
  border-radius: 15px;
}
.guidelines-panel-note > i {
  margin-top: 2px;
  color: #1d9b69;
}
.guidelines-panel-note b,
.guidelines-panel-note small {
  display: block;
}
.guidelines-panel-note b {
  font-size: 12px;
}
.guidelines-panel-note small {
  margin-top: 3px;
  color: #547769;
  font-size: 10px;
  line-height: 1.5;
}
.journal-page-guidelines .journal-action-panel > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 0 16px;
  padding: 14px 0;
  color: var(--navy);
  border-bottom: 1px solid #e5edf5;
}
.journal-page-guidelines .journal-action-panel > a:last-child {
  margin-bottom: 10px;
  border-bottom: 0;
}
.journal-page-guidelines .journal-action-panel > a > i:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf5ff;
  border-radius: 11px;
}
.journal-page-guidelines .journal-action-panel > a > i:last-child {
  color: #9aacc0;
  font-size: 10px;
}
.journal-page-guidelines .journal-action-panel span b,
.journal-page-guidelines .journal-action-panel span small {
  display: block;
}
.journal-page-guidelines .journal-action-panel span b {
  font-size: 12px;
}
.journal-page-guidelines .journal-action-panel span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}
.journal-page-guidelines .journal-action-panel > a:hover {
  color: var(--blue);
}
.journal-page-guidelines .journal-action-panel > a.guidelines-submit-action {
  margin: 0 16px 8px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 0;
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(7, 90, 168, 0.18);
}
.journal-page-guidelines .journal-action-panel > a.guidelines-submit-action > i {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.journal-page-guidelines .journal-action-panel > a.guidelines-submit-action span small {
  color: #d7efff;
}

@media (max-width: 1000px) {
  .journal-page-guidelines .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-guidelines .journal-action-panel {
    position: static;
  }
}
@media (max-width: 720px) {
  .journal-page-guidelines {
    overflow-x: hidden;
  }
  .journal-page-guidelines .journal-guidelines-hero {
    padding: 54px 0;
  }
  .journal-page-guidelines .journal-about-section {
    padding: 48px 0 60px;
  }
  .journal-page-guidelines .journal-about-main {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    overflow: hidden;
    border-radius: 22px;
  }
  .guidelines-introduction {
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 23px 21px;
  }
  .guidelines-introduction > a {
    width: 100%;
  }
  .guidelines-highlights {
    grid-template-columns: 1fr;
  }
  .guidelines-detail-heading > div,
  .guidelines-detail-heading h3,
  .journal-page-guidelines .journal-managed-content,
  .journal-page-guidelines .journal-managed-content table,
  .journal-page-guidelines .journal-managed-content tbody,
  .journal-page-guidelines .journal-managed-content tr,
  .journal-page-guidelines .journal-managed-content td {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }
  .journal-page-guidelines .journal-managed-content table {
    table-layout: fixed;
  }
  .journal-page-guidelines .journal-managed-content tr {
    padding: 19px;
  }
}

/* Premium Gallery Page */
.gallery-page-hero::after {
  content: "RSMAMS";
}
.gallery-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
}
.gallery-hero-copy {
  max-width: 800px;
}
.gallery-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(244, 192, 78, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.gallery-page-hero h1 {
  max-width: 800px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}
.gallery-page-hero .journal-intro-line {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 500;
}
.gallery-hero-highlights {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}
.gallery-hero-highlights > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: rgba(3, 22, 49, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
}
.gallery-hero-highlights i {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe39a, var(--gold));
  border-radius: 13px;
}
.gallery-hero-highlights span,
.gallery-hero-highlights b,
.gallery-hero-highlights small {
  display: block;
}
.gallery-hero-highlights b {
  font-size: 14px;
}
.gallery-hero-highlights small {
  margin-top: 2px;
  color: #c6d9ec;
  font-size: 11px;
}
.gallery-showcase {
  position: relative;
  background:
    radial-gradient(circle at 95% 5%, rgba(9, 181, 214, 0.09), transparent 24%),
    linear-gradient(180deg, #f4f8fd 0, #fff 460px);
}
.gallery-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}
.gallery-section-head .title {
  margin: 0;
  text-align: left;
}
.gallery-section-head .title h2 {
  margin-bottom: 8px;
}
.gallery-section-head .title p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.gallery-result-count {
  min-width: 144px;
  padding: 15px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #dce7f4;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(4, 26, 61, 0.07);
}
.gallery-result-count strong,
.gallery-result-count span {
  display: block;
}
.gallery-result-count strong {
  color: var(--blue);
  font-size: 29px;
  line-height: 1;
}
.gallery-result-count span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gallery-filter {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 10px;
  background: #fff;
  border: 1px solid #dce7f4;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(4, 26, 61, 0.07);
}
.gallery-filter button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: var(--navy);
  background: #f4f8fc;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}
.gallery-filter button span {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: var(--muted);
  background: #fff;
  border-radius: 7px;
  font-size: 10px;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 9px 20px rgba(7, 90, 168, 0.2);
  transform: translateY(-1px);
}
.gallery-filter button.active span,
.gallery-filter button:hover span {
  color: var(--blue);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce7f4;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(4, 26, 61, 0.09);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: #b9d4eb;
  box-shadow: 0 24px 55px rgba(4, 26, 61, 0.14);
}
.gallery-item[hidden] {
  display: none;
}
.gallery-item-featured {
  grid-column: span 6;
  min-height: 350px;
}
.gallery-item-activity {
  grid-column: span 3;
  min-height: 330px;
}
.gallery-image-button {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border: 0;
  cursor: zoom-in;
}
.gallery-image-button img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.gallery-item:hover .gallery-image-button img {
  transform: scale(1.045);
}
.gallery-image-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 17, 39, 0.92));
  pointer-events: none;
}
.gallery-expand {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(3, 22, 49, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  backdrop-filter: blur(8px);
  transition: 0.22s ease;
}
.gallery-item:hover .gallery-expand {
  color: var(--navy);
  background: var(--gold);
  transform: scale(1.06);
}
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 15px 17px;
  color: #fff;
  background: rgba(3, 22, 49, 0.78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.gallery-caption b {
  display: block;
  margin: 7px 0 2px;
  font-size: 17px;
  line-height: 1.35;
}
.gallery-caption small {
  display: block;
  color: #d2e2f2;
  font-size: 11px;
}
.gallery-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffe08a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.gallery-symbol {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(244, 192, 78, 0.26), transparent 30%),
    linear-gradient(135deg, #031631, #075aa8);
  position: relative;
  overflow: hidden;
}
.gallery-symbol::after {
  content: "\2211  \03C0  \221A\221E";
  position: absolute;
  right: -12px;
  top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.075);
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
}
.gallery-symbol-cyan {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #03425e, #08a5c6);
}
.gallery-symbol-indigo {
  background:
    radial-gradient(circle at 85% 10%, rgba(244, 192, 78, 0.2), transparent 30%),
    linear-gradient(135deg, #172558, #4f63ba);
}
.gallery-symbol-gold {
  color: var(--navy);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #d9a52d, #f7d87d);
}
.gallery-symbol-gold::after {
  color: rgba(4, 26, 61, 0.08);
}
.gallery-symbol-icon {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #fff, #ffe39a);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.13);
  font-size: 23px;
}
.gallery-symbol .gallery-category {
  margin-bottom: 9px;
}
.gallery-symbol-gold .gallery-category {
  color: #473200;
}
.gallery-symbol h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}
.gallery-symbol p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #cfe1f3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}
.gallery-symbol-gold p {
  color: #463913;
}
.gallery-card-note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-top: 14px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 800;
}
.gallery-symbol-gold .gallery-card-note {
  color: var(--navy);
  border-top-color: rgba(4, 26, 61, 0.15);
}
.gallery-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 25px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(9, 181, 214, 0.24), transparent 24%),
    linear-gradient(135deg, var(--navy), #075aa8);
  border-radius: 25px;
  box-shadow: 0 18px 48px rgba(4, 26, 61, 0.16);
}
.gallery-contact-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe49b, var(--gold));
  border-radius: 19px;
  font-size: 25px;
}
.gallery-contact-card span {
  color: #ffe08a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.gallery-contact-card h3 {
  margin: 3px 0 3px;
  font-size: 19px;
}
.gallery-contact-card p {
  margin: 0;
  color: #cbdff1;
  font-size: 12px;
}
.gallery-contact-card .btn {
  white-space: nowrap;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1, 10, 24, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 28px 28px;
  backdrop-filter: blur(9px);
}
.lightbox.show {
  display: flex;
}
.lightbox figure {
  max-width: min(1180px, 94vw);
  margin: 0;
}
.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}
.lightbox figcaption {
  padding: 14px 8px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  font-size: 20px;
  cursor: pointer;
}
.lightbox-close:hover {
  color: var(--navy);
  background: var(--gold);
}
.lightbox-open {
  overflow: hidden;
}
@media (max-width: 1000px) {
  .gallery-hero-layout {
    grid-template-columns: 1fr;
  }
  .gallery-hero-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item-activity {
    grid-column: span 6;
  }
  .gallery-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .gallery-contact-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 700px) {
  .gallery-page-hero {
    padding: 58px 0;
  }
  .gallery-page-hero h1 {
    font-size: 37px;
    letter-spacing: -0.8px;
  }
  .gallery-hero-highlights {
    grid-template-columns: 1fr;
  }
  .gallery-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-result-count {
    min-width: 120px;
  }
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .gallery-filter button {
    flex: 0 0 auto;
  }
  .gallery-item-featured,
  .gallery-item-activity {
    grid-column: 1 / -1;
  }
  .gallery-item-featured,
  .gallery-image-button,
  .gallery-image-button img {
    min-height: 290px;
  }
  .gallery-symbol {
    min-height: 310px;
  }
  .gallery-contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .gallery-contact-card .btn {
    grid-column: auto;
    justify-self: stretch;
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .gallery-page-hero h1 {
    font-size: 32px;
  }
  .gallery-caption {
    left: 13px;
    right: 13px;
    bottom: 13px;
  }
  .gallery-symbol {
    padding: 23px;
  }
  .gallery-contact-icon {
    width: 54px;
    height: 54px;
  }
}

/* Modern journal article detail */
.journal-brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;

}
.detail-journal-brand {
  max-width: 480px;
}
.detail-journal-brand  small {
  max-width: 390px;
  font-size: 11px;
  line-height: 1.4;
}
.dropbtn.detail-active,
.dropbtn.active {
  color: var(--blue);
  background: #edf5ff;
}
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(9, 181, 214, 0.25), transparent 27%),
    radial-gradient(circle at 15% 90%, rgba(244, 192, 78, 0.13), transparent 28%),
    linear-gradient(135deg, #031631, #075aa8);
}
.detail-hero::after {
  content: "\03C0  \2211  \221A\221E";
  position: absolute;
  right: clamp(14px, 4vw, 64px);
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 7.4vw, 108px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: clamp(2px, 0.45vw, 7px);
  white-space: nowrap;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  user-select: none;
}
.detail-hero .container {
  position: relative;
  z-index: 1;
}
.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #bad6f1;
  font-size: 13px;
  font-weight: 700;
}
.detail-breadcrumb a {
  color: #ffe08a;
}
.detail-hero h1 {
  max-width: 1000px;
  margin: 14px 0 24px;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.detail-authors {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.detail-author {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 480px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.detail-author > span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  border-radius: 13px;
  font-weight: 900;
}
.detail-author b,
.detail-author small {
  display: block;
}
.detail-author b {
  font-size: 14px;
}
.detail-author small {
  margin-top: 2px;
  color: #c9dff5;
  font-size: 11px;
  line-height: 1.4;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #e2effd;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.detail-meta i {
  color: var(--gold);
}
.detail-section {
  background: var(--soft);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 30px;
  align-items: start;
}
.detail-main {
  min-width: 0;
}
.detail-card {
  margin-bottom: 22px;
  padding: 32px;
  background: #fff;
  border: 1px solid #e3edf9;
  border-radius: 28px;
  box-shadow: 0 14px 44px rgba(4, 26, 61, 0.08);
}
.detail-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.detail-card-title > span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #e8f6ff, #fff4cf);
  border-radius: 16px;
  font-size: 20px;
}
.detail-card-title small {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-card-title h2 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 26px;
}
.detail-abstract {
  color: #40536e;
  font-size: 16px;
  line-height: 1.95;
}
.detail-abstract p:first-child {
  margin-top: 0;
}
.detail-abstract p:last-child {
  margin-bottom: 0;
}
.detail-abstract img,
.detail-abstract table {
  max-width: 100%;
  height: auto;
}
.detail-classification {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.detail-classification h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
}
.detail-classification h3 i {
  margin-right: 7px;
  color: var(--blue);
}
.detail-classification p {
  margin: 0;
  color: var(--muted);
}
.detail-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-keywords span {
  padding: 7px 11px;
  color: #31506f;
  background: #eef6ff;
  border: 1px solid #dbeafb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.detail-card blockquote {
  margin: 0 0 18px;
  padding: 18px 20px;
  color: #40536e;
  background: #f7faff;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  font-size: 14px;
  line-height: 1.8;
}
.detail-copy {
  border: 0;
  cursor: pointer;
}
.detail-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.detail-bottom-nav a,
.detail-bottom-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  color: var(--blue);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.detail-sidebar {
  position: sticky;
  top: 112px;
}
.detail-download {
  padding: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(9, 181, 214, 0.3), transparent 30%),
    linear-gradient(145deg, #031631, #075aa8);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.detail-pdf-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: #fff;
  background: #d9363e;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(217, 54, 62, 0.3);
  font-size: 30px;
}
.detail-download h2 {
  margin: 0 0 7px;
}
.detail-download p {
  margin: 0 0 20px;
  color: #cbdff5;
  font-size: 13px;
  line-height: 1.6;
}
.detail-download .btn {
  width: 100%;
  justify-content: center;
}
.detail-cover-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: #d9ebff;
  font-size: 12px;
  font-weight: 800;
}
.detail-cover-link:hover {
  color: var(--gold);
}
.detail-publication,
.detail-related {
  margin-top: 20px;
}
.detail-publication dl {
  margin: 0;
  padding: 10px 20px;
}
.detail-publication dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #edf2f8;
}
.detail-publication dl > div:last-child {
  border-bottom: 0;
}
.detail-publication dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.detail-publication dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}
.detail-publication dd a {
  color: var(--blue);
}
.detail-related > a {
  display: block;
  padding: 14px 18px;
  color: var(--navy);
  border-bottom: 1px solid #edf2f8;
}
.detail-related > a:hover {
  color: var(--blue);
  background: #f5f9ff;
}
.detail-related b,
.detail-related small {
  display: block;
}
.detail-related b {
  font-size: 12px;
  line-height: 1.5;
}
.detail-related small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.detail-related .detail-related-all {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.detail-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 0.25s;
}
.detail-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.detail-not-found {
  min-height: 50vh;
  padding: 70px 25px;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.detail-not-found > i {
  color: var(--blue);
  font-size: 50px;
}
.detail-not-found h1 {
  color: var(--navy);
}
.footer-bottom {
  text-align: center;
}

@media (max-width: 1100px) {
  .detail-journal-brand {
    max-width: 360px;
  }
  .detail-journal-brand small {
    max-width: 270px;
  }
}
@media (max-width: 1000px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .detail-sidebar > * {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .detail-journal-brand {
    max-width: calc(100% - 64px);
  }
  .detail-journal-brand small {
    max-width: 240px;
  }
}
@media (max-width: 700px) {
  .detail-hero {
    padding: 44px 0 40px;
  }
  .detail-hero h1 {
    font-size: 33px;
  }
  .detail-author {
    width: 100%;
  }
  .detail-card {
    padding: 24px 21px;
  }
  .detail-classification,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }
  .detail-bottom-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .detail-journal-brand small {
    display: none;
  }
  .detail-breadcrumb {
    line-height: 1.6;
  }
  .detail-hero h1 {
    font-size: 29px;
  }
  .detail-meta span {
    width: 100%;
  }
  .detail-card-title h2 {
    font-size: 22px;
  }
}

/* Modern journal article list */
.article-list-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(225, 237, 250, 0.5), transparent 130px),
    var(--soft);
  border-top: 1px solid #d8e6f5;
  box-shadow:
    inset 0 18px 38px rgba(4, 26, 61, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.article-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 28px;
  align-items: start;
}
.article-list-main {
  min-width: 0;
}
.article-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e4f3;
  border-radius: 22px;
  box-shadow:
    0 12px 32px rgba(4, 26, 61, 0.08),
    0 2px 7px rgba(4, 26, 61, 0.04);
}
.article-list-toolbar > div {
  min-width: 145px;
}
.article-result-count {
  display: block;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}
.article-list-toolbar small {
  color: var(--muted);
  font-weight: 600;
}
.article-search {
  width: min(420px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--blue);
  background: #f6faff;
  border: 1px solid #ccddf0;
  border-radius: 999px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.article-search:focus-within {
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(9, 181, 214, 0.13);
}
.article-search input {
  width: 100%;
  min-width: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}
.article-entry {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 18px;
  padding: 25px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e5f3;
  border-radius: 26px;
  box-shadow:
    0 15px 38px rgba(4, 26, 61, 0.085),
    0 3px 9px rgba(4, 26, 61, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.article-entry:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.article-entry:hover {
  transform: translateY(-3px);
  border-color: #b9d5ed;
  box-shadow:
    0 22px 52px rgba(4, 26, 61, 0.13),
    0 4px 12px rgba(7, 90, 168, 0.06);
}
.article-entry:hover:before {
  opacity: 1;
}
.article-entry[hidden] {
  display: none;
}
.article-sequence {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #e7f5ff, #fff3c9);
  border: 1px solid #e1ebf2;
  border-radius: 20px;
  font-size: 21px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.article-entry-body {
  min-width: 0;
}
.article-entry-label {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-entry h2 {
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.45;
}
.article-entry h2 a {
  color: var(--navy);
}
.article-entry h2 a:hover {
  color: var(--blue);
}
.article-author-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}
.article-author-list > i {
  margin-top: 7px;
  color: var(--gold);
}
.article-author-list span {
  display: inline-block;
  margin: 0 8px 6px 0;
  padding: 5px 10px;
  color: #41546e;
  background: #f5f8fc;
  border: 1px solid #e6edf6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.article-entry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid #e5edf6;
}
.article-meta-pills,
.article-entry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
.article-meta-pills .pill {
  color: var(--muted);
  border-color: #d9e5f3;
  font-size: 12px;
}
.article-meta-pills a.pill:hover {
  color: var(--blue);
  background: #edf7ff;
  border-color: #afd1ee;
}
.article-entry-actions {
  justify-content: flex-end;
}
.article-entry-actions .mini-btn {
  border: 1px solid #d7e8f7;
  white-space: nowrap;
}
.article-entry-actions .mini-btn.gold {
  border-color: #f5df9c;
}
.article-issue-sidebar {
  position: sticky;
  top: 112px;
}
.article-issue-sidebar .journal-card {
  border: 1px solid #d3e1f0;
  box-shadow:
    0 16px 38px rgba(4, 26, 61, 0.1),
    0 3px 8px rgba(4, 26, 61, 0.04);
}
.issue-summary-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.issue-summary-content span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.issue-summary-content b {
  color: var(--navy);
  font-size: 16px;
}
.article-quick-card {
  margin-top: 20px;
}
.article-empty-state {
  padding: 60px 30px;
  text-align: center;
  background: #fff;
  border: 1px dashed #b9cee3;
  border-radius: 26px;
  box-shadow: 0 14px 38px rgba(4, 26, 61, 0.07);
}
.article-empty-state > i {
  color: var(--blue);
  font-size: 46px;
}
.article-empty-state h2 {
  margin: 16px 0 8px;
  color: var(--navy);
}
.article-empty-state p {
  margin: 0 0 22px;
  color: var(--muted);
}
.search-empty[hidden] {
  display: none;
}

@media (max-width: 1000px) {
  .article-list-layout {
    grid-template-columns: 1fr;
  }
  .article-issue-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .article-quick-card {
    margin-top: 0;
  }
}
@media (max-width: 720px) {
  .article-list-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .article-search {
    width: 100%;
  }
  .article-entry {
    grid-template-columns: 1fr;
    padding: 21px;
  }
  .article-sequence {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 18px;
  }
  .article-entry-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .article-entry-actions {
    justify-content: flex-start;
  }
  .article-issue-sidebar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .article-entry h2 {
    font-size: 18px;
  }
  .article-entry-actions .mini-btn {
    justify-content: center;
    width: 100%;
  }
}

/* All-article card archive */
.article-search button {
  flex: 0 0 auto;
  margin: -7px -10px -7px 0;
  padding: 9px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.article-search-clear {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border-radius: 50%;
}
.article-search-clear:hover {
  color: #fff;
  background: var(--blue);
}
.all-articles-mode .article-list-layout {
  grid-template-columns: minmax(0, 1fr) 270px;
}
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.article-card-grid .article-entry {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 315px;
  margin: 0;
  padding: 22px;
}
.article-card-grid .article-sequence {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 17px;
}
.article-card-grid .article-entry-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card-grid .article-entry h2 {
  font-size: 17px;
  line-height: 1.45;
}
.article-card-grid .article-author-list span {
  margin-right: 5px;
  padding: 4px 8px;
  font-size: 11px;
}
.article-card-grid .article-entry-footer {
  align-items: stretch;
  flex-direction: column;
  margin-top: auto;
}
.article-card-grid .article-entry-actions {
  justify-content: flex-start;
}
.article-card-grid .article-entry-actions .mini-btn {
  justify-content: center;
}
.article-card-grid .article-empty-state {
  grid-column: 1 / -1;
}
.article-pagination {
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid #d6e4f2;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(4, 26, 61, 0.08);
}
.article-pagination a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.pagination-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pagination-direction:last-child {
  justify-content: flex-end;
}
.pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.pagination-pages a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e5f3;
  border-radius: 11px;
}
.pagination-pages a:hover,
.pagination-pages a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(7, 90, 168, 0.22);
}
.pagination-pages span {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .all-articles-mode .article-list-layout {
    grid-template-columns: 1fr;
  }
  .all-articles-mode .article-issue-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .all-articles-mode .article-quick-card {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  .article-card-grid {
    grid-template-columns: 1fr;
  }
  .article-card-grid .article-entry {
    min-height: 0;
  }
  .article-pagination {
    grid-template-columns: 1fr 1fr;
  }
  .pagination-pages {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .pagination-direction:last-child {
    justify-self: end;
  }
}
@media (max-width: 520px) {
  .article-search {
    border-radius: 18px;
  }
  .article-search button {
    padding-inline: 12px;
  }
  .article-card-grid .article-entry {
    grid-template-columns: 1fr;
  }
  .article-pagination {
    padding: 13px;
  }
  .pagination-pages a {
    width: 32px;
    height: 32px;
  }
}

/* Filtered issue view aligned with the Current Issue page */
.filtered-issue-mode .article-list-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}
.filtered-issue-mode .article-list-main {
  grid-column: 2;
  grid-row: 1;
}
.filtered-issue-mode .article-issue-sidebar {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
.filtered-issue-mode .article-quick-card {
  order: 1;
  margin-top: 0;
}
.filtered-issue-mode .issue-summary-card {
  order: 2;
  margin-top: 22px;
}
.issue-list-banner {
  margin-bottom: 26px;
}
.issue-list-banner p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #d7e9fb;
  line-height: 1.75;
}
.issue-list-banner .journal-top-actions {
  position: relative;
  z-index: 1;
}
.issue-list-overview {
  margin-bottom: 26px;
}
.issue-list-overview .journal-card-head {
  font-size: 15px;
}
.filtered-issue-mode .article-list-toolbar {
  border-radius: 24px;
}
.filtered-issue-mode .article-entry {
  border-color: #dbe7f4;
  box-shadow: 0 14px 42px rgba(4, 26, 61, 0.08);
}
.filtered-issue-mode .article-entry h2 {
  font-size: 20px;
}

@media (max-width: 1000px) {
  .filtered-issue-mode .article-list-layout {
    grid-template-columns: 1fr;
  }
  .filtered-issue-mode .article-list-main,
  .filtered-issue-mode .article-issue-sidebar {
    grid-column: 1;
  }
  .filtered-issue-mode .article-list-main {
    grid-row: 1;
  }
  .filtered-issue-mode .article-issue-sidebar {
    grid-row: 2;
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .filtered-issue-mode .issue-summary-card {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .filtered-issue-mode .article-issue-sidebar {
    grid-template-columns: 1fr;
  }
  .issue-list-overview .issue-box {
    grid-template-columns: 1fr;
  }
  .issue-list-banner {
    padding: 28px 24px;
  }
}

/* Current Issue-style cards inside #articles */
.filtered-issue-mode #articles {
  margin-top: 24px;
}
.issue-article-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #dce7f4;
  box-shadow:
    0 14px 42px rgba(4, 26, 61, 0.085),
    0 3px 9px rgba(4, 26, 61, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.issue-article-card:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.issue-article-card:hover {
  transform: translateY(-3px);
  border-color: #b9d5ed;
  box-shadow: 0 21px 52px rgba(4, 26, 61, 0.13);
}
.issue-article-card:hover:before {
  opacity: 1;
}
.issue-article-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}
.issue-article-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #e8f6ff, #fff3cc);
  border: 1px solid #dce8f2;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 900;
}
.issue-article-card h3 {
  margin: 4px 0 12px;
  font-size: 21px;
  line-height: 1.45;
}
.issue-article-card h3 a {
  color: var(--navy);
}
.issue-article-card h3 a:hover {
  color: var(--blue);
}
.issue-article-card .article-authors {
  margin: 15px 0;
  padding: 11px 14px;
  color: var(--blue);
  background: #f3f8ff;
  border: 1px solid #e0eaf5;
  border-radius: 14px;
  line-height: 1.6;
}
.issue-article-card .article-authors i {
  margin-right: 7px;
  color: var(--gold);
}
.issue-article-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.issue-article-metadata .pill {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.issue-article-metadata a.pill:hover {
  color: var(--blue);
  border-color: #b6d4ed;
}
.issue-article-card .article-actions {
  align-items: center;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid #e7eef6;
}
.issue-article-card .article-actions .mini-btn {
  border: 1px solid #d8e8f6;
}
.issue-article-card .article-actions .mini-btn.gold {
  border-color: #f2dc99;
}
.issue-article-card .issue-read-more {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
}

@media (max-width: 650px) {
  .issue-article-card {
    padding: 21px;
  }
  .issue-article-heading {
    grid-template-columns: 1fr;
  }
  .issue-article-card h3 {
    font-size: 18px;
  }
  .issue-article-card .article-actions .mini-btn {
    justify-content: center;
    flex: 1 1 calc(50% - 10px);
  }
  .issue-article-card .issue-read-more {
    margin-left: 0;
  }
}

/* Advisory Editorial Board typography and member cards */
.journal-page-advisory-editorial-board .journal-about-section {
  background:
    linear-gradient(180deg, rgba(225, 237, 250, 0.46), transparent 180px),
    var(--soft);
  border-top: 1px solid #d8e6f5;
  box-shadow: inset 0 16px 36px rgba(4, 26, 61, 0.045);
}
.journal-page-advisory-editorial-board .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: start;
}
.journal-page-advisory-editorial-board .journal-about-main {
  min-width: 0;
  padding: 34px;
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 30px;
  box-shadow:
    0 18px 50px rgba(4, 26, 61, 0.09),
    0 3px 9px rgba(4, 26, 61, 0.035);
}
.journal-page-advisory-editorial-board .journal-about-main > .journal-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journal-page-advisory-editorial-board .journal-about-main > h2 {
  margin: 0 0 26px;
  padding-bottom: 20px;
  color: var(--navy);
  border-bottom: 1px solid #e3edf6;
  font-size: 32px;
  line-height: 1.25;
}
.journal-page-advisory-editorial-board .journal-managed-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: advisory-member;
}
.journal-page-advisory-editorial-board .journal-managed-content > p {
  position: relative;
  min-height: 132px;
  margin: 0 !important;
  padding: 20px 20px 20px 68px;
  color: #53647b;
  background:
    linear-gradient(135deg, rgba(235, 247, 255, 0.8), rgba(255, 249, 230, 0.45)),
    #fff;
  border: 1px solid #dce8f4;
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(4, 26, 61, 0.055);
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  counter-increment: advisory-member;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.journal-page-advisory-editorial-board .journal-managed-content > p:before {
  content: counter(advisory-member, decimal-leading-zero);
  position: absolute;
  left: 17px;
  top: 19px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #fff, #fff1bf);
  border: 1px solid #d9e7f1;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}
.journal-page-advisory-editorial-board .journal-managed-content > p:hover {
  transform: translateY(-3px);
  border-color: #afd0ea;
  box-shadow: 0 16px 34px rgba(4, 26, 61, 0.1);
}
.journal-page-advisory-editorial-board .journal-managed-content p span {
  color: inherit !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.journal-page-advisory-editorial-board .journal-managed-content p strong {
  color: var(--navy) !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}
.journal-page-advisory-editorial-board .journal-action-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d4e2f0;
  border-radius: 24px;
  box-shadow:
    0 16px 42px rgba(4, 26, 61, 0.1),
    0 3px 8px rgba(4, 26, 61, 0.04);
}
.journal-page-advisory-editorial-board .journal-action-panel h3 {
  margin: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 17px;
}
.journal-page-advisory-editorial-board .journal-action-panel > a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  color: var(--navy);
  border-bottom: 1px solid #e8eff7;
  transition: color 0.2s, background 0.2s;
}
.journal-page-advisory-editorial-board .journal-action-panel > a:last-child {
  border-bottom: 0;
}
.journal-page-advisory-editorial-board .journal-action-panel > a:hover {
  color: var(--blue);
  background: #f0f8ff;
}
.journal-page-advisory-editorial-board .journal-action-panel > a > i:first-child {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf6ff;
  border-radius: 12px;
}
.journal-page-advisory-editorial-board .journal-action-panel span b,
.journal-page-advisory-editorial-board .journal-action-panel span small {
  display: block;
}
.journal-page-advisory-editorial-board .journal-action-panel span b {
  font-size: 13px;
}
.journal-page-advisory-editorial-board .journal-action-panel span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1000px) {
  .journal-page-advisory-editorial-board .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-advisory-editorial-board .journal-action-panel {
    position: static;
  }
}
@media (max-width: 760px) {
  .journal-page-advisory-editorial-board .journal-managed-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .journal-page-advisory-editorial-board .journal-about-main {
    padding: 24px 20px;
  }
  .journal-page-advisory-editorial-board .journal-about-main > h2 {
    font-size: 27px;
  }
  .journal-page-advisory-editorial-board .journal-managed-content > p {
    min-height: 0;
    padding: 18px 17px 18px 62px;
  }
  .journal-page-advisory-editorial-board .journal-managed-content > p:before {
    left: 14px;
    top: 17px;
  }
}

/* Editorial Board leadership and member directory */
.journal-page-editorial-board .journal-about-section {
  background:
    linear-gradient(180deg, rgba(225, 237, 250, 0.46), transparent 180px),
    var(--soft);
  border-top: 1px solid #d8e6f5;
  box-shadow: inset 0 16px 36px rgba(4, 26, 61, 0.045);
}
.journal-page-editorial-board .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: start;
}
.journal-page-editorial-board .journal-about-main {
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 30px;
  box-shadow:
    0 18px 50px rgba(4, 26, 61, 0.09),
    0 3px 9px rgba(4, 26, 61, 0.035);
}
.journal-page-editorial-board .journal-about-main > .journal-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journal-page-editorial-board .journal-about-main > h2 {
  margin: 0 0 26px;
  padding-bottom: 20px;
  color: var(--navy);
  border-bottom: 1px solid #e3edf6;
  font-size: 32px;
  line-height: 1.25;
}
.journal-page-editorial-board .journal-managed-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: editorial-member;
}
.journal-page-editorial-board .journal-managed-content table {
  grid-column: 1 / -1;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 14px;
  table-layout: fixed;
  border-spacing: 12px 0;
}
.journal-page-editorial-board .journal-managed-content table tr:nth-child(3) {
  display: none;
}
.journal-page-editorial-board .journal-managed-content table td {
  width: 33.333%;
  padding: 18px;
  vertical-align: top;
  color: #52647c;
  border: 1px solid #d9e6f3;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 12.5px;
  line-height: 1.75;
}
.journal-page-editorial-board .journal-managed-content table tr:nth-child(1) td,
.journal-page-editorial-board .journal-managed-content table tr:nth-child(4) td {
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: transparent;
  border-radius: 16px 16px 0 0;
  font-size: 13px;
  font-weight: 900;
}
.journal-page-editorial-board .journal-managed-content table tr:nth-child(1) td strong,
.journal-page-editorial-board .journal-managed-content table tr:nth-child(4) td strong {
  color: #fff !important;
}
.journal-page-editorial-board .journal-managed-content table tr:nth-child(2) td,
.journal-page-editorial-board .journal-managed-content table tr:nth-child(5) td {
  background:
    linear-gradient(145deg, rgba(235, 247, 255, 0.6), rgba(255, 249, 230, 0.38)),
    #fff;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 28px rgba(4, 26, 61, 0.07);
}
.journal-page-editorial-board .journal-managed-content table p {
  margin: 0 0 10px;
  color: inherit;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
  text-align: left;
}
.journal-page-editorial-board .journal-managed-content table p + p:last-child {
  margin-bottom: 0;
  padding-top: 9px;
  border-top: 1px solid #dfe9f3;
  font-size: 11px !important;
}
.journal-page-editorial-board .journal-managed-content table strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.journal-page-editorial-board .journal-managed-content table a {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.journal-page-editorial-board .journal-managed-content > table + p {
  grid-column: 1 / -1;
  margin: 12px 0 4px !important;
  padding: 18px 22px;
  color: #fff !important;
  background:
    radial-gradient(circle at 86% 20%, rgba(9, 181, 214, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(4, 26, 61, 0.12);
  font-family: Poppins, Arial, sans-serif !important;
  text-align: left !important;
}
.journal-page-editorial-board .journal-managed-content > table + p span,
.journal-page-editorial-board .journal-managed-content > table + p strong {
  color: #fff !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800;
  text-decoration: none !important;
}
.journal-page-editorial-board .journal-managed-content > table + p ~ p {
  position: relative;
  min-height: 128px;
  margin: 0 !important;
  padding: 20px 20px 20px 68px;
  color: #53647b !important;
  background:
    linear-gradient(135deg, rgba(235, 247, 255, 0.8), rgba(255, 249, 230, 0.45)),
    #fff;
  border: 1px solid #dce8f4;
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(4, 26, 61, 0.055);
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  counter-increment: editorial-member;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.journal-page-editorial-board .journal-managed-content > table + p ~ p:before {
  content: counter(editorial-member, decimal-leading-zero);
  position: absolute;
  left: 17px;
  top: 19px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #fff, #fff1bf);
  border: 1px solid #d9e7f1;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}
.journal-page-editorial-board .journal-managed-content > table + p ~ p:hover {
  transform: translateY(-3px);
  border-color: #afd0ea;
  box-shadow: 0 16px 34px rgba(4, 26, 61, 0.1);
}
.journal-page-editorial-board .journal-managed-content > table + p ~ p span {
  color: inherit !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.journal-page-editorial-board .journal-managed-content > table + p ~ p strong {
  color: var(--navy) !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}
.journal-page-editorial-board .journal-action-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d4e2f0;
  border-radius: 24px;
  box-shadow:
    0 16px 42px rgba(4, 26, 61, 0.1),
    0 3px 8px rgba(4, 26, 61, 0.04);
}
.journal-page-editorial-board .journal-action-panel h3 {
  margin: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 17px;
}
.journal-page-editorial-board .journal-action-panel > a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  color: var(--navy);
  border-bottom: 1px solid #e8eff7;
}
.journal-page-editorial-board .journal-action-panel > a:last-child {
  border-bottom: 0;
}
.journal-page-editorial-board .journal-action-panel > a:hover {
  color: var(--blue);
  background: #f0f8ff;
}
.journal-page-editorial-board .journal-action-panel > a > i:first-child {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf6ff;
  border-radius: 12px;
}
.journal-page-editorial-board .journal-action-panel span b,
.journal-page-editorial-board .journal-action-panel span small {
  display: block;
}
.journal-page-editorial-board .journal-action-panel span b {
  font-size: 13px;
}
.journal-page-editorial-board .journal-action-panel span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .journal-page-editorial-board .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-editorial-board .journal-action-panel {
    position: static;
  }
}
@media (max-width: 800px) {
  .journal-page-editorial-board .journal-managed-content {
    grid-template-columns: 1fr;
  }
  .journal-page-editorial-board .journal-managed-content table,
  .journal-page-editorial-board .journal-managed-content > table + p {
    grid-column: 1;
  }
  .journal-page-editorial-board .journal-managed-content {
    overflow: hidden;
  }
  .journal-page-editorial-board .journal-managed-content table {
    display: block;
    min-width: 720px;
    overflow-x: auto;
    border-spacing: 9px 0;
  }
}
@media (max-width: 520px) {
  .journal-page-editorial-board .journal-about-main {
    padding: 24px 18px;
  }
  .journal-page-editorial-board .journal-about-main > h2 {
    font-size: 27px;
  }
  .journal-page-editorial-board .journal-managed-content > table + p ~ p {
    min-height: 0;
    padding: 18px 17px 18px 62px;
  }
  .journal-page-editorial-board .journal-managed-content > table + p ~ p:before {
    left: 14px;
    top: 17px;
  }
}

/* Associate Editors directory */
.journal-page-associate-editors .journal-about-section {
  background:
    linear-gradient(180deg, rgba(225, 237, 250, 0.46), transparent 180px),
    var(--soft);
  border-top: 1px solid #d8e6f5;
  box-shadow: inset 0 16px 36px rgba(4, 26, 61, 0.045);
}
.journal-page-associate-editors .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: start;
}
.journal-page-associate-editors .journal-about-main {
  min-width: 0;
  padding: 34px;
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 30px;
  box-shadow:
    0 18px 50px rgba(4, 26, 61, 0.09),
    0 3px 9px rgba(4, 26, 61, 0.035);
}
.journal-page-associate-editors .journal-about-main > .journal-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journal-page-associate-editors .journal-about-main > h2 {
  margin: 0 0 24px;
  padding-bottom: 20px;
  color: var(--navy);
  border-bottom: 1px solid #e3edf6;
  font-size: 32px;
  line-height: 1.25;
}
.journal-page-associate-editors .board-directory-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  padding: 17px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(9, 181, 214, 0.3), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 19px;
  box-shadow: 0 12px 30px rgba(4, 26, 61, 0.13);
}
.journal-page-associate-editors .board-directory-summary > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe79e, var(--gold));
  border-radius: 14px;
  font-size: 19px;
}
.journal-page-associate-editors .board-directory-summary b,
.journal-page-associate-editors .board-directory-summary small {
  display: block;
}
.journal-page-associate-editors .board-directory-summary b {
  font-size: 17px;
}
.journal-page-associate-editors .board-directory-summary small {
  margin-top: 3px;
  color: #d6e9fb;
  font-size: 11px;
  line-height: 1.5;
}
.journal-page-associate-editors .journal-managed-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: associate-editor;
}
.journal-page-associate-editors .journal-managed-content > p {
  position: relative;
  min-height: 132px;
  margin: 0 !important;
  padding: 20px 20px 20px 68px;
  color: #53647b !important;
  background:
    linear-gradient(135deg, rgba(235, 247, 255, 0.8), rgba(255, 249, 230, 0.45)),
    #fff;
  border: 1px solid #dce8f4;
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(4, 26, 61, 0.055);
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  counter-increment: associate-editor;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.journal-page-associate-editors .journal-managed-content > p:before {
  content: counter(associate-editor, decimal-leading-zero);
  position: absolute;
  left: 17px;
  top: 19px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #fff, #fff1bf);
  border: 1px solid #d9e7f1;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}
.journal-page-associate-editors .journal-managed-content > p:hover {
  transform: translateY(-3px);
  border-color: #afd0ea;
  box-shadow: 0 16px 34px rgba(4, 26, 61, 0.1);
}
.journal-page-associate-editors .journal-managed-content p span {
  color: inherit !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.journal-page-associate-editors .journal-managed-content p strong {
  color: var(--navy) !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}
.journal-page-associate-editors .journal-action-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d4e2f0;
  border-radius: 24px;
  box-shadow:
    0 16px 42px rgba(4, 26, 61, 0.1),
    0 3px 8px rgba(4, 26, 61, 0.04);
}
.journal-page-associate-editors .journal-action-panel h3 {
  margin: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 17px;
}
.journal-page-associate-editors .journal-action-panel > a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  color: var(--navy);
  border-bottom: 1px solid #e8eff7;
}
.journal-page-associate-editors .journal-action-panel > a:last-child {
  border-bottom: 0;
}
.journal-page-associate-editors .journal-action-panel > a:hover {
  color: var(--blue);
  background: #f0f8ff;
}
.journal-page-associate-editors .journal-action-panel > a > i:first-child {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf6ff;
  border-radius: 12px;
}
.journal-page-associate-editors .journal-action-panel span b,
.journal-page-associate-editors .journal-action-panel span small {
  display: block;
}
.journal-page-associate-editors .journal-action-panel span b {
  font-size: 13px;
}
.journal-page-associate-editors .journal-action-panel span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1000px) {
  .journal-page-associate-editors .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-associate-editors .journal-action-panel {
    position: static;
  }
}
@media (max-width: 760px) {
  .journal-page-associate-editors .journal-managed-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .journal-page-associate-editors .journal-about-main {
    padding: 24px 20px;
  }
  .journal-page-associate-editors .journal-about-main > h2 {
    font-size: 27px;
  }
  .journal-page-associate-editors .board-directory-summary {
    align-items: flex-start;
  }
  .journal-page-associate-editors .journal-managed-content > p {
    min-height: 0;
    padding: 18px 17px 18px 62px;
  }
  .journal-page-associate-editors .journal-managed-content > p:before {
    left: 14px;
    top: 17px;
  }
}

/* Journal home hero copy */
.journal-page-home .journal-brand {
  max-width: 480px;
}
.journal-page-home .journal-brand small {
  max-width: 390px;
  font-size: 11px;
  line-height: 1.4;
}
.journal-page-home .menu a.active {
  color: var(--blue);
  background: #edf5ff;
}
.journal-page-home .journal-home-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(9, 181, 214, 0.3), transparent 25%),
    radial-gradient(circle at 10% 92%, rgba(244, 192, 78, 0.18), transparent 29%),
    linear-gradient(135deg, #031631, #07366b);
}
.journal-page-home .journal-home-hero:before {
  content: "∑  π  √∞  ∫";
  position: absolute;
  right: 2%;
  top: 5%;
  color: rgba(255, 255, 255, 0.055);
  font-size: 108px;
  font-weight: 900;
  letter-spacing: 10px;
  white-space: nowrap;
}
.journal-page-home .journal-home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(235px, 0.45fr);
  align-items: center;
  gap: 56px;
}
.journal-page-home .journal-home-hero-copy {
  position: relative;
  min-width: 0;
  padding: 38px 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.journal-page-home .journal-home-hero-copy:after {
  content: "";
  position: absolute;
  left: -1px;
  top: 34px;
  bottom: 34px;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
  border-radius: 0 999px 999px 0;
}
.journal-page-home .journal-home-hero-copy > .journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #ffe08a;
  background: rgba(244, 192, 78, 0.1);
  border: 1px solid rgba(244, 192, 78, 0.38);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journal-page-home .journal-home-hero-copy h1 {
  max-width: 850px;
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.journal-page-home .journal-home-hero-copy > p {
  max-width: 790px;
  margin: 0;
  padding-left: 16px;
  color: #d6e8ff;
  border-left: 3px solid rgba(244, 192, 78, 0.72);
  font-size: 16px;
  line-height: 1.8;
}
.journal-page-home .journal-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.journal-page-home .journal-hero-facts > span {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 11px 12px;
  background: rgba(3, 22, 49, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
}
.journal-page-home .journal-hero-facts i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(244, 192, 78, 0.1);
  border-radius: 10px;
}
.journal-page-home .journal-hero-facts small {
  overflow: hidden;
  color: #bcd5ef;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.journal-page-home .journal-hero-facts b {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.journal-page-home .journal-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.journal-page-home .journal-home-actions .btn {
  min-height: 50px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.journal-page-home .journal-home-actions .btn:hover {
  transform: translateY(-2px);
}
.journal-page-home .journal-home-actions .btn-gold:hover {
  box-shadow: 0 17px 36px rgba(244, 192, 78, 0.35);
}
.journal-page-home .journal-outline-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(8px);
}
.journal-page-home .journal-outline-btn:hover {
  color: var(--navy);
  background: #fff;
}
.journal-page-home .journal-cover-wrap {
  position: relative;
  width: min(100%, 285px);
  justify-self: end;
}
.journal-page-home .journal-cover-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}
.journal-page-home .journal-cover-glow {
  position: absolute;
  inset: 8% -10% -4% 12%;
  background: rgba(9, 181, 214, 0.42);
  border-radius: 50%;
  filter: blur(45px);
}

@media (max-width: 1150px) {
  .journal-page-home .journal-brand {
    max-width: 360px;
  }
  .journal-page-home .journal-brand small {
    max-width: 270px;
  }
  .journal-page-home .journal-home-hero-grid {
    gap: 34px;
  }
  .journal-page-home .journal-home-hero-copy {
    padding: 32px;
  }
  .journal-page-home .journal-hero-facts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .journal-page-home .journal-brand {
    max-width: calc(100% - 64px);
  }
  .journal-page-home .journal-brand small {
    max-width: 240px;
  }
  .journal-page-home .journal-home-hero {
    padding: 54px 0;
  }
  .journal-page-home .journal-home-hero-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-home .journal-cover-wrap {
    width: 220px;
    justify-self: center;
  }
}
@media (max-width: 520px) {
  .journal-page-home .journal-brand small {
    display: none;
  }
  .journal-page-home .journal-home-hero-copy {
    padding: 26px 22px;
    border-radius: 24px;
  }
  .journal-page-home .journal-home-hero-copy:after {
    top: 24px;
    bottom: 24px;
  }
  .journal-page-home .journal-home-hero-copy h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .journal-page-home .journal-home-hero-copy > p {
    padding-left: 13px;
    font-size: 15px;
  }
  .journal-page-home .journal-home-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Chief Patron */
.journal-page-chief-patron .journal-patron-hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 192, 78, 0.28), transparent 27%),
    radial-gradient(circle at 72% 110%, rgba(9, 181, 214, 0.24), transparent 32%),
    linear-gradient(135deg, #031631 0%, #074d91 68%, #0874ba 100%);
}
.journal-page-chief-patron .journal-patron-hero::before {
  content: "\03C0  \2211  \222B  f(x)";
  right: 5%;
  color: rgba(255, 255, 255, 0.085);
}
.journal-page-chief-patron .journal-patron-hero::after {
  content: "JRSMAMS";
  color: rgba(255, 224, 138, 0.07);
}
.patron-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 8px 13px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}
.journal-page-chief-patron .journal-about-section {
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 0 10%, rgba(9, 181, 214, 0.08), transparent 24%),
    #f4f7fb;
}
.journal-page-chief-patron .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  align-items: start;
  gap: 30px;
}
.journal-page-chief-patron .journal-about-main {
  min-width: 0;
}
.journal-page-chief-patron .journal-about-main > .journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075aa8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
.journal-page-chief-patron .journal-about-main > h2 {
  margin: 9px 0 26px;
  color: #031631;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}
.patron-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 6% 100%, rgba(9, 181, 214, 0.28), transparent 32%),
    linear-gradient(135deg, #031631, #075aa8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(4, 26, 61, 0.2);
}
.patron-profile-card::after {
  content: "\2211";
  position: absolute;
  right: 22px;
  bottom: -38px;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 175px;
  line-height: 1;
  pointer-events: none;
}
.patron-monogram {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  background:
    linear-gradient(#062b58, #062b58) padding-box,
    linear-gradient(145deg, #ffe08a, #09b5d6) border-box;
  border: 5px solid transparent;
  border-radius: 50%;
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.24);
}
.patron-monogram::before,
.patron-monogram::after {
  position: absolute;
  color: rgba(255, 224, 138, 0.27);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.patron-monogram::before {
  content: "\03C0";
  top: 16px;
  left: 28px;
  font-size: 24px;
}
.patron-monogram::after {
  content: "\221A";
  right: 27px;
  bottom: 18px;
  font-size: 22px;
}
.patron-monogram > span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
}
.patron-monogram > small {
  margin-top: 3px;
  color: #ffe08a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.patron-monogram.patron-photo {
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}
.patron-monogram.patron-photo::before,
.patron-monogram.patron-photo::after {
  display: none;
}
.patron-monogram.patron-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.patron-monogram.patron-photo > small {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  margin: 0;
  padding: 8px 7px;
  color: #ffe08a;
  background: rgba(3, 22, 49, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.patron-profile-copy {
  position: relative;
  z-index: 1;
}
.patron-role {
  color: #ffe08a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}
.patron-profile-copy h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 45px);
  line-height: 1.1;
}
.patron-profile-copy > p {
  max-width: 570px;
  margin: 0;
  color: #d8e8f8;
  font-size: 14px;
  line-height: 1.75;
}
.patron-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.patron-expertise span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #e9f4ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
}
.patron-expertise i {
  color: #ffe08a;
}
.patron-achievements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(4, 26, 61, 0.08);
}
.patron-achievements > div {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid #e5edf6;
}
.patron-achievements > div:last-child {
  border-right: 0;
}
.patron-achievements b,
.patron-achievements span {
  display: block;
}
.patron-achievements b {
  color: #075aa8;
  font-size: 25px;
  line-height: 1;
}
.patron-achievements span {
  margin-top: 7px;
  color: #65758b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.patron-achievements.patron-credentials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.patron-credentials > div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
}
.patron-credentials i {
  color: #079bc5;
  font-size: 19px;
}
.patron-credentials b {
  color: #075aa8;
  font-size: 13px;
  line-height: 1.35;
}
.patron-biography-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 13px;
}
.patron-biography-heading > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075aa8, #09b5d6);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(7, 90, 168, 0.2);
}
.patron-biography-heading small,
.patron-biography-heading h3 {
  display: block;
}
.patron-biography-heading small {
  color: #0872b8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.85px;
}
.patron-biography-heading h3 {
  margin: 2px 0 0;
  color: #031631;
  font-size: 20px;
}
.journal-page-chief-patron .journal-managed-content {
  padding: 28px 30px;
  color: #34455c;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(4, 26, 61, 0.075);
}
.journal-page-chief-patron .journal-managed-content :is(p, p span, p strong) {
  color: inherit !important;
  font-family: "Poppins", sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: normal !important;
  text-align: left !important;
}
.journal-page-chief-patron .journal-managed-content p {
  margin: 0;
  text-align: left !important;
  font-size: 13px !important;
  line-height: 1.9 !important;
}
.journal-page-chief-patron .journal-managed-content p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e7eef6;
}
.journal-page-chief-patron .journal-managed-content p:first-child {
  color: #20334d !important;
  font-size: 14px !important;
}
.journal-page-chief-patron .journal-managed-content strong {
  color: #082f5d !important;
  font-weight: 800 !important;
}
.journal-page-chief-patron .patron-contact-content {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.patron-contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: #f5f9fd;
  border: 1px solid #e0eaf4;
  border-radius: 15px;
}
.patron-contact-item > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075aa8, #09b5d6);
  border-radius: 13px;
  font-size: 17px;
}
.patron-contact-item small,
.patron-contact-item b,
.patron-contact-item span {
  display: block;
}
.patron-contact-item small {
  color: #0872b8;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.patron-contact-item b {
  margin-top: 3px;
  color: #102b4c;
  font-size: 12px;
}
.patron-contact-item span {
  margin-top: 3px;
  color: #66778d;
  font-size: 10px;
  line-height: 1.6;
}
.patron-contact-item a {
  color: #075aa8;
  overflow-wrap: anywhere;
}
.patron-contact-item a:hover {
  color: #079bc5;
}
.journal-page-chief-patron .journal-action-panel {
  position: sticky;
  top: 22px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 22px;
  box-shadow: 0 17px 42px rgba(4, 26, 61, 0.1);
}
.journal-page-chief-patron .journal-action-panel h3 {
  margin: 0;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #031631, #075aa8);
  font-size: 17px;
}
.patron-panel-note {
  margin: 16px;
  padding: 17px;
  color: #33465f;
  background: linear-gradient(145deg, #fffaf0, #f6fbff);
  border: 1px solid #e9dfc7;
  border-radius: 15px;
}
.patron-panel-note i {
  color: #d39b25;
  font-size: 18px;
}
.patron-panel-note p {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.7;
}
.journal-page-chief-patron .journal-action-panel > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 15px 18px;
  color: #20334d;
  border-top: 1px solid #e8eef5;
  transition: color 0.2s ease, background 0.2s ease;
}
.journal-page-chief-patron .journal-action-panel > a:hover {
  color: #075aa8;
  background: #f2f8fd;
}
.journal-page-chief-patron .journal-action-panel > a > i:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #075aa8;
  background: #eaf5fd;
  border-radius: 11px;
}
.journal-page-chief-patron .journal-action-panel > a > i:last-child {
  color: #a7b7ca;
  font-size: 10px;
}
.journal-page-chief-patron .journal-action-panel span b,
.journal-page-chief-patron .journal-action-panel span small {
  display: block;
}
.journal-page-chief-patron .journal-action-panel span b {
  font-size: 11px;
}
.journal-page-chief-patron .journal-action-panel span small {
  margin-top: 2px;
  color: #748399;
  font-size: 9px;
}
@media (max-width: 980px) {
  .journal-page-chief-patron .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-chief-patron .journal-action-panel {
    position: static;
  }
}
@media (max-width: 680px) {
  .journal-page-chief-patron .journal-patron-hero {
    padding: 56px 0 50px;
  }
  .journal-page-chief-patron .journal-about-section {
    padding: 44px 0 58px;
  }
  .patron-profile-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 26px 22px;
    text-align: center;
  }
  .patron-monogram {
    width: 155px;
  }
  .patron-expertise {
    justify-content: center;
  }
  .patron-achievements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .patron-achievements.patron-credentials {
    grid-template-columns: 1fr;
  }
  .patron-achievements > div:nth-child(2) {
    border-right: 0;
  }
  .patron-achievements > div:nth-child(-n + 2) {
    border-bottom: 1px solid #e5edf6;
  }
  .patron-credentials > div {
    border-right: 0;
    border-bottom: 1px solid #e5edf6;
  }
  .patron-credentials > div:last-child {
    border-bottom: 0;
  }
  .journal-page-chief-patron .journal-managed-content {
    padding: 22px 20px;
  }
  .journal-page-chief-patron .patron-contact-content {
    padding: 14px;
  }
}
@media (max-width: 420px) {
  .journal-page-chief-patron .journal-patron-hero h1 {
    font-size: 36px;
  }
  .patron-profile-copy h3 {
    font-size: 29px;
  }
  .patron-expertise span {
    width: 100%;
    justify-content: center;
  }
  .patron-contact-item {
    grid-template-columns: 1fr;
  }
}

/* Call for Papers */
.journal-page-call-for-papers .journal-call-hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 85% 17%, rgba(244, 192, 78, 0.3), transparent 27%),
    radial-gradient(circle at 73% 110%, rgba(9, 181, 214, 0.25), transparent 34%),
    linear-gradient(135deg, #031631 0%, #07569d 70%, #0981bf 100%);
}
.journal-page-call-for-papers .journal-call-hero::before {
  content: "\03C0  \2211  \222B  dx";
  right: 5%;
  color: rgba(255, 255, 255, 0.085);
}
.call-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 8px 13px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}
.journal-page-call-for-papers .journal-about-section {
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 0 8%, rgba(9, 181, 214, 0.08), transparent 24%),
    #f4f7fb;
}
.journal-page-call-for-papers .journal-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  align-items: start;
  gap: 30px;
}
.journal-page-call-for-papers .journal-about-main {
  min-width: 0;
}
.journal-page-call-for-papers .journal-about-main > .journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075aa8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
.journal-page-call-for-papers .journal-about-main > h2 {
  margin: 9px 0 26px;
  color: #031631;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}
.call-introduction {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 110%, rgba(9, 181, 214, 0.3), transparent 34%),
    linear-gradient(135deg, #031631, #075aa8);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(4, 26, 61, 0.2);
}
.call-introduction::after {
  content: "\270E";
  position: absolute;
  right: 18px;
  bottom: -50px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 170px;
  line-height: 1;
  transform: rotate(-15deg);
  pointer-events: none;
}
.call-introduction > div,
.call-introduction > a {
  position: relative;
  z-index: 1;
}
.call-introduction > div > span {
  color: #ffe08a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}
.call-introduction h3 {
  max-width: 630px;
  margin: 7px 0 8px;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.25;
}
.call-introduction p {
  max-width: 650px;
  margin: 0;
  color: #d9e9f8;
  font-size: 12px;
  line-height: 1.75;
}
.call-introduction > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 16px;
  color: #031631;
  background: linear-gradient(135deg, #ffe08a, #f4c04e);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(244, 192, 78, 0.24);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-introduction > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 192, 78, 0.3);
}
.call-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 27px;
}
.call-highlights > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 15px 13px;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(4, 26, 61, 0.06);
}
.call-highlights i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  color: #075aa8;
  background: #eaf5fd;
  border-radius: 11px;
}
.call-highlights b,
.call-highlights small {
  display: block;
}
.call-highlights b {
  color: #102b4c;
  font-size: 10px;
  line-height: 1.35;
}
.call-highlights small {
  margin-top: 2px;
  color: #748399;
  font-size: 8px;
  line-height: 1.4;
}
.call-detail-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.call-detail-heading > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075aa8, #09b5d6);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(7, 90, 168, 0.2);
}
.call-detail-heading small,
.call-detail-heading h3 {
  display: block;
}
.call-detail-heading small {
  color: #0872b8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.85px;
}
.call-detail-heading h3 {
  margin: 2px 0 0;
  color: #031631;
  font-size: 20px;
}
.journal-page-call-for-papers .journal-managed-content {
  padding: 30px;
  color: #35465c;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(4, 26, 61, 0.075);
}
.journal-page-call-for-papers .journal-managed-content :is(p, p span, p strong, li, li span, li strong, div) {
  color: inherit !important;
  font-family: "Poppins", sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: normal !important;
  text-align: left !important;
}
.journal-page-call-for-papers .journal-managed-content > p {
  margin: 0;
  font-size: 12px !important;
  line-height: 1.85 !important;
}
.journal-page-call-for-papers .journal-managed-content > p + p {
  margin-top: 16px;
}
.journal-page-call-for-papers .journal-managed-content > p:first-child {
  margin-bottom: 3px;
  color: #075aa8 !important;
  font-size: 13px !important;
  font-weight: 800;
}
.journal-page-call-for-papers .journal-managed-content strong {
  color: #102b4c !important;
  font-weight: 800 !important;
}
.journal-page-call-for-papers .journal-managed-content a {
  color: #075aa8 !important;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(7, 90, 168, 0.28);
  text-underline-offset: 3px;
}
.journal-page-call-for-papers .journal-managed-content a:hover {
  color: #079bc5 !important;
}
.journal-page-call-for-papers .journal-managed-content > p:nth-of-type(5) {
  position: relative;
  margin-top: 24px;
  padding: 19px 18px 5px 55px;
  background: #f3f8fd;
  border: 1px solid #deebf6;
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
}
.journal-page-call-for-papers .journal-managed-content > p:nth-of-type(5)::before {
  content: "\f3c5";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #075aa8;
  border-radius: 8px;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
}
.journal-page-call-for-papers .journal-managed-content > p:nth-of-type(n + 6):nth-of-type(-n + 9) {
  margin-top: 0;
  padding: 4px 18px 4px 55px;
  background: #f3f8fd;
  border-right: 1px solid #deebf6;
  border-left: 1px solid #deebf6;
}
.journal-page-call-for-papers .journal-managed-content > p:nth-of-type(9) {
  padding-bottom: 18px;
  border-bottom: 1px solid #deebf6;
  border-radius: 0 0 15px 15px;
}
.journal-page-call-for-papers .journal-managed-content > p:nth-of-type(10) {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #e5edf5;
}
.journal-page-call-for-papers .journal-managed-content ol {
  margin: 14px 0 0;
  padding: 17px 20px 17px 42px;
  background: #f7f9fc;
  border: 1px solid #e3eaf3;
  border-radius: 14px;
}
.journal-page-call-for-papers .journal-managed-content li {
  padding-left: 4px;
  color: #42536a !important;
  font-size: 11px !important;
  line-height: 1.75 !important;
}
.journal-page-call-for-papers .journal-managed-content li + li {
  margin-top: 8px;
}
.journal-page-call-for-papers .journal-managed-content li::marker {
  color: #075aa8;
  font-weight: 900;
}
.journal-page-call-for-papers .journal-managed-content .gmail_default {
  position: relative;
  margin-top: 20px;
  padding: 20px 20px 20px 58px;
  color: #4d452b !important;
  background: #fffaf0;
  border: 1px solid #eadcae;
  border-radius: 15px;
}
.journal-page-call-for-papers .journal-managed-content .gmail_default::before {
  content: "\f05a";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #725000;
  background: #ffe08a;
  border-radius: 8px;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}
.journal-page-call-for-papers .journal-managed-content .gmail_default p {
  margin: 0;
  color: inherit !important;
  font-size: 11px !important;
  line-height: 1.8 !important;
}
.journal-page-call-for-papers .journal-action-panel {
  position: sticky;
  top: 22px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 22px;
  box-shadow: 0 17px 42px rgba(4, 26, 61, 0.1);
}
.journal-page-call-for-papers .journal-action-panel h3 {
  margin: 0;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #031631, #075aa8);
  font-size: 17px;
}
.call-panel-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  margin: 16px;
  padding: 16px;
  color: #31465f;
  background: linear-gradient(145deg, #fffaf0, #f5fbff);
  border: 1px solid #eadfbf;
  border-radius: 15px;
}
.call-panel-note > i {
  margin-top: 2px;
  color: #d49b20;
  font-size: 18px;
}
.call-panel-note b,
.call-panel-note small {
  display: block;
}
.call-panel-note b {
  color: #102b4c;
  font-size: 11px;
}
.call-panel-note small {
  margin-top: 4px;
  color: #65758b;
  font-size: 9px;
  line-height: 1.65;
}
.journal-page-call-for-papers .journal-action-panel > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 15px 18px;
  color: #20334d;
  border-top: 1px solid #e8eef5;
  transition: color 0.2s ease, background 0.2s ease;
}
.journal-page-call-for-papers .journal-action-panel > a:hover {
  color: #075aa8;
  background: #f2f8fd;
}
.journal-page-call-for-papers .journal-action-panel > a > i:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #075aa8;
  background: #eaf5fd;
  border-radius: 11px;
}
.journal-page-call-for-papers .journal-action-panel > a > i:last-child {
  color: #a7b7ca;
  font-size: 10px;
}
.journal-page-call-for-papers .journal-action-panel span b,
.journal-page-call-for-papers .journal-action-panel span small {
  display: block;
}
.journal-page-call-for-papers .journal-action-panel span b {
  font-size: 11px;
}
.journal-page-call-for-papers .journal-action-panel span small {
  margin-top: 2px;
  color: #748399;
  font-size: 9px;
}
.journal-page-call-for-papers .journal-action-panel > a.call-submit-action {
  color: #fff;
  background: linear-gradient(135deg, #075aa8, #079bc5);
  border-top: 0;
}
.journal-page-call-for-papers .journal-action-panel > a.call-submit-action:hover {
  color: #fff;
  background: linear-gradient(135deg, #064b8b, #078bad);
}
.journal-page-call-for-papers .journal-action-panel > a.call-submit-action > i {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.journal-page-call-for-papers .journal-action-panel > a.call-submit-action span small {
  color: #d9eff8;
}
@media (max-width: 1080px) {
  .call-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .journal-page-call-for-papers .journal-about-grid {
    grid-template-columns: 1fr;
  }
  .journal-page-call-for-papers .journal-action-panel {
    position: static;
  }
}
@media (max-width: 680px) {
  .journal-page-call-for-papers .journal-call-hero {
    padding: 56px 0 50px;
  }
  .journal-page-call-for-papers .journal-about-section {
    padding: 44px 0 58px;
  }
  .call-introduction {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .call-introduction > a {
    width: 100%;
  }
  .journal-page-call-for-papers .journal-managed-content {
    padding: 22px 20px;
  }
}
@media (max-width: 480px) {
  .journal-page-call-for-papers .journal-call-hero h1 {
    font-size: 36px;
  }
  .call-highlights {
    grid-template-columns: 1fr;
  }
  .call-detail-heading > div,
  .call-detail-heading h3 {
    min-width: 0;
  }
  .journal-page-call-for-papers .journal-managed-content > p:nth-of-type(5),
  .journal-page-call-for-papers .journal-managed-content > p:nth-of-type(n + 6):nth-of-type(-n + 9) {
    padding-right: 14px;
    padding-left: 14px;
  }
  .journal-page-call-for-papers .journal-managed-content > p:nth-of-type(5) {
    padding-top: 54px;
  }
  .journal-page-call-for-papers .journal-managed-content .gmail_default {
    padding: 54px 16px 17px;
  }
}

/* Secure Contact Enquiry */
.contact-enquiry-page .contact-hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 192, 78, 0.28), transparent 27%),
    radial-gradient(circle at 73% 110%, rgba(9, 181, 214, 0.24), transparent 34%),
    linear-gradient(135deg, #031631 0%, #07569d 70%, #0981bf 100%);
}
.contact-enquiry-page .contact-hero::before {
  content: "\2709  \2192  \2211  \03C0";
  color: rgba(255, 255, 255, 0.085);
}
.contact-enquiry-page .contact-hero::after {
  content: "CONTACT";
}
.contact-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 8px 13px;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}
.contact-enquiry-page .contact-hero .breadcrumb a {
  color: #ffe08a;
}
.contact-section {
  padding: 70px 0 82px;
  background:
    radial-gradient(circle at 0 10%, rgba(9, 181, 214, 0.09), transparent 24%),
    #f4f7fb;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 34px;
}
.contact-information {
  position: sticky;
  top: 24px;
  padding: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 105%, rgba(9, 181, 214, 0.29), transparent 34%),
    linear-gradient(145deg, #031631, #075aa8);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(4, 26, 61, 0.2);
}
.contact-information::after {
  content: "\2211";
  position: absolute;
  right: 24px;
  bottom: -32px;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 170px;
  line-height: 1;
  pointer-events: none;
}
.contact-section-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe08a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.contact-information > h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.2;
}
.contact-information > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d7e8f7;
  font-size: 12px;
  line-height: 1.75;
}
.contact-detail-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 25px;
}
.contact-detail-list > div {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.contact-detail-list > div > i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #ffe08a;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}
.contact-detail-list small,
.contact-detail-list b {
  display: block;
}
.contact-detail-list small {
  color: #9dc5e5;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.65px;
}
.contact-detail-list b {
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
}
.contact-detail-list a {
  color: #fff;
  overflow-wrap: anywhere;
}
.contact-detail-list a:hover {
  color: #ffe08a;
}
.contact-security-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px;
  color: #113558;
  background: linear-gradient(145deg, #fff8e6, #fff);
  border-radius: 14px;
}
.contact-security-note > i {
  margin-top: 2px;
  color: #c58c14;
  font-size: 17px;
}
.contact-security-note b,
.contact-security-note small {
  display: block;
}
.contact-security-note b {
  font-size: 10px;
}
.contact-security-note small {
  margin-top: 3px;
  color: #65758b;
  font-size: 8px;
  line-height: 1.55;
}
.contact-form-column {
  min-width: 0;
}
.contact-form {
  position: relative;
  margin: 0;
  padding: 30px;
  border: 1px solid #dce7f3;
  border-radius: 26px;
  box-shadow: 0 19px 48px rgba(4, 26, 61, 0.1);
}
.contact-form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}
.contact-form-heading > span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #075aa8, #09b5d6);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(7, 90, 168, 0.2);
}
.contact-form-heading small,
.contact-form-heading h2 {
  display: block;
}
.contact-form-heading small {
  color: #0872b8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.85px;
}
.contact-form-heading h2 {
  margin: 2px 0 0;
  color: #031631;
  font-size: 25px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: block;
  min-width: 0;
}
.contact-form label > span:first-child:not(.contact-input-wrap) {
  display: block;
  margin-bottom: 7px;
  color: #233a57;
  font-size: 9px;
  font-weight: 800;
}
.contact-form label em {
  color: #c73535;
  font-style: normal;
}
.contact-input-wrap {
  position: relative;
  display: block;
}
.contact-input-wrap > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #7f96ad;
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-input-wrap > .fa-message {
  top: 18px;
  transform: none;
}
.contact-form .contact-input-wrap input,
.contact-form .contact-input-wrap textarea {
  width: 100%;
  margin: 0;
  padding: 13px 14px 13px 40px;
  color: #20334d;
  background: #f7f9fc;
  border: 1px solid #dce6f0;
  border-radius: 12px;
  outline: 0;
  font: inherit;
  font-size: 11px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .contact-input-wrap textarea {
  min-height: 138px;
  resize: vertical;
  line-height: 1.65;
}
.contact-form .contact-input-wrap input:focus,
.contact-form .contact-input-wrap textarea:focus {
  background: #fff;
  border-color: #079bc5;
  box-shadow: 0 0 0 4px rgba(9, 181, 214, 0.11);
}
.contact-form .contact-input-wrap:focus-within > i {
  color: #075aa8;
}
.contact-message-field {
  margin-top: 16px;
}
.contact-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(145deg, #f1f8fd, #fffaf0);
  border: 1px solid #dce7ee;
  border-radius: 15px;
}
.contact-captcha-copy {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}
.contact-captcha-copy > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #075aa8;
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 11px;
}
.contact-captcha-copy b,
.contact-captcha-copy small {
  display: block;
}
.contact-captcha-copy b {
  color: #183551;
  font-size: 10px;
}
.contact-captcha-copy small {
  margin-top: 2px;
  color: #708198;
  font-size: 8px;
  line-height: 1.5;
}
.contact-captcha > label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-captcha .captcha-question {
  margin: 0;
  color: #075aa8;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}
.contact-form .contact-captcha input {
  width: 65px;
  height: 43px;
  margin: 0;
  padding: 8px;
  color: #102b4c;
  background: #fff;
  border: 1px solid #cddbea;
  border-radius: 10px;
  outline: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
.contact-form .contact-captcha input:focus {
  border-color: #079bc5;
  box-shadow: 0 0 0 4px rgba(9, 181, 214, 0.11);
}
.contact-submit {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}
.contact-privacy {
  margin: 11px 0 0;
  color: #748399;
  font-size: 8px;
  text-align: center;
}
.contact-privacy i {
  margin-right: 4px;
  color: #569168;
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 17px 19px;
  border: 1px solid;
  border-radius: 15px;
  font-size: 10px;
  line-height: 1.6;
}
.contact-alert > i {
  margin-top: 2px;
  font-size: 17px;
}
.contact-alert b {
  display: block;
}
.contact-alert ul {
  margin: 7px 0 0;
  padding-left: 18px;
}
.contact-alert-success {
  color: #245c35;
  background: #eef9f1;
  border-color: #bfe3c8;
}
.contact-alert-warning {
  color: #6a500e;
  background: #fff9e8;
  border-color: #ead79b;
}
.contact-alert-danger {
  color: #792c34;
  background: #fff1f2;
  border-color: #efc3c7;
}
@media (max-width: 940px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-information {
    position: static;
  }
}
@media (max-width: 620px) {
  .contact-enquiry-page .contact-hero {
    padding: 56px 0 50px;
  }
  .contact-section {
    padding: 44px 0 58px;
  }
  .contact-information,
  .contact-form {
    padding: 24px 21px;
    border-radius: 21px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-captcha {
    grid-template-columns: 1fr;
  }
  .contact-captcha > label {
    justify-content: space-between;
  }
}
@media (max-width: 420px) {
  .contact-enquiry-page .contact-hero h1 {
    font-size: 36px;
  }
  .contact-detail-list > div {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }
  .contact-detail-list > div > i {
    width: 38px;
    height: 38px;
  }
}
