/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color: #fff;
  --primary-color: #ffc107;
  --section-bg-color: #f9f9f9;
  --dark-color: #000;
  --grey-color: #fcfeff;
  --text-secondary-white-color: rgba(255, 255, 255, 0.98);
  --title-color: #565758;
  --p-color: #717275;

  --body-font-family: 'Noto Sans JP', sans-serif;

  --h1-font-size: 72px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --copyright-text-font-size: 14px;
  --custom-link-font-size: 12px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

/*---------------------------------------
  BASE
-----------------------------------------*/
html, body { height: 100%; }

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
}
h1, h2 { font-weight: var(--font-weight-black); }

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p,
li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
  line-height: 1.6; /* keeps lists readable */
}

b, strong { font-weight: var(--font-weight-bold); }
.text-secondary-white-color { color: var(--text-secondary-white-color); }

a {
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s;
}
a:hover { color: var(--primary-color); }

button { transition: all 0.3s; }

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}


/*---------------------------------------
  LISTS (UL & OL) - theme consistent
-----------------------------------------*/
ul, ol {
  /*margin-left: 1.5rem;           !* space from container edge *!*/
  /*padding-left: 1.2rem;          !* space for bullets/numbers *!*/
  color: var(--p-color);          /* match paragraph text color */
  font-size: var(--p-font-size);  /* match body font size */
  font-weight: var(--font-weight-light);
  line-height: 1.6;               /* keeps lists readable */
}

ul li, ol li {
  margin-bottom: 0.3rem;          /* spacing between items */
}

ul ul, ol ol, ul ol, ol ul {
  margin-left: 1rem;              /* nested list indentation */
  padding-left: 1rem;
}

ul li::marker, ol li::marker {
  color: var(--primary-color);    /* bullets/numbers theme color */
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  LINKS
-----------------------------------------*/
.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.custom-links { max-width: 230px; }

.custom-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}
.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  background: currentColor;
  transition: width .6s cubic-bezier(.25,.8,.25,1);
}
.custom-link:hover,
.custom-link:hover::after { color: var(--white-color); }
.custom-link:hover::after { width: 100%; left: 0; }

/*---------------------------------------
  VIDEO & OVERLAY
-----------------------------------------*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}
.custom-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.overlay {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  inset: 0;
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
  z-index: 9;
  inset-inline: 0;
  padding: 15px 0;
}
.navbar-brand {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}
.navbar-expand-lg .navbar-nav .nav-link { padding: 0 15px; }

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  transition: color 0.3s ease;
  position: relative;
}
/*.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}*/

/* Arrow effect for all links except account link */
.navbar-nav .nav-link:not(.account-link)::after {
    content: "\f140";
    font-family: bootstrap-icons;
    margin-left: 10px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

/*.navbar-nav .nav-link:not(.account-link):hover::after,
.navbar-nav .nav-link:not(.account-link).active::after {
    opacity: 1;
    transform: translateY(0);
}*/


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--dark-color); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: translateY(0);
}
.nav-link:focus { color: var(--p-color); }

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 30px;
  height: 35px;
  cursor: pointer;
  background: none;
}
.navbar-toggler:focus { outline: none; box-shadow: none; }

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  position: relative;
  display: block;
  transition: background 0.3s ease;
}
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
}
.navbar-toggler .navbar-toggler-icon::before { top: -8px; }
.navbar-toggler .navbar-toggler-icon::after { top: 8px; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background: transparent; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero { position: relative; overflow: hidden; }
.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}
@media (min-width: 992px) {
  .hero { height: 100vh; }
  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }
  .sticky-wrapper { position: relative; bottom: 76px; }
}

/*---------------------------------------
  ABOUT & TEAM
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}
.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px;
}

/*---------------------------------------
  CAROUSEL
-----------------------------------------*/
.carousel-control-next,
.carousel-control-prev { bottom: 2.5rem; top: auto; }
.carousel-control-prev { left: auto; right: 4rem; }
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background: var(--dark-color);
  background-size: 50%;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO
-----------------------------------------*/
.portfolio-thumb { position: relative; overflow: hidden; }
.portfolio-info { margin: 20px; }

/*---------------------------------------
  NEWS & EVENTS
-----------------------------------------*/
.news,
.related-news { background: var(--section-bg-color); }

.news-thumb { position: relative; }
.news-category {
  background: var(--white-color);
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 12px;
  z-index: 9;
}
.news-text-info { margin: 0 20px; }
.news-title { margin: 15px 0; }

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}
.news-title-link:hover { color: var(--dark-color); }

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}
.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding-bottom: 4px;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}
.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  right: 0;
  position: absolute;
  background: var(--primary-color);
  transition: width .6s cubic-bezier(.25,.8,.25,1);
}
.news-image-hover:hover::after { width: 100%; left: 0; }

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image { transform: scale(1.02); }

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}
.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span { color: rgba(255, 255, 255, 0.65); }

/*---------------------------------------
  SECTIONS
-----------------------------------------*/
.section-padding { padding: 7rem 0; }

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-info { padding: 40px; }

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding: 12px 0;
}
.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}
.contact-form button[type='submit']:hover { background: var(--primary-color); }
.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}
.map-iframe { display: block; filter: grayscale(100); }

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding: 4.5rem 0 2.5rem;
}
.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}
.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover { color: var(--white-color); }

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICONS
-----------------------------------------*/
.social-icon { margin: 0; padding: 0; }
.social-icon li { display: inline-block; list-style: none; }
.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  margin: 4px 15px 4px 0;
  display: inline-block;
}
.social-icon-link:hover { color: var(--primary-color); }

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media (min-width: 1600px) {
  .news-two-column { min-height: 232.5px; }
}
@media (max-width: 991px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 32px; }
  h4 { font-size: 28px; }
  h5 { font-size: 20px; }
  h6 { font-size: 18px; }

  .navbar { padding: 10px 0; }
  .section-padding { padding: 6rem 0; }
  .team-thumb { left: 0; width: auto; }

  .news-two-column { height: auto !important; min-height: inherit; }
  .news .col-12 .news-two-column:first-child { margin-bottom: 38px; }
}
@media (max-width: 767px) {
  .news-detail-title { font-size: 36px; }
}
@media (max-width: 360px) {
  h1 { font-size: 32px; }
  .heroText p { font-size: 14px; }
}
@media (max-width: 359px) {
  .news-detail-title { font-size: 22px; }
}

article ul{
  margin-left: 1.5rem;   /* standard left padding for bullets */
  margin-bottom: .3rem;    /* spacing below list */
}


/*--------------------------------------- PAGINATION (slimmer buttons, theme-consistent) -----------------------------------------*/
.pagination { justify-content: center; margin-top: 1.5rem; } .pagination .page-link { color: var(--dark-color); background: var(--white-color); border: 1px solid var(--dark-color); padding: 6px 12px; /* smaller padding */ margin: 0 3px; border-radius: 50px; /* pill shape */ font-size: 14px; /* slightly smaller text */ font-weight: var(--font-weight-bold); transition: all 0.3s ease-in-out; } .pagination .page-link:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--white-color); } .pagination .page-item.active .page-link { background: var(--dark-color); border-color: var(--dark-color); color: var(--white-color); } .pagination .page-item.disabled .page-link { background: var(--section-bg-color); border-color: var(--p-color); color: var(--p-color); pointer-events: none; }

/*---------------------------------------
KIU JOURNALS UNIFIED HOME
-----------------------------------------*/
:root {
  --wg-primary: #ffc107;
  --wg-primary-dark: #e0a800;
  --wg-dark: #111111;
  --wg-dark-soft: #1f1f1f;
  --wg-text: #5f6368;
  --wg-heading: #161616;
  --wg-bg-soft: #f7f7f8;
  --wg-bg-muted: #fbfbfc;
  --wg-border: rgba(17, 17, 17, 0.08);
  --wg-shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.06);
  --wg-shadow-md: 0 20px 50px rgba(17, 17, 17, 0.10);
  --wg-radius-lg: 1.25rem;
  --wg-radius-xl: 1.75rem;
}

body {
  color: var(--wg-text);
  background: #ffffff;
}

.wg-home {
  overflow-x: clip;
}

.wg-section {
  padding: 6rem 0;
}

.wg-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.14);
  color: #7a5a00;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.wg-section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--wg-heading);
  margin-bottom: 1.2rem;
}

.wg-section-subtitle,
.wg-section-text,
.wg-feature-text,
.wg-news-meta,
.wg-news-body p,
.wg-contact-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--wg-text);
}

.wg-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius-xl);
  box-shadow: var(--wg-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.wg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wg-shadow-md);
  border-color: rgba(255, 193, 7, 0.25);
}

.wg-btn-primary,
.wg-btn-outline-light {
  border-radius: 999px;
  padding: .92rem 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .25s ease;
}

.wg-btn-primary {
  background: var(--wg-primary);
  color: var(--wg-dark);
  border: 1px solid var(--wg-primary);
}

.wg-btn-primary:hover {
  background: var(--wg-primary-dark);
  border-color: var(--wg-primary-dark);
  color: var(--wg-dark);
  transform: translateY(-2px);
}

.wg-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
}

.wg-btn-outline-light:hover {
  background: #fff;
  color: var(--wg-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

.wg-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 700;
  color: var(--wg-heading);
}

.wg-inline-link:hover {
  color: var(--wg-primary-dark);
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.wg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.wg-hero-media,
.wg-hero-image,
.wg-hero-overlay {
  position: absolute;
  inset: 0;
}

.wg-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-hero-overlay {
  background:
          linear-gradient(135deg, rgba(17,17,17,.82) 0%, rgba(17,17,17,.60) 45%, rgba(17,17,17,.45) 100%),
          linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.10));
}

.wg-hero .container {
  position: relative;
  z-index: 2;
}

.wg-hero-content {
  max-width: 760px;
  padding: 7rem 0 4rem;
}

.wg-hero-title {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: clamp(3rem, 7vw, 8.7rem);
  line-height: .95;
  letter-spacing: -.03em;
}

.wg-hero-title span {
  display: block;
  color: var(--wg-primary);
}

.wg-hero-text {
  max-width: 640px;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.wg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

/*---------------------------------------
  INTRO FEATURES
-----------------------------------------*/
.wg-home-intro {
  position: relative;
  margin-top: -4.5rem;
  z-index: 4;
  padding-bottom: 2rem;
}

.wg-feature-card {
  padding: 2rem 1.5rem;
  background:
          linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,248,249,.98));
}

.wg-feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(255, 193, 7, 0.14);
  color: var(--wg-heading);
  font-size: 2rem;
}

.wg-feature-title {
  color: var(--wg-heading);
  font-size: 1.2rem;
  margin-bottom: .85rem;
}

/*---------------------------------------
  ABOUT
-----------------------------------------*/
.wg-about-section {
  background:
          radial-gradient(circle at top right, rgba(255,193,7,.10), transparent 30%),
          var(--wg-bg-muted);
}

.wg-about-copy .wg-section-text p:last-child {
  margin-bottom: 0;
}

.wg-about-panel {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: var(--wg-radius-xl);
  background:
          radial-gradient(circle at 14% 14%, rgba(255, 193, 7, .26), transparent 28%),
          radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .18), transparent 24%),
          linear-gradient(145deg, #181714 0%, #24211a 54%, #111111 100%);
  box-shadow: 0 28px 70px rgba(17, 17, 17, .22);
  display: grid;
  gap: 1.1rem;
  overflow: hidden;
  isolation: isolate;
}

.wg-about-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--wg-radius-xl) - 1px);
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
  z-index: -1;
}

.wg-about-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -86px;
  bottom: -92px;
  border-radius: 50%;
  border: 34px solid rgba(255, 193, 7, .13);
  z-index: -1;
}

.wg-about-panel-header {
  padding: .35rem .35rem .75rem;
}

.wg-about-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .9rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, .14);
  color: #ffd464;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wg-about-panel-kicker::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--wg-primary);
  box-shadow: 0 0 0 6px rgba(255, 193, 7, .14);
}

.wg-about-panel-header h3 {
  max-width: 430px;
  margin-bottom: .8rem;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.wg-about-panel-header p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.wg-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.wg-about-stat {
  min-height: 170px;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.wg-about-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 193, 7, .38);
}

.wg-about-stat-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, .16);
  color: var(--wg-primary);
  font-size: 1.2rem;
}

.wg-about-stat-number {
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.wg-about-stat-label {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: .98rem;
  line-height: 1.6;
}

.wg-about-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
  margin-top: .1rem;
  padding: .75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .09);
}

.wg-about-process span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: .55rem .5rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: rgba(255, 255, 255, .06);
}

.wg-about-process span:last-child {
  color: #1b170b;
  background: var(--wg-primary);
}

/*---------------------------------------
  NEWS
-----------------------------------------*/
.wg-news-section {
  position: relative;
  background:
          radial-gradient(circle at 8% 12%, rgba(255, 193, 7, .13), transparent 28%),
          radial-gradient(circle at 88% 18%, rgba(17, 17, 17, .06), transparent 30%),
          linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  overflow: hidden;
}

.wg-news-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.wg-news-heading > div {
  max-width: 760px;
}

.wg-news-heading-action {
  flex: 0 0 auto;
}

.wg-news-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background:
          linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,1));
}

.wg-news-image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.wg-news-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}

.wg-news-card:hover .wg-news-image {
  transform: scale(1.04);
}

.wg-news-category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, .84);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wg-news-body {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 1.35rem 1.35rem 1.5rem;
}

.wg-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  margin-bottom: .9rem;
  font-size: .82rem;
  font-weight: 700;
}

.wg-news-meta i {
  color: var(--wg-primary);
  margin-right: .35rem;
}

.wg-news-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}

.wg-news-title a {
  color: var(--wg-heading);
}

.wg-news-title a:hover {
  color: var(--wg-primary-dark);
}

.wg-news-excerpt {
  margin: .8rem 0 1.2rem;
  color: var(--wg-text);
  font-size: .95rem;
  line-height: 1.7;
}

.wg-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  width: fit-content;
  margin-top: auto;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, .15);
  color: var(--wg-heading);
  font-size: .92rem;
  font-weight: 800;
}

.wg-news-readmore:hover {
  background: var(--wg-primary);
  color: var(--wg-dark);
  transform: translateX(2px);
}

.wg-news-card-featured {
  border-color: rgba(255, 193, 7, .34);
}

.wg-news-empty {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 260px;
  padding: 2.2rem;
  border: 1px solid rgba(0, 107, 63, .18);
  border-radius: 8px;
  background:
          linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 251, 248, .98)),
          radial-gradient(circle at 12% 20%, rgba(0, 107, 63, .12), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 75, 45, .10);
  overflow: hidden;
}

.wg-news-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
          linear-gradient(90deg, var(--wg-green) 0 8px, transparent 8px),
          radial-gradient(circle at top right, rgba(242, 183, 5, .20), transparent 34%),
          linear-gradient(135deg, rgba(0, 107, 63, .06), rgba(255, 255, 255, 0));
}

.wg-news-empty-orbit {
  position: absolute;
  inset: auto 2rem 1.5rem auto;
  width: 150px;
  height: 150px;
  opacity: .42;
  pointer-events: none;
}

.wg-news-empty-orbit span {
  position: absolute;
  border: 1px solid rgba(0, 107, 63, .28);
  border-radius: 999px;
}

.wg-news-empty-orbit span:nth-child(1) {
  inset: 0;
}

.wg-news-empty-orbit span:nth-child(2) {
  inset: 25px;
}

.wg-news-empty-orbit span:nth-child(3) {
  inset: 52px;
  border-color: rgba(242, 183, 5, .46);
  background: rgba(242, 183, 5, .18);
}

.wg-news-empty-icon {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
          linear-gradient(135deg, rgba(0, 107, 63, .14), rgba(242, 183, 5, .16));
  color: var(--wg-green);
  font-size: 2.4rem;
  box-shadow: 0 18px 35px rgba(0, 75, 45, .12);
}

.wg-news-empty-copy {
  max-width: 680px;
}

.wg-news-empty-kicker {
  display: inline-flex;
  margin-bottom: .65rem;
  color: var(--wg-green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wg-news-empty h3 {
  margin: 0 0 .65rem;
  color: var(--wg-heading);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.wg-news-empty p {
  max-width: 620px;
  margin: 0;
  color: var(--wg-text);
  font-size: 1rem;
  line-height: 1.65;
}

.wg-news-empty-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}

.wg-news-empty-link {
  border-radius: 999px;
  padding: .92rem 1.5rem;
  background: rgba(0, 107, 63, .08);
  border: 1px solid rgba(0, 107, 63, .22);
  color: var(--wg-green);
  font-weight: 800;
}

.wg-news-empty-link:hover {
  border-color: var(--wg-primary);
  background: var(--wg-primary);
  color: var(--wg-ink);
}

.wg-news-archive-section {
  background:
          radial-gradient(circle at top left, rgba(255, 193, 7, .11), transparent 28%),
          linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.wg-news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin: -1rem 0 2.5rem;
}

.wg-news-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid rgba(17, 17, 17, .10);
  border-radius: 999px;
  background: #fff;
  color: var(--wg-heading);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .04);
}

.wg-news-filter a:hover,
.wg-news-filter a.active {
  background: var(--wg-dark);
  border-color: var(--wg-dark);
  color: #fff;
}

.wg-news-featured-archive {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  background:
          linear-gradient(135deg, rgba(17, 17, 17, .98), rgba(33, 33, 33, .96)),
          radial-gradient(circle at top right, rgba(255, 193, 7, .22), transparent 34%);
}

.wg-news-featured-media {
  min-height: 390px;
  overflow: hidden;
}

.wg-news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.wg-news-featured-archive:hover .wg-news-featured-media img {
  transform: scale(1.04);
}

.wg-news-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.wg-news-category-inline {
  width: fit-content;
  margin-bottom: 1rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, .16);
  color: var(--wg-primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wg-news-featured-body h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.wg-news-featured-body h3 a {
  color: #fff;
}

.wg-news-featured-body h3 a:hover {
  color: var(--wg-primary);
}

.wg-news-featured-body p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.8;
}

.wg-news-detail-hero .wg-page-hero-overlay {
  background:
          linear-gradient(135deg, rgba(17,17,17,.88), rgba(17,17,17,.62)),
          linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.18));
}

.wg-news-detail-section {
  background:
          radial-gradient(circle at 90% 10%, rgba(255, 193, 7, .10), transparent 30%),
          #fff;
}

.wg-news-detail-card {
  overflow: hidden;
}

.wg-news-detail-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.wg-news-detail-body {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.wg-news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-bottom: 1.25rem;
  color: var(--wg-text);
  font-size: .95rem;
  font-weight: 800;
}

.wg-news-detail-meta i {
  color: var(--wg-primary-dark);
  margin-right: .25rem;
}

.wg-news-detail-content p,
.wg-news-detail-content li {
  color: var(--wg-text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.wg-news-side-card {
  padding: 1.5rem;
}

.wg-news-side-card p {
  color: var(--wg-text);
  font-size: .95rem;
  line-height: 1.75;
}

.wg-news-related-list {
  display: grid;
  gap: 1rem;
}

.wg-news-related-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  padding: .75rem;
  border-radius: 1rem;
  background: rgba(17,17,17,.035);
}

.wg-news-related-item:hover {
  background: rgba(255, 193, 7, .14);
}

.wg-news-related-item img {
  width: 76px;
  height: 68px;
  border-radius: .8rem;
  object-fit: cover;
}

.wg-news-related-item strong {
  display: block;
  color: var(--wg-heading);
  font-size: .9rem;
  line-height: 1.35;
}

.wg-news-related-item small {
  display: block;
  color: var(--wg-text);
  font-size: .78rem;
  margin-top: .25rem;
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.wg-contact-section {
  background:
          linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.wg-contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wg-contact-details {
  display: grid;
  gap: .8rem;
  margin-top: 1.75rem;
}

.wg-contact-detail {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
  padding: .95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 14px 34px rgba(17, 17, 17, .045);
  color: var(--wg-heading);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.wg-contact-detail:hover {
  color: var(--wg-heading);
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, .5);
  box-shadow: 0 18px 42px rgba(17, 17, 17, .075);
}

.wg-contact-detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: var(--wg-primary);
  font-size: 1.1rem;
}

.wg-contact-detail strong,
.wg-contact-detail em {
  display: block;
  font-style: normal;
}

.wg-contact-detail strong {
  margin-bottom: .2rem;
  color: var(--wg-heading);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wg-contact-detail em {
  color: var(--wg-text);
  font-size: .95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.wg-contact-card {
  padding: 2rem;
}

.wg-contact-form .form-label {
  color: var(--wg-heading);
  font-size: .95rem;
  margin-bottom: .55rem;
}

.wg-contact-form .form-control {
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 1rem;
  padding: .95rem 1rem;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wg-contact-form .form-control:focus {
  border-color: rgba(255, 193, 7, .85);
  box-shadow: 0 0 0 .22rem rgba(255, 193, 7, 0.16);
}

.wg-turnstile-gate {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 1.15rem;
  background: rgba(255,255,255,.72);
}

.wg-turnstile-title {
  display: block;
  color: var(--wg-heading);
  font-size: 1.02rem;
  font-weight: 700;
}

.wg-turnstile-gate .cf-turnstile {
  min-height: 65px;
}

.wg-turnstile-hint {
  display: block;
  color: var(--wg-text);
  font-size: .86rem;
  line-height: 1.5;
}

.wg-turnstile-hint.is-success {
  color: #207a3c;
}

.wg-turnstile-hint.is-error {
  color: #b42318;
}

.wg-contact-form .btn:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.wg-contact-message {
  min-height: 1.2rem;
  color: var(--wg-text);
  font-size: .92rem;
  line-height: 1.5;
}

.wg-contact-message.is-success {
  color: #207a3c;
}

.wg-contact-message.is-error {
  color: #b42318;
}

/*---------------------------------------
  NAVBAR POLISH
-----------------------------------------*/
.navbar {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 10px 30px rgba(17,17,17,.05) !important;
}

.navbar-brand img {
  height: 54px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: .98rem;
  font-weight: 700;
  padding-inline: .52rem !important;
}

.navbar-nav .nav-link:not(.account-link)::after {
  margin-left: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--wg-heading);
}

/*---------------------------------------
  FOOTER POLISH
-----------------------------------------*/
.site-footer {
  background: linear-gradient(180deg, #111111, #1a1a1a);
}

.site-footer ul {
  padding-left: 0;
}

.site-footer li {
  list-style: none;
  margin-bottom: .5rem;
}

.site-footer a {
  color: rgba(255,255,255,.68);
}

.site-footer a:hover {
  color: var(--wg-primary);
}

.footer-small-text {
  font-size: .96rem;
  line-height: 1.8;
}

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media (max-width: 991.98px) {
  .wg-section {
    padding: 5rem 0;
  }

  .wg-about-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wg-about-stat {
    min-height: 150px;
  }

  .wg-news-heading {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .wg-news-empty {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .wg-news-empty-actions {
    justify-content: flex-start;
  }

  .wg-news-featured-archive {
    grid-template-columns: 1fr;
  }

  .wg-news-featured-media {
    min-height: 300px;
  }

  .wg-home-intro {
    margin-top: -2.5rem;
  }

  .wg-hero {
    min-height: 85vh;
  }

  .wg-hero-content {
    padding: 6.5rem 0 3rem;
  }

  .wg-news-image {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .wg-section-title {
    font-size: 2rem;
  }

  .wg-hero-title {
    font-size: 2.7rem;
  }

  .wg-hero-text {
    font-size: .98rem;
  }

  .wg-contact-card,
  .wg-about-panel {
    padding: 1.4rem;
  }

  .wg-about-stat-grid {
    grid-template-columns: 1fr;
  }

  .wg-about-stat {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: .85rem;
    align-items: center;
  }

  .wg-about-stat-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .wg-about-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 1.25rem;
  }

  .wg-news-image {
    height: 210px;
  }

  .wg-news-body {
    min-height: auto;
  }

  .wg-news-empty {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .wg-news-empty-icon {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    font-size: 2rem;
  }

  .wg-news-detail-body {
    padding: 1.4rem;
  }

  .wg-news-featured-media {
    min-height: 240px;
  }
}

@media (max-width: 575.98px) {
  .wg-hero-actions {
    flex-direction: column;
  }

  .wg-hero-actions .btn {
    width: 100%;
  }

  .wg-feature-card {
    padding: 1.5rem 1.2rem;
  }

  .wg-news-heading-action,
  .wg-news-empty-actions .btn {
    width: 100%;
  }

  .wg-news-empty-actions {
    flex-direction: column;
  }
}


/*---------------------------------------
  KIU JOURNALS FOOTER
-----------------------------------------*/
.wg-site-footer {
  position: relative;
  background:
          radial-gradient(circle at top left, rgba(255, 193, 7, 0.10), transparent 26%),
          linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 0;
  overflow: hidden;
}

.wg-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(255,255,255,0.02), transparent 30%, transparent 70%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.wg-site-footer .container {
  position: relative;
  z-index: 1;
}

.wg-footer-top {
  padding: 5rem 0 2.5rem;
}

.wg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1.25rem 0 2rem;
}

.wg-footer-brand,
.wg-footer-block {
  height: 100%;
}

.wg-footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.wg-footer-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

.wg-footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.wg-footer-text,
.wg-footer-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

.wg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wg-footer-links li {
  margin-bottom: 0.75rem;
}

.wg-footer-links li:last-child {
  margin-bottom: 0;
}

.wg-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.5;
  transition: color 0.25s ease, transform 0.25s ease;
}

.wg-footer-links a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.85);
  margin-right: 0.75rem;
  flex: 0 0 auto;
  transform: scale(0.8);
  transition: transform 0.25s ease, background 0.25s ease;
}

.wg-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.wg-footer-links a:hover::before {
  transform: scale(1);
  background: #ffc107;
}

.wg-footer-cta {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wg-footer-actions {
  margin-top: 1.15rem;
}

.wg-footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .7rem;
  margin-top: 1.15rem;
}

.wg-footer-turnstile {
  grid-column: 1 / -1;
  display: grid;
  gap: .55rem;
  padding: .8rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .06);
}

.wg-footer-turnstile .cf-turnstile {
  min-height: 65px;
}

.wg-footer-turnstile-hint {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  line-height: 1.45;
}

.wg-footer-turnstile-hint.is-success {
  color: #ffd45f;
}

.wg-footer-turnstile-hint.is-error {
  color: #ffb0a8;
}

.wg-footer-newsletter-input {
  min-height: 50px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.wg-footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.wg-footer-newsletter-input:focus {
  border-color: rgba(255, 193, 7, .65);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 0 0 .18rem rgba(255, 193, 7, .12);
}

.wg-footer-newsletter-message {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  line-height: 1.5;
  border-radius: .9rem;
  transition: all .2s ease;
}

.wg-footer-newsletter-message.is-success {
  padding: .85rem 1rem;
  color: #fff8d6;
  background: rgba(255, 193, 7, .16);
  border: 1px solid rgba(255, 193, 7, .34);
}

.wg-footer-newsletter-message.is-error {
  padding: .85rem 1rem;
  color: #ffe5e1;
  background: rgba(255, 97, 84, .16);
  border: 1px solid rgba(255, 176, 168, .32);
}

.wg-btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  background: #ffc107;
  border: 1px solid #ffc107;
  color: #111111;
  font-weight: 700;
  transition: all 0.25s ease;
}

.wg-btn-footer:hover {
  background: #e0a800;
  border-color: #e0a800;
  color: #111111;
  transform: translateY(-2px);
}

.wg-btn-footer:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.wg-footer-social-wrap {
  margin-top: 1.5rem;
}

.wg-footer-social-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.wg-footer-social {
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.wg-footer-social li {
  list-style: none;
}

.wg-footer-social .social-icon-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.wg-footer-social .social-icon-link:hover {
  background: #ffc107;
  color: #111111;
  transform: translateY(-3px);
}

.wg-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: flex-start;
}

.wg-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.wg-footer-bottom-links a:hover {
  color: #ffc107;
}

@media (min-width: 768px) {
  .wg-footer-bottom-links {
    justify-content: flex-end;
  }
}

@media (max-width: 991.98px) {
  .wg-footer-top {
    padding: 4rem 0 2.25rem;
  }

  .wg-footer-cta {
    padding: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .wg-footer-top {
    padding: 3.5rem 0 2rem;
  }

  .wg-footer-bottom {
    padding: 1.2rem 0 1.6rem;
  }

  .wg-footer-bottom-links {
    justify-content: flex-start;
  }

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

  .wg-footer-newsletter .wg-btn-footer {
    width: 100%;
  }

  .wg-footer-logo {
    max-height: 58px;
  }
}

/*---------------------------------------
  KIU JOURNALS INNER PAGES / ABOUT PAGE
-----------------------------------------*/
.wg-inner-page {
  overflow-x: clip;
}

.wg-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.wg-page-hero-sm {
  min-height: 400px;
}

.wg-page-hero-media,
.wg-page-hero-overlay,
.wg-page-hero-image,
.wg-page-hero-fallback {
  position: absolute;
  inset: 0;
}

.wg-page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-page-hero-fallback {
  background:
          radial-gradient(circle at top left, rgba(255,193,7,.14), transparent 25%),
          linear-gradient(135deg, #111111, #242424);
}

.wg-page-hero-overlay {
  background:
          linear-gradient(180deg, rgba(17,17,17,.70), rgba(17,17,17,.78)),
          linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.38));
}

.wg-page-hero .container {
  position: relative;
  z-index: 2;
}

.wg-page-hero-content {
  padding: 8rem 0 3.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.wg-page-hero-title {
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.wg-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.76);
  font-size: .96rem;
  justify-content: flex-start;
}

.wg-breadcrumb a {
  color: rgba(255,255,255,.82);
}

.wg-breadcrumb a:hover {
  color: #ffc107;
}

.wg-breadcrumb-separator {
  opacity: .55;
}

.wg-about-page-section {
  background:
          radial-gradient(circle at top right, rgba(255,193,7,.08), transparent 26%),
          #fbfbfc;
}

.wg-sticky-media {
  position: sticky;
  top: 110px;
}

.wg-about-page-image-card {
  overflow: hidden;
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 20px 50px rgba(17,17,17,.08);
  margin-bottom: 1.5rem;
}

.wg-about-page-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.wg-about-side-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #171717, #262626);
  box-shadow: 0 18px 40px rgba(17,17,17,.12);
}

.wg-side-card-kicker {
  display: inline-block;
  margin-bottom: .7rem;
  color: #ffc107;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wg-side-card-title {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.35;
  margin-bottom: .85rem;
}

.wg-side-card-text {
  color: rgba(255,255,255,.76);
  font-size: .98rem;
  line-height: 1.8;
}

.wg-about-content-card {
  background: #ffffff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 1.75rem;
  box-shadow: 0 16px 44px rgba(17,17,17,.06);
  padding: 2rem;
}

.wg-mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.wg-mission-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  background:
          radial-gradient(circle at top right, rgba(255, 193, 7, .18), transparent 32%),
          #ffffff;
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 16px 42px rgba(17, 17, 17, .055);
}

.wg-mission-card-alt {
  background:
          radial-gradient(circle at bottom left, rgba(17, 17, 17, .08), transparent 34%),
          #fffdf8;
}

.wg-mission-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: var(--wg-primary);
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .14);
}

.wg-mission-card .wg-section-eyebrow {
  margin-bottom: .55rem;
}

.wg-mission-card .wg-richtext p:last-child {
  margin-bottom: 0;
}

.wg-richtext {
  color: #5f6368;
}

.wg-richtext > *:last-child {
  margin-bottom: 0;
}

.wg-richtext h1,
.wg-richtext h2,
.wg-richtext h3,
.wg-richtext h4,
.wg-richtext h5,
.wg-richtext h6 {
  color: #161616;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
}

.wg-richtext p,
.wg-richtext li {
  color: #5f6368;
  font-size: 1rem;
  line-height: 1.9;
}

.wg-richtext p {
  margin-bottom: 1.1rem;
}

.wg-richtext ul,
.wg-richtext ol {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.wg-richtext img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.wg-richtext blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.25rem;
  border-left: 4px solid #ffc107;
  background: rgba(255,193,7,.08);
  border-radius: 0 1rem 1rem 0;
}

.wg-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}

.wg-btn-outline-dark {
  border-radius: 999px;
  padding: .92rem 1.5rem;
  font-weight: 700;
  background: transparent;
  color: #161616;
  border: 1px solid rgba(17,17,17,.14);
  transition: all .25s ease;
}

.wg-btn-outline-dark:hover {
  background: #161616;
  border-color: #161616;
  color: #ffffff;
  transform: translateY(-2px);
}

.wg-share-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17,17,17,.08);
}

.wg-share-label {
  color: #161616;
  font-size: .92rem;
  font-weight: 700;
}

.wg-share-links {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.wg-share-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17,17,17,.05);
  color: #161616;
  transition: all .25s ease;
}

.wg-share-link:hover {
  background: #ffc107;
  color: #111111;
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .wg-page-hero-content {
    padding: 7rem 0 3rem;
  }

  .wg-sticky-media {
    position: static;
  }

  .wg-about-content-card {
    padding: 1.6rem;
  }

  .wg-mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .wg-page-hero {
    min-height: 340px;
  }

  .wg-page-hero-content {
    padding: 6.5rem 0 2.5rem;
  }

  .wg-page-hero-title {
    font-size: 2.2rem;
  }

  .wg-about-page-image {
    min-height: 260px;
  }

  .wg-about-content-card,
  .wg-about-side-card,
  .wg-mission-card {
    padding: 1.25rem;
  }

  .wg-mission-card {
    grid-template-columns: 1fr;
  }

  .wg-content-actions .btn {
    width: 100%;
  }
}

/*---------------------------------------
  KIU JOURNALS LISTING
-----------------------------------------*/
.wg-journals-section {
  background:
          radial-gradient(circle at top left, rgba(255,193,7,.08), transparent 24%),
          #fbfbfc;
}

.wg-richtext-lite,
.wg-richtext-lite p,
.wg-richtext-lite li {
  color: var(--wg-text);
  font-size: 1rem;
  line-height: 1.85;
}

.wg-richtext-lite > *:last-child {
  margin-bottom: 0;
}

.wg-journal-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.wg-journal-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.wg-journal-card-link:hover {
  color: inherit;
}

.wg-journal-cover-wrap {
  position: relative;
  padding: 1.1rem 1.1rem 0;
}

.wg-journal-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 1.2rem;
  background: #f3f3f3;
  box-shadow: 0 12px 30px rgba(17,17,17,.08);
}

.wg-journal-badge {
  position: absolute;
  top: 1.85rem;
  right: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(17,17,17,.82);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wg-journal-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.35rem 1.2rem 1.35rem;
}

.wg-journal-title {
  color: var(--wg-heading);
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: .8rem;
}

.wg-journal-text {
  color: var(--wg-text);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.wg-journal-action {
  margin-top: auto;
  padding-top: .35rem;
}

.wg-journals-empty {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 220px;
  padding: 2rem;
  border: 1px solid rgba(0, 107, 63, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #004b2d 0%, #006b3f 46%, #17211c 100%);
  box-shadow: 0 24px 54px rgba(0, 75, 45, .20);
}

.wg-journals-empty::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wg-primary), rgba(242, 183, 5, 0));
}

.wg-journals-empty-orbit {
  position: absolute;
  right: -68px;
  bottom: -88px;
  width: 240px;
  height: 240px;
  pointer-events: none;
}

.wg-journals-empty-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 183, 5, .24);
  border-radius: 50%;
}

.wg-journals-empty-orbit span:nth-child(2) {
  inset: 34px;
}

.wg-journals-empty-orbit span:nth-child(3) {
  inset: 72px;
  background: rgba(242, 183, 5, .10);
}

.wg-journals-empty-icon {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: var(--wg-primary);
  font-size: 2.45rem;
}

.wg-journals-empty-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.wg-journals-empty-kicker {
  display: inline-flex;
  margin-bottom: .55rem;
  color: var(--wg-primary);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wg-journals-empty h3 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: .75rem;
}

.wg-journals-empty p {
  color: rgba(255, 255, 255, .86);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.wg-journals-empty-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}

.wg-journals-empty-actions .btn {
  border-radius: 8px;
  white-space: nowrap;
}

.wg-journals-empty-actions .wg-btn-primary {
  border-color: var(--wg-primary);
  background: var(--wg-primary);
  color: var(--wg-ink);
}

.wg-journals-empty-actions .wg-btn-primary:hover,
.wg-journals-empty-actions .wg-btn-primary:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--wg-green-dark);
}

.wg-journals-empty-actions .wg-btn-outline-dark {
  border-color: rgba(255, 255, 255, .36);
  color: #ffffff;
}

.wg-journals-empty-actions .wg-btn-outline-dark:hover,
.wg-journals-empty-actions .wg-btn-outline-dark:focus {
  border-color: var(--wg-primary);
  background: var(--wg-primary);
  color: var(--wg-ink);
}

@media (max-width: 991.98px) {
  .wg-journal-cover {
    height: 340px;
  }

  .wg-journals-empty {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .wg-journals-empty-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .wg-journals-empty-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .wg-journal-cover {
    height: 320px;
  }

  .wg-journal-body {
    padding: 1.15rem 1rem 1.2rem;
  }

  .wg-journal-title {
    font-size: 1.08rem;
  }

  .wg-journals-empty {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .wg-journals-empty-actions,
  .wg-journals-empty-actions .btn {
    width: 100%;
  }

  .wg-journals-empty-actions {
    justify-content: stretch;
  }
}

/*---------------------------------------
  KIU JOURNAL DETAIL
-----------------------------------------*/
.wg-page-hero-journal {
  min-height: 460px;
}

.wg-journal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.1rem 0 1.1rem;
}

.wg-journal-hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 700;
}

.wg-journal-detail-section {
  background:
          radial-gradient(circle at top right, rgba(255,193,7,.08), transparent 26%),
          #fbfbfc;
}

.wg-sidebar-stack {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.25rem;
}

.wg-journal-side-summary {
  overflow: hidden;
}

.wg-journal-side-cover-wrap {
  padding: 1rem 1rem 0;
}

.wg-journal-side-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 1.15rem;
  background: #f3f3f3;
}

.wg-journal-side-summary-body {
  padding: 1.2rem 1.1rem 1.2rem;
}

.wg-journal-side-title {
  color: var(--wg-heading);
  font-size: 1.18rem;
  line-height: 1.45;
  margin-bottom: .45rem;
}

.wg-journal-side-code {
  color: #7a5a00;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wg-journal-side-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-bottom: 1rem;
}

.wg-journal-side-stat {
  border-radius: 1rem;
  padding: .95rem .8rem;
  background: rgba(255,193,7,.08);
  text-align: center;
}

.wg-journal-side-stat-number {
  display: block;
  color: var(--wg-heading);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .2rem;
}

.wg-journal-side-stat-label {
  display: block;
  color: var(--wg-text);
  font-size: .82rem;
  line-height: 1.4;
}

.wg-journal-side-actions {
  display: grid;
  gap: .7rem;
}

.wg-sidebar-nav-card {
  padding: 1.25rem;
}

.wg-sidebar-title {
  color: var(--wg-heading);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.wg-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.wg-sidebar-nav li {
  margin: 0;
}

.wg-sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 1rem;
  border-radius: 1rem;
  color: var(--wg-heading);
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  transition: all .25s ease;
}

.wg-sidebar-nav li a:hover {
  color: var(--wg-heading);
  border-color: rgba(255,193,7,.32);
  background: rgba(255,193,7,.06);
  transform: translateX(4px);
}

.wg-sidebar-nav li.active a {
  background: rgba(255,193,7,.14);
  border-color: rgba(255,193,7,.34);
  color: var(--wg-heading);
  font-weight: 700;
}

.wg-sidebar-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 .45rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

.wg-sidebar-back a {
  font-weight: 700;
}

.wg-journal-overview-card {
  padding: 1.5rem;
}

.wg-journal-overview-cover-wrap {
  background: #fff;
  border-radius: 1.2rem;
  padding: .5rem;
  box-shadow: 0 10px 26px rgba(17,17,17,.05);
}

.wg-journal-overview-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: .95rem;
  background: #f3f3f3;
}

.wg-journal-overview-title {
  color: var(--wg-heading);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.25;
  margin-bottom: 1.15rem;
}

.wg-journal-overview-title span {
  color: var(--wg-text);
  font-size: .85em;
  font-weight: 700;
}

.wg-journal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.wg-journal-meta-item {
  padding: 1rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid rgba(17,17,17,.06);
}

.wg-journal-meta-label {
  display: block;
  color: var(--wg-text);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.wg-journal-meta-value {
  display: block;
  color: var(--wg-heading);
  font-size: .98rem;
  line-height: 1.6;
  word-break: break-word;
}

.wg-journal-indexing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.wg-journal-indexing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(0, 107, 63, .22);
  border-radius: .5rem;
  background: rgba(0, 107, 63, .07);
  color: var(--wg-green-dark, #004b2d);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
}

.wg-content-card {
  padding: 1.8rem;
}

.wg-content-card-header {
  margin-bottom: 1.2rem;
}

.wg-content-card-title {
  color: var(--wg-heading);
  font-size: 1.45rem;
  line-height: 1.3;
  margin: .75rem 0 0;
}

@media (max-width: 1199.98px) {
  .wg-sidebar-stack {
    top: 100px;
  }
}

@media (max-width: 991.98px) {
  .wg-sidebar-stack {
    position: static;
  }

  .wg-journal-meta-grid {
    grid-template-columns: 1fr;
  }

  .wg-journal-overview-card,
  .wg-content-card {
    padding: 1.35rem;
  }

  .wg-journal-side-cover {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .wg-page-hero-journal {
    min-height: 380px;
  }

  .wg-journal-hero-meta {
    justify-content: center;
  }

  .wg-journal-side-stats {
    grid-template-columns: 1fr 1fr;
  }

  .wg-journal-overview-cover {
    height: 220px;
  }

  .wg-content-card-title {
    font-size: 1.25rem;
  }
}

.wg-sidebar-nav-compact {
  gap: .35rem;
}

.wg-sidebar-nav-compact li a {
  padding: .56rem .72rem;
  border-radius: .8rem;
  gap: .55rem;
  font-size: .87rem;
  line-height: 1.28;
  min-height: 42px;
}

.wg-sidebar-nav-compact li a span:first-child {
  flex: 1 1 auto;
}

.wg-sidebar-nav-compact li a:hover {
  transform: translateX(2px);
}

.wg-sidebar-nav-compact li.active a {
  font-weight: 700;
}

.wg-sidebar-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 .35rem;
  font-size: .66rem;
}

.wg-sidebar-nav-card {
  padding: .9rem;
}

.wg-sidebar-title {
  font-size: .94rem;
  margin-bottom: .7rem;
}

.wg-journal-profile-list {
  display: grid;
  gap: .58rem;
  margin-bottom: .9rem;
}

.wg-journal-profile-item {
  padding: .72rem .8rem;
  border-radius: .9rem;
  background: #fafafa;
  border: 1px solid rgba(17,17,17,.06);
}

.wg-journal-profile-label {
  display: block;
  color: var(--wg-text);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .22rem;
}

.wg-journal-profile-value {
  display: block;
  color: var(--wg-heading);
  font-size: .88rem;
  line-height: 1.5;
  word-break: break-word;
}

.wg-journal-profile-value a {
  color: var(--wg-heading);
}

.wg-journal-profile-value a:hover {
  color: var(--wg-primary-dark);
}


/*---------------------------------------
  KIU JOURNAL EDITIONS
-----------------------------------------*/
.wg-editions-list {
  display: grid;
  gap: 1.1rem;
}

.wg-edition-card {
  overflow: hidden;
}

.wg-edition-cover-wrap {
  height: 100%;
  min-height: 100%;
  padding: 1rem 0 1rem 1rem;
}

.wg-edition-cover {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 1.15rem;
  background: #f3f3f3;
}

.wg-edition-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
}

.wg-edition-title {
  color: var(--wg-heading);
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: .7rem;
}

.wg-edition-title span {
  color: var(--wg-text);
  font-size: .9em;
  font-weight: 600;
}

.wg-edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin-bottom: .95rem;
}

.wg-edition-meta span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: var(--wg-text);
  font-size: .9rem;
  line-height: 1.5;
}

.wg-edition-meta i {
  color: var(--wg-primary-dark);
}

.wg-edition-mini-stat {
  margin-bottom: 1rem;
  padding: .8rem .9rem;
  border-radius: .95rem;
  background: #fafafa;
  border: 1px solid rgba(17,17,17,.06);
}

.wg-edition-mini-label {
  display: block;
  color: var(--wg-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.wg-edition-mini-value {
  display: block;
  color: var(--wg-heading);
  font-size: .9rem;
  line-height: 1.55;
}

.wg-edition-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.wg-edition-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.wg-pagination-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .wg-edition-cover-wrap {
    padding: 1rem 1rem 0 1rem;
  }

  .wg-edition-body {
    padding: 1rem 1rem 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .wg-edition-cover {
    min-height: 220px;
  }

  .wg-edition-title {
    font-size: 1.06rem;
  }

  .wg-edition-meta span {
    font-size: .86rem;
  }

  .wg-edition-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/*---------------------------------------
  EDITION MEDIA (COMPACT LEFT IMAGE)
-----------------------------------------*/
.wg-edition-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.wg-edition-media {
  flex: 0 0 140px; /* fixed width */
}

.wg-edition-thumb {
  width: 100%;
  height: 120px; /* your requirement */
  object-fit: cover;
  border-radius: 1rem;
  background: #f3f3f3;
  display: block;
}

/* Content */
.wg-edition-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* Title */
.wg-edition-title {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: .5rem;
}

.wg-edition-title span {
  color: var(--wg-text);
  font-size: .9em;
  font-weight: 600;
}

/* Meta */
.wg-edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-bottom: .6rem;
}

.wg-edition-meta span {
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.wg-edition-meta i {
  color: var(--wg-primary-dark);
}

/* ISSN box (smaller now) */
.wg-edition-mini-stat {
  padding: .6rem .75rem;
  border-radius: .8rem;
  background: #fafafa;
  border: 1px solid rgba(17,17,17,.06);
  margin-bottom: .7rem;
}

.wg-edition-mini-label {
  font-size: .68rem;
  margin-bottom: .15rem;
}

.wg-edition-mini-value {
  font-size: .85rem;
}

/* Actions */
.wg-edition-actions {
  margin-top: auto;
}

.wg-edition-actions .btn {
  padding: .6rem .9rem;
  font-size: .88rem;
}

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media (max-width: 767.98px) {
  .wg-edition-item {
    flex-direction: column;
  }

  .wg-edition-media {
    width: 100%;
  }

  .wg-edition-thumb {
    height: 120px;
  }

  .wg-edition-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/*---------------------------------------
  EDITION CONTENT PAGE
-----------------------------------------*/
.wg-edition-header-card {
  padding: 1.25rem;
}

.wg-edition-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.wg-edition-header-media {
  flex: 0 0 160px;
}

.wg-edition-header-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  background: #f3f3f3;
}

.wg-edition-header-content {
  flex: 1 1 auto;
}

.wg-edition-header-title {
  color: var(--wg-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  margin-bottom: .8rem;
}

.wg-edition-header-title span {
  display: block;
  color: var(--wg-text);
  font-size: .85em;
  font-weight: 600;
  margin-top: .15rem;
}

.wg-edition-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-bottom: .9rem;
}

.wg-edition-header-meta span {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: var(--wg-text);
  font-size: .92rem;
  line-height: 1.5;
}

.wg-edition-header-meta i {
  color: var(--wg-primary-dark);
}

.wg-edition-header-description,
.wg-edition-header-description p,
.wg-edition-header-description li {
  color: var(--wg-text);
  font-size: .98rem;
  line-height: 1.8;
}

.wg-edition-header-description > *:last-child {
  margin-bottom: 0;
}

/*---------------------------------------
  ARTICLE LIST
-----------------------------------------*/
.wg-article-list {
  display: grid;
  gap: .95rem;
}

.wg-article-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(17,17,17,.08);
}

.wg-article-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.wg-article-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,193,7,.14);
  color: var(--wg-heading);
  font-size: 1rem;
  font-weight: 800;
}

.wg-article-content {
  min-width: 0;
}

.wg-article-title {
  margin: 0 0 .45rem;
  font-size: 1.04rem;
  line-height: 1.5;
}

.wg-article-title a {
  color: var(--wg-heading);
}

.wg-article-title a:hover {
  color: var(--wg-primary-dark);
}

.wg-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
}

.wg-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--wg-text);
  font-size: .9rem;
  line-height: 1.5;
}

.wg-article-meta i {
  color: var(--wg-primary-dark);
}

.wg-article-action {
  padding-top: .2rem;
}

.wg-article-action .wg-inline-link {
  white-space: nowrap;
}

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media (max-width: 991.98px) {
  .wg-edition-header-card {
    padding: 1rem;
  }

  .wg-edition-header-inner {
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .wg-edition-header-inner {
    flex-direction: column;
  }

  .wg-edition-header-media {
    flex: 0 0 auto;
    width: 100%;
  }

  .wg-edition-header-image {
    height: 240px;
  }

  .wg-article-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .wg-article-number {
    width: 44px;
    height: 44px;
    font-size: .92rem;
  }

  .wg-article-action {
    grid-column: 1 / -1;
    padding-top: 0;
    margin-left: calc(44px + 1rem);
  }
}

/*---------------------------------------
  ARTICLE PAGE
-----------------------------------------*/
.wg-article-header-block {
  display: grid;
  gap: .8rem;
}

.wg-article-page-title {
  color: var(--wg-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin: 0;
}

.wg-article-page-authors {
  color: var(--wg-text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}
.wg-article-page-affiliations {
  margin-top: .7rem;
  color: var(--wg-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.wg-article-author-list {
  display: grid;
  gap: .7rem;
  margin-top: .35rem;
}

.wg-article-author-item {
  border-left: 3px solid rgba(17, 17, 17, .12);
  padding-left: .85rem;
  color: var(--wg-muted);
  font-size: .93rem;
  line-height: 1.6;
}

.wg-article-author-item strong,
.wg-article-author-item span,
.wg-article-author-item a {
  display: block;
}

.wg-article-author-item strong {
  color: var(--wg-text);
  font-size: 1rem;
}

.wg-article-author-item a {
  color: var(--wg-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.wg-article-author-item a:hover {
  text-decoration: underline;
}

.wg-author-profile-grid {
  display: grid;
  gap: 1rem;
}

.wg-author-profile-item {
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(248, 249, 250, .7);
}

.wg-author-profile-main {
  display: grid;
  gap: .2rem;
}

.wg-author-profile-main strong {
  color: var(--wg-heading);
  font-size: 1.05rem;
  line-height: 1.35;
}

.wg-author-profile-main span {
  color: var(--wg-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.wg-author-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  margin-top: .75rem;
  color: var(--wg-text);
  font-size: .94rem;
  line-height: 1.55;
}

.wg-author-profile-meta span,
.wg-author-profile-meta a {
  position: relative;
  color: var(--wg-text);
}

.wg-author-profile-meta span:not(:last-child)::after,
.wg-author-profile-meta a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -.45rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(17, 17, 17, .24);
  transform: translateY(-50%);
}

.wg-author-profile-meta a {
  color: var(--wg-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.wg-author-profile-meta a:hover {
  text-decoration: underline;
}

.wg-author-profile-note {
  margin-top: .8rem;
  color: var(--wg-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.wg-author-profile-toggle {
  border: 0;
  padding: 0;
  margin-top: .45rem;
  color: var(--wg-primary-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.4;
}

.wg-author-profile-toggle:hover,
.wg-author-profile-toggle:focus {
  text-decoration: underline;
}

.wg-article-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
}

.wg-article-page-meta span {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: var(--wg-text);
  font-size: .92rem;
  line-height: 1.5;
}

.wg-article-page-meta i {
  color: var(--wg-primary-dark);
}

.wg-keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.wg-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.12);
  color: var(--wg-heading);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
}

.wg-pdf-viewer-wrap {
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 1rem;
  overflow: hidden;
  background: #f8f8f8;
}

.wg-pdf-viewer {
  width: 100%;
  height: 820px;
  border: 0;
  display: block;
  background: #fff;
}

.wg-document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
}

.wg-citation-box {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid rgba(17,17,17,.06);
}

.wg-citation-box p {
  color: var(--wg-text);
  font-size: .98rem;
  line-height: 1.85;
}
.wg-citation-tools {
  padding-top: 1rem;
  border-top: 1px solid rgba(17,17,17,.08);
}

.wg-citation-tools-title {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wg-text);
  margin-bottom: .85rem;
}

.wg-citation-export-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.wg-btn-light {
  border: 1px solid rgba(17,17,17,.08);
  background: #f7f4ec;
  color: var(--wg-text);
}

.wg-btn-light:hover {
  background: #fff0c2;
  color: var(--wg-text);
}

.wg-citation-style-btn.is-active {
  background: var(--wg-gold);
  border-color: var(--wg-gold);
  color: #111;
  box-shadow: 0 14px 26px rgba(255, 193, 7, .22);
}

.wg-citation-box p.is-loading {
  color: var(--wg-muted);
  font-style: italic;
}

@media (max-width: 991.98px) {
  .wg-pdf-viewer {
    height: 700px;
  }
}

@media (max-width: 767.98px) {
  .wg-pdf-viewer {
    height: 560px;
  }

  .wg-document-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .wg-keyword-chip {
    font-size: .84rem;
  }
}

/*---------------------------------------
  GLOBAL VISITOR CONTROLS
-----------------------------------------*/
.wg-scroll-top {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 998;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffc107;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease, bottom .25s ease;
}

.wg-scroll-top i {
  font-size: 1.65rem;
  line-height: 1;
}

.wg-scroll-top:hover,
.wg-scroll-top:focus {
  background: #ffc107;
  color: #111111;
  outline: none;
}

.wg-scroll-top:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 193, 7, .28), 0 18px 38px rgba(0, 0, 0, .18);
}

.wg-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wg-scroll-top.has-cookie-offset {
  bottom: 9.75rem;
}

.wg-cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 999;
  width: min(980px, calc(100% - 2rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 1rem 1rem 1rem 1.2rem;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, .96);
  color: #222222;
  box-shadow: 0 24px 70px rgba(17, 17, 17, .16);
  backdrop-filter: blur(14px);
}

.wg-cookie-consent[hidden] {
  display: none !important;
}

.wg-cookie-consent__content {
  min-width: 0;
}

.wg-cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: .3rem;
  color: #9a7300;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.wg-cookie-consent__title {
  margin: 0 0 .25rem;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.wg-cookie-consent__text {
  margin: 0;
  color: #606060;
  font-size: .92rem;
  line-height: 1.65;
}

.wg-cookie-consent__text a {
  color: #111111;
  font-weight: 800;
  text-decoration-color: rgba(255, 193, 7, .75);
  text-underline-offset: 3px;
}

.wg-cookie-consent__text a:hover {
  color: #9a7300;
}

.wg-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
}

.wg-cookie-btn {
  min-width: 104px;
  min-height: 44px;
  border-radius: 999px;
  padding: .65rem 1rem;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
}

.wg-cookie-btn--ghost {
  border: 1px solid rgba(17, 17, 17, .12);
  background: #ffffff;
  color: #111111;
}

.wg-cookie-btn--ghost:hover,
.wg-cookie-btn--ghost:focus {
  border-color: rgba(17, 17, 17, .28);
  background: #f7f7f7;
  color: #111111;
}

.wg-cookie-btn--primary {
  border: 1px solid #ffc107;
  background: #ffc107;
  color: #111111;
  box-shadow: 0 12px 24px rgba(255, 193, 7, .24);
}

.wg-cookie-btn--primary:hover,
.wg-cookie-btn--primary:focus {
  border-color: #111111;
  background: #111111;
  color: #ffc107;
}

@media (max-width: 767.98px) {
  .wg-cookie-consent {
    align-items: stretch;
    flex-direction: column;
    gap: .95rem;
    padding: 1rem;
  }

  .wg-cookie-consent__actions {
    width: 100%;
  }

  .wg-cookie-btn {
    flex: 1 1 0;
  }

  .wg-scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }

  .wg-scroll-top.has-cookie-offset {
    bottom: 16.25rem;
  }
}

/*---------------------------------------
  KIU JOURNALS BRAND REFRESH
-----------------------------------------*/
:root {
  --primary-color: #f2b705;
  --wg-primary: #f2b705;
  --wg-primary-dark: #c99700;
  --wg-green: #006b3f;
  --wg-green-dark: #004b2d;
  --wg-ink: #17211c;
  --wg-dark: #17211c;
  --wg-dark-soft: #21342b;
  --wg-heading: #102019;
  --wg-text: #59635e;
  --wg-bg-soft: #f4f8f6;
  --wg-bg-muted: #eef5f1;
  --wg-border: rgba(0, 107, 63, 0.14);
  --wg-shadow-sm: 0 10px 26px rgba(16, 32, 25, 0.08);
  --wg-shadow-md: 0 18px 44px rgba(16, 32, 25, 0.14);
  --wg-radius-lg: 8px;
  --wg-radius-xl: 8px;
}

body {
  color: var(--wg-text);
  background: #ffffff;
}

p,
li {
  letter-spacing: 0;
}

.navbar.kiu-navbar {
  padding: .85rem 0;
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid rgba(0, 107, 63, .12);
  box-shadow: 0 10px 30px rgba(16, 32, 25, .08) !important;
}

.kiu-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: .7rem;
  min-width: 0;
  max-width: min(100%, 21rem);
  margin-right: 0;
  color: var(--wg-green);
}

.kiu-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.kiu-brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: .08rem;
  line-height: 1;
}

.kiu-brand strong {
  color: var(--wg-green);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.kiu-brand small {
  display: block;
  color: var(--wg-green);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
  white-space: normal;
}

.navbar-nav .nav-link {
  color: #4d5a54;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--wg-green);
}

.navbar-nav .nav-link:not(.account-link)::after {
  color: var(--wg-primary);
}

.nav-submit-link {
  color: var(--wg-green-dark) !important;
}

.kiu-navbar .container {
  gap: 1rem;
}

.kiu-navbar-collapse {
  align-items: center;
  gap: 1rem;
}

.kiu-navbar-primary {
  align-items: center;
  gap: .15rem;
  padding: .28rem;
  border: 1px solid rgba(0, 107, 63, .10);
  border-radius: 999px;
  background: rgba(244, 248, 246, .82);
}

.kiu-navbar .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .62rem .86rem !important;
  border-radius: 999px;
  color: #4d5a54;
  font-size: .91rem;
  font-weight: 850;
  line-height: 1.1;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.kiu-navbar .navbar-nav .nav-link:not(.account-link)::after {
  content: none;
}

.kiu-navbar-primary .nav-link:hover,
.kiu-navbar-primary .nav-link:focus,
.kiu-navbar-primary .nav-link.active {
  background: #ffffff;
  color: var(--wg-green);
  box-shadow: 0 8px 18px rgba(16, 32, 25, .08);
}

.kiu-navbar-actions {
  align-items: center;
  gap: .55rem;
  margin-left: auto;
}

.kiu-navbar-actions .nav-submit-link {
  gap: .48rem;
  min-height: 44px;
  padding: .7rem 1rem !important;
  border: 1px solid var(--wg-green);
  border-radius: 999px;
  background: var(--wg-green);
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(0, 107, 63, .18);
}

.kiu-navbar-actions .nav-submit-link:hover,
.kiu-navbar-actions .nav-submit-link:focus,
.kiu-navbar-actions .nav-submit-link.active {
  border-color: var(--wg-green-dark);
  background: var(--wg-green-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.kiu-navbar-actions .nav-submit-link i {
  color: var(--wg-primary);
  font-size: .98rem;
}

.kiu-navbar-actions .account-link {
  width: 44px;
  height: 44px;
  padding: 0 !important;
  border: 1px solid rgba(0, 107, 63, .18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--wg-green-dark);
  box-shadow: 0 10px 20px rgba(16, 32, 25, .08);
}

.kiu-navbar-actions .account-link:hover,
.kiu-navbar-actions .account-link:focus,
.kiu-navbar-actions .account-link.active {
  border-color: var(--wg-primary);
  background: rgba(242, 183, 5, .14);
  color: var(--wg-green-dark);
  transform: translateY(-1px);
}

.kiu-navbar-actions .account-link img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.kiu-navbar-actions .account-link i {
  font-size: 1.25rem;
}

.account-link-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kiu-navbar .navbar-toggler {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 107, 63, .16);
  border-radius: 8px;
  background: rgba(0, 107, 63, .08);
}

.kiu-navbar .navbar-toggler .navbar-toggler-icon,
.kiu-navbar .navbar-toggler .navbar-toggler-icon::before,
.kiu-navbar .navbar-toggler .navbar-toggler-icon::after {
  width: 22px;
  background: var(--wg-green-dark);
}

.kiu-navbar .navbar-toggler .navbar-toggler-icon::before {
  top: -7px;
}

.kiu-navbar .navbar-toggler .navbar-toggler-icon::after {
  top: 7px;
}

.kiu-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.kiu-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.kiu-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1200px) {
  .kiu-navbar.navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.wg-section-eyebrow {
  border-radius: 999px;
  background: rgba(0, 107, 63, .1);
  color: var(--wg-green);
  letter-spacing: 0;
}

.wg-section-title,
.wg-page-hero-title,
.wg-hero-title {
  color: var(--wg-heading);
  letter-spacing: 0;
}

.wg-section-title {
  font-size: 2.75rem;
}

.wg-card,
.wg-news-side-card,
.wg-about-content-card,
.wg-about-page-image-card,
.wg-contact-card,
.wg-journal-card,
.wg-news-detail-card {
  border-radius: 8px;
  border-color: var(--wg-border);
}

.wg-card:hover {
  border-color: rgba(0, 107, 63, .28);
}

.wg-btn-primary {
  border-color: var(--wg-green);
  background: var(--wg-green);
  color: #ffffff;
}

.wg-btn-primary:hover,
.wg-btn-primary:focus {
  border-color: var(--wg-green-dark);
  background: var(--wg-green-dark);
  color: #ffffff;
}

.wg-btn-outline-light {
  border-color: rgba(255, 255, 255, .72);
  color: #ffffff;
}

.wg-btn-outline-light:hover,
.wg-btn-outline-light:focus {
  border-color: var(--wg-primary);
  background: var(--wg-primary);
  color: var(--wg-ink);
}

.wg-btn-outline-dark {
  border-color: var(--wg-green);
  color: var(--wg-green);
}

.wg-btn-outline-dark:hover,
.wg-btn-outline-dark:focus {
  border-color: var(--wg-green);
  background: var(--wg-green);
  color: #ffffff;
}

.wg-hero {
  min-height: clamp(540px, 68vh, 760px);
  background: var(--wg-green-dark);
  isolation: isolate;
  overflow: hidden;
  clip-path: ellipse(95% 115% at 50% -15%);
}

.wg-hero-media {
  z-index: 0;
}

.wg-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 75, 45, .76) 0%, rgba(0, 107, 63, .54) 36%, rgba(0, 107, 63, .24) 68%, rgba(23, 33, 28, .08) 100%),
    linear-gradient(to top, rgba(16, 32, 25, .30), rgba(16, 32, 25, .03));
  z-index: 1;
}

.wg-page-hero-overlay {
  background:
    linear-gradient(135deg, rgba(0, 75, 45, .9) 0%, rgba(0, 107, 63, .72) 48%, rgba(23, 33, 28, .58) 100%),
    linear-gradient(to top, rgba(16, 32, 25, .65), rgba(16, 32, 25, .08));
}

.wg-inner-hero {
  min-height: clamp(380px, 46vh, 520px);
  background: var(--wg-green-dark);
  isolation: isolate;
}

.wg-inner-hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  bottom: -74px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(242, 183, 5, .22);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.wg-inner-hero .wg-page-hero-image {
  filter: saturate(.98) contrast(1.04);
}

.wg-inner-hero .wg-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 75, 45, .92) 0%, rgba(0, 107, 63, .72) 42%, rgba(16, 32, 25, .44) 78%, rgba(16, 32, 25, .32) 100%),
    linear-gradient(to top, rgba(16, 32, 25, .60), rgba(16, 32, 25, .10));
}

.wg-inner-hero .wg-page-hero-content {
  max-width: 900px;
  padding: 6.4rem 0 3.8rem;
}

.wg-inner-hero .wg-page-hero-content.text-lg-start {
  margin-left: 0;
}

.wg-inner-hero .wg-section-eyebrow {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
}

.wg-inner-hero .wg-page-hero-title {
  color: #ffffff;
  font-size: clamp(2.35rem, 4.25vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: .95rem;
}

.wg-inner-hero .wg-page-hero-lead {
  max-width: 740px;
  margin: 0 auto 1.15rem;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.52;
}

.wg-inner-hero .text-lg-start .wg-page-hero-lead {
  margin-left: 0;
}

.wg-inner-hero .wg-breadcrumb {
  justify-content: center;
  color: rgba(255, 255, 255, .78);
}

.wg-inner-hero .text-lg-start .wg-breadcrumb {
  justify-content: flex-start;
}

.wg-inner-hero .wg-breadcrumb a {
  color: rgba(255, 255, 255, .88);
}

.wg-inner-hero .wg-breadcrumb a:hover {
  color: var(--wg-primary);
}

.wg-inner-hero .wg-journal-hero-chip {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .13);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.wg-about-hero {
  min-height: clamp(390px, 48vh, 520px);
  background: var(--wg-green-dark);
}

.wg-about-hero .wg-page-hero-image {
  filter: saturate(.96) contrast(1.05);
}

.wg-about-hero .wg-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 75, 45, .92) 0%, rgba(0, 107, 63, .74) 42%, rgba(16, 32, 25, .40) 78%, rgba(16, 32, 25, .28) 100%),
    linear-gradient(to top, rgba(16, 32, 25, .64), rgba(16, 32, 25, .12));
}

.wg-about-hero-content {
  max-width: 920px;
  padding: 7.2rem 0 4.2rem;
}

.wg-about-hero .wg-section-eyebrow {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
}

.wg-about-hero .wg-page-hero-title {
  color: #ffffff;
  font-size: clamp(2.7rem, 5.2vw, 5.1rem);
  line-height: 1;
  margin: .95rem auto 1rem;
  max-width: 860px;
}

.wg-page-hero-lead {
  max-width: 760px;
  margin: 0 auto 1.35rem;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.wg-page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1.25rem;
}

.wg-page-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: .55rem .85rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: .92rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.wg-page-hero-chips i {
  color: var(--wg-primary);
  font-size: 1rem;
}

.wg-about-page-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 107, 63, .10), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(242, 183, 5, .14), transparent 24%),
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 34%, #f6faf8 100%);
}

.wg-about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -1.5rem 0 2.4rem;
  position: relative;
  z-index: 3;
}

.wg-about-trust-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: .9rem;
  min-height: 112px;
  padding: 1.15rem;
  border: 1px solid rgba(0, 107, 63, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(16, 32, 25, .10);
}

.wg-about-trust-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 107, 63, .10);
  color: var(--wg-green);
  font-size: 1.35rem;
}

.wg-about-trust-card strong,
.wg-about-trust-card span {
  display: block;
}

.wg-about-trust-card strong {
  color: var(--wg-heading);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: .25rem;
}

.wg-about-trust-card span {
  color: var(--wg-text);
  font-size: .9rem;
  line-height: 1.45;
}

.wg-about-layout {
  position: relative;
  z-index: 2;
}

.wg-about-page-image-card {
  position: relative;
  border-radius: 8px;
  border-color: rgba(0, 107, 63, .16);
  box-shadow: 0 20px 44px rgba(16, 32, 25, .10);
}

.wg-about-page-image-card::after {
  content: "KIU Journals";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .48rem .7rem;
  border-radius: 999px;
  background: rgba(0, 75, 45, .88);
  color: #ffffff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.wg-about-page-image {
  min-height: 420px;
}

.wg-about-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(242, 183, 5, .22);
  background:
    linear-gradient(145deg, rgba(0, 75, 45, .98) 0%, rgba(0, 107, 63, .94) 58%, rgba(23, 33, 28, .98) 100%);
  box-shadow: 0 20px 42px rgba(0, 75, 45, .18);
}

.wg-about-side-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--wg-primary);
}

.wg-about-side-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -70px;
  border: 1px solid rgba(242, 183, 5, .28);
  border-radius: 50%;
}

.wg-side-card-kicker {
  color: var(--wg-primary);
}

.wg-side-card-title {
  color: #ffffff;
  letter-spacing: 0;
}

.wg-side-card-text,
.wg-side-card-text p,
.wg-side-card-text li {
  color: rgba(255, 255, 255, .82);
}

.wg-about-content-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(0, 107, 63, .15);
  background:
    linear-gradient(90deg, rgba(0, 107, 63, .05), transparent 36%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(16, 32, 25, .08);
}

.wg-about-content-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--wg-green), var(--wg-primary));
}

.wg-about-content-card .wg-richtext {
  position: relative;
  z-index: 1;
}

.wg-richtext {
  color: var(--wg-text);
}

.wg-richtext h1,
.wg-richtext h2,
.wg-richtext h3,
.wg-richtext h4,
.wg-richtext h5,
.wg-richtext h6 {
  color: var(--wg-heading);
  letter-spacing: 0;
}

.wg-richtext p,
.wg-richtext li {
  color: var(--wg-text);
  line-height: 1.78;
}

.wg-richtext a {
  color: var(--wg-green);
  font-weight: 800;
}

.wg-richtext blockquote {
  border-left-color: var(--wg-primary);
  background: rgba(0, 107, 63, .06);
  border-radius: 0 8px 8px 0;
}

.wg-mission-card {
  border-radius: 8px;
  border-color: rgba(0, 107, 63, .14);
  background:
    linear-gradient(135deg, rgba(0, 107, 63, .07), rgba(255, 255, 255, .92) 42%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(16, 32, 25, .08);
}

.wg-mission-card-alt {
  background:
    linear-gradient(135deg, rgba(242, 183, 5, .12), rgba(255, 255, 255, .92) 42%),
    #ffffff;
}

.wg-mission-icon {
  border-radius: 8px;
  background: rgba(0, 107, 63, .10);
  color: var(--wg-green);
  box-shadow: none;
}

.wg-mission-card-alt .wg-mission-icon {
  background: rgba(242, 183, 5, .18);
  color: var(--wg-green-dark);
}

.wg-content-actions {
  gap: .75rem;
}

.wg-content-actions .btn {
  border-radius: 8px;
}

.wg-share-strip {
  border-top-color: rgba(0, 107, 63, .14);
}

.wg-share-label {
  color: var(--wg-heading);
}

.wg-share-link {
  border-radius: 8px;
  background: rgba(0, 107, 63, .08);
  color: var(--wg-green);
}

.wg-share-link:hover,
.wg-share-link:focus {
  background: var(--wg-primary);
  color: var(--wg-ink);
}

.wg-hero-content {
  max-width: 980px;
  padding: 5.25rem 0 4.25rem;
}

.wg-hero .container {
  z-index: 4;
}

.wg-hero-title {
  color: #ffffff;
  font-size: clamp(4.4rem, 5.2vw, 6.8rem);
  line-height: .98;
}

.wg-hero-title span {
  color: var(--wg-primary);
}

.wg-hero-text {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.08rem, 1.12vw, 1.28rem);
  line-height: 1.48;
  letter-spacing: 0;
}

.wg-home-intro {
  margin-top: -10rem;
}

.wg-feature-card {
  background: #ffffff;
}

.wg-feature-icon,
.wg-about-stat-icon,
.wg-contact-detail-icon,
.wg-news-empty-icon {
  background: rgba(0, 107, 63, .1);
  color: var(--wg-green);
}

.wg-about-section {
  background:
    linear-gradient(180deg, #f8fbf9 0%, #eef5f1 100%);
}

.wg-about-panel {
  border-radius: 8px;
  background:
    linear-gradient(145deg, #004b2d 0%, #006b3f 58%, #17211c 100%);
  box-shadow: 0 28px 60px rgba(0, 75, 45, .26);
}

.wg-about-panel::before {
  border-radius: 7px;
}

.wg-about-process span:last-child,
.wg-news-category,
.wg-journal-badge,
.wg-cookie-btn--primary {
  background: var(--wg-primary);
  color: var(--wg-ink);
}

.wg-news-section,
.wg-contact-section,
.wg-journals-section {
  background: #ffffff;
}

.wg-journal-cover-wrap::after {
  background: linear-gradient(to top, rgba(0, 75, 45, .78), rgba(0, 75, 45, 0));
}

.wg-inline-link:hover,
.wg-news-title a:hover,
.wg-news-featured-body h3 a:hover,
.wg-news-meta i,
.wg-news-detail-meta i,
.wg-news-category-inline {
  color: var(--wg-green);
}

.wg-contact-detail:hover {
  border-color: rgba(0, 107, 63, .28);
}

.wg-contact-form .form-control:focus {
  border-color: var(--wg-green);
  box-shadow: 0 0 0 .2rem rgba(0, 107, 63, .12);
}

.site-footer.kiu-site-footer,
.site-footer {
  background: linear-gradient(180deg, #004b2d, #17211c);
}

.kiu-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.kiu-footer-brand img {
  width: 54px;
  height: 54px;
  padding: .35rem;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.kiu-footer-brand span {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
}

.wg-footer-title,
.wg-footer-copy,
.wg-footer-social-label {
  color: #ffffff;
}

.wg-footer-text,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, .76);
}

.site-footer a:hover {
  color: var(--wg-primary);
}

.wg-scroll-top {
  background: var(--wg-green);
  color: #ffffff;
}

.wg-cookie-consent__eyebrow,
.wg-cookie-consent__text a:hover {
  color: var(--wg-green);
}

.wg-cookie-btn--primary {
  border-color: var(--wg-primary);
  box-shadow: 0 12px 24px rgba(242, 183, 5, .24);
}

.wg-cookie-btn--primary:hover,
.wg-cookie-btn--primary:focus {
  border-color: var(--wg-green);
  background: var(--wg-green);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .kiu-brand small {
    display: block;
  }

  .wg-inner-hero {
    min-height: 410px;
  }

  .wg-inner-hero .wg-page-hero-content {
    padding: 5.8rem 0 3.2rem;
  }

  .wg-inner-hero .wg-page-hero-title {
    font-size: clamp(2.25rem, 6.4vw, 3.7rem);
  }

  .wg-about-hero {
    min-height: 430px;
  }

  .wg-about-hero-content {
    padding: 6.4rem 0 3.4rem;
  }

  .wg-about-hero .wg-page-hero-title {
    font-size: clamp(2.45rem, 7vw, 4rem);
  }

  .wg-about-trust-grid {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }

  .wg-about-trust-card {
    min-height: auto;
  }

  .wg-section-title {
    font-size: 2.2rem;
  }

  .wg-hero {
    min-height: 620px;
    clip-path: ellipse(115% 112% at 50% -12%);
  }

  .wg-hero-content {
    padding: 5rem 0 4rem;
  }

  .wg-hero-title {
    font-size: 3.8rem;
  }

  .wg-hero-text {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .wg-home-intro {
    margin-top: -7rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar.kiu-navbar {
    padding: .65rem 0;
  }

  .kiu-navbar-collapse {
    width: 100%;
    margin-top: .75rem;
    padding: .9rem;
    border: 1px solid rgba(0, 107, 63, .12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(16, 32, 25, .12);
  }

  .kiu-navbar-primary,
  .kiu-navbar-actions {
    align-items: stretch;
    width: 100%;
    gap: .35rem;
    margin: 0;
  }

  .kiu-navbar-primary {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .kiu-navbar .navbar-nav .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: .75rem .85rem !important;
    border-radius: 8px;
  }

  .kiu-navbar-primary .nav-link:hover,
  .kiu-navbar-primary .nav-link:focus,
  .kiu-navbar-primary .nav-link.active {
    background: rgba(0, 107, 63, .08);
    box-shadow: none;
  }

  .kiu-navbar-actions {
    margin-top: .7rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(0, 107, 63, .12);
  }

  .kiu-navbar-actions .nav-submit-link {
    justify-content: center;
    border-radius: 8px;
  }

  .kiu-navbar-actions .account-link {
    justify-content: center;
    width: 100%;
    height: 44px;
    gap: .45rem;
    border-radius: 8px;
  }

  .kiu-navbar-actions .account-link img {
    width: 28px;
    height: 28px;
  }

  .account-link-label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .kiu-navbar .container {
    gap: .5rem;
  }

  .kiu-brand {
    gap: .5rem;
    max-width: calc(100% - 3.35rem);
  }

  .kiu-navbar .navbar-toggler {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin-left: auto;
  }

  .wg-inner-hero {
    min-height: 390px;
  }

  .wg-inner-hero::after {
    width: 150px;
    height: 150px;
    right: -48px;
    bottom: -64px;
  }

  .wg-inner-hero .wg-page-hero-content {
    padding: 5rem 0 2.8rem;
  }

  .wg-inner-hero .wg-page-hero-title {
    font-size: 2.3rem;
    line-height: 1.06;
  }

  .wg-inner-hero .wg-page-hero-lead {
    font-size: .98rem;
    line-height: 1.5;
  }

  .wg-inner-hero .wg-journal-hero-meta {
    justify-content: center;
  }

  .wg-inner-hero .text-lg-start .wg-breadcrumb {
    justify-content: center;
  }

  .wg-about-hero {
    min-height: 420px;
  }

  .wg-about-hero-content {
    padding: 5.6rem 0 2.9rem;
  }

  .wg-about-hero .wg-page-hero-title {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .wg-page-hero-lead {
    font-size: .98rem;
    line-height: 1.5;
  }

  .wg-page-hero-chips {
    gap: .5rem;
  }

  .wg-page-hero-chips span {
    min-height: 38px;
    padding: .48rem .65rem;
    font-size: .82rem;
  }

  .wg-about-trust-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 1rem;
  }

  .wg-about-trust-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .kiu-brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .kiu-brand strong {
    font-size: .95rem;
  }

  .kiu-brand small {
    font-size: .66rem;
    line-height: 1.05;
  }

  .wg-section-title {
    font-size: 1.85rem;
  }

  .wg-hero-title {
    font-size: 3rem;
  }

  .wg-hero {
    min-height: 560px;
    clip-path: ellipse(140% 108% at 50% -8%);
  }

  .wg-hero-content {
    padding: 4rem 0 3.5rem;
  }

  .wg-hero-text {
    font-size: 1rem;
    line-height: 1.44;
  }

  .wg-home-intro {
    margin-top: -4rem;
  }
}


/* KIU JOURNALS HOMEPAGE SERVICE CARDS */
.wg-feature-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.wg-feature-card-link:hover { color: inherit; }
.wg-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-top: 1.25rem;
  color: var(--kiu-green, #007a43);
  font-weight: 700;
  font-size: .9rem;
}
.wg-feature-cta i {
  font-size: 1.15rem;
  transition: transform .2s ease;
}
.wg-feature-card-link:hover .wg-feature-cta i { transform: translateX(3px); }
