/* ============================================================
   ARTIFICIAL: Journal of Technology, Information & Communication
   MASTER CSS — OJS Custom Stylesheet v2.2 Light Edition
   Pasang via: OJS > Settings > Website > Plugins > Custom CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   DESIGN TOKENS — Light Professional Palette
   ============================================================ */
:root {
  /* Core Palette — biru akademik cerah */
  --art-primary:         #1565C0;
  --art-primary-hover:   #1976D2;
  --art-primary-light:   #2196F3;
  --art-accent:          #00ACC1;
  --art-accent-dark:     #0097A7;
  --art-accent-hover:    #F59E0B;
  --art-accent-muted:    rgba(0, 172, 193, 0.12);
  --art-gold:            #F59E0B;

  /* Surface — putih & sangat terang */
  --art-white:           #FFFFFF;
  --art-soft-bg:         #EFF6FF;
  --art-bg-light:        #F8FAFF;
  --art-bg-card:         #FFFFFF;

  /* Text */
  --art-text:            #1E293B;
  --art-text-secondary:  #334155;
  --art-muted:           #64748B;

  /* Borders */
  --art-border:          #CBD5E1;
  --art-border-light:    #E2E8F0;

  /* Elevation */
  --art-shadow-xs:  0 1px 3px rgba(21, 101, 192, 0.06);
  --art-shadow-sm:  0 2px 8px rgba(21, 101, 192, 0.08);
  --art-shadow-md:  0 4px 18px rgba(21, 101, 192, 0.10);
  --art-shadow-lg:  0 8px 30px rgba(21, 101, 192, 0.12);
  --art-shadow-xl:  0 16px 48px rgba(21, 101, 192, 0.15);

  /* Radius */
  --art-radius-xs:  3px;
  --art-radius-sm:  6px;
  --art-radius:     10px;
  --art-radius-lg:  14px;
  --art-radius-xl:  20px;

  /* Typography */
  --art-font-head:  'Plus Jakarta Sans', system-ui, sans-serif;
  --art-font-ui:    'DM Sans', system-ui, sans-serif;
  --art-font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  /* Motion */
  --art-ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --art-ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --art-t-fast:     0.14s var(--art-ease);
  --art-t-base:     0.22s var(--art-ease);
  --art-t-slow:     0.34s var(--art-ease-out);

  /* Layout */
  --art-max-w:      1200px;
  --art-gutter:     clamp(16px, 3vw, 28px);
}

/* ============================================================
   RESET OJS DEFAULT ELEMENTS
   ============================================================ */
.pkp_head_wrapper,
.pkp_site_nav_menu,
header.pkp_structure_head,
#pkp_site_name,
.pkp_navigation_user,
footer.pkp_structure_footer,
.pkp_footer_content,
.pkp_structure_footer {
  display: none !important;
}

/* ============================================================
   BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--art-font-ui);
  font-size: 15px;
  color: var(--art-text);
  background: var(--art-bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  transition: color var(--art-t-fast);
}

/* ============================================================
   UTILITY
   ============================================================ */
.art-container {
  max-width: var(--art-max-w);
  margin-inline: auto;
  padding-inline: var(--art-gutter);
}

.art-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.art-topbar {
  background: var(--art-primary);
  padding-block: 6px;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.art-topbar-inner {
  max-width: var(--art-max-w);
  margin-inline: auto;
  padding-inline: var(--art-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.art-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.art-topbar-left a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--art-t-fast);
}

.art-topbar-left a:hover {
  color: #fff;
}

.art-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.art-btn-login,
.art-btn-register {
  text-decoration: none;
  font-weight: 500;
  font-size: 11.5px;
  padding: 4px 13px;
  border-radius: var(--art-radius-sm);
  transition: all var(--art-t-fast);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.5;
  white-space: nowrap;
}

.art-btn-login {
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.art-btn-login:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.art-btn-register {
  background: #fff;
  color: var(--art-primary) !important;
  font-weight: 700;
  border: 1px solid transparent;
}

.art-btn-register:hover {
  background: var(--art-soft-bg);
  transform: translateY(-1px);
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.art-header {
  background: var(--art-primary);
  border-bottom: 3px solid var(--art-accent);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--art-shadow-md);
}

.art-header-inner {
  max-width: var(--art-max-w);
  margin-inline: auto;
  padding-inline: var(--art-gutter);
  height: 62px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Brand */
.art-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.art-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--art-t-fast);
}

.art-brand:hover .art-logo {
  opacity: 0.85;
}

.art-journal-title {
  font-family: var(--art-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--art-white);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.art-journal-title span {
  color: var(--art-accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.art-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.art-nav-item {
  position: relative;
  list-style: none;
}

.art-nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: var(--art-radius-sm);
  transition: all var(--art-t-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.art-nav-link:hover,
.art-nav-link[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.art-nav-link[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.art-nav-link.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid currentColor;
  opacity: 0.6;
  transition: transform var(--art-t-fast), opacity var(--art-t-fast);
  margin-left: 2px;
  flex-shrink: 0;
}

.art-nav-item:hover .art-nav-link.has-dropdown::after,
.art-nav-item:focus-within .art-nav-link.has-dropdown::after {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* Dropdown */
.art-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--art-border);
  border-radius: var(--art-radius);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition:
    opacity var(--art-t-base),
    transform var(--art-t-base),
    visibility 0s var(--art-t-base);
  box-shadow: var(--art-shadow-xl);
  z-index: 201;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 4px;
}

.art-nav-item:hover .art-dropdown,
.art-nav-item:focus-within .art-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.art-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--art-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  border-radius: var(--art-radius-sm);
  transition: all var(--art-t-fast);
}

.art-dropdown-item svg {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity var(--art-t-fast);
  width: 15px;
  height: 15px;
}

.art-dropdown-item:hover {
  background: var(--art-soft-bg);
  color: var(--art-primary);
  padding-left: 17px;
}

.art-dropdown-item:hover svg {
  opacity: 1;
  color: var(--art-primary);
}

/* ============================================================
   SEARCH
   ============================================================ */
.art-search-wrap {
  display: flex;
  align-items: center;
}

.art-search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 22px;
  overflow: hidden;
  transition: all var(--art-t-base);
}

.art-search-form:focus-within {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.art-search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 13px;
  color: var(--art-white);
  font-size: 13px;
  font-family: var(--art-font-ui);
  width: 155px;
  transition: width var(--art-t-slow);
}

.art-search-form:focus-within .art-search-input {
  width: 195px;
}

.art-search-input::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.art-search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  padding: 7px 11px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color var(--art-t-fast);
}

.art-search-btn:hover {
  color: #fff;
}

.art-search-btn svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.art-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--art-radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  transition: all var(--art-t-fast);
  flex-shrink: 0;
}

.art-nav-toggle:hover {
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.art-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.art-sb-block {
  background: var(--art-bg-card);
  border: 1px solid var(--art-border);
  border-radius: var(--art-radius);
  overflow: hidden;
  transition: box-shadow var(--art-t-base);
}

.art-sb-block:hover {
  box-shadow: var(--art-shadow-sm);
}

.art-sb-head {
  background: var(--art-primary);
  padding: 10px 15px;
  border-bottom: 2px solid var(--art-accent);
}

.art-sb-head h3 {
  font-family: var(--art-font-head);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.art-sb-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  color: var(--art-text);
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid var(--art-border-light);
  transition: all var(--art-t-fast);
  gap: 8px;
}

.art-sb-nav-item:last-child {
  border-bottom: none;
}

.art-sb-nav-item:hover {
  background: var(--art-soft-bg);
  padding-left: 19px;
  color: var(--art-primary);
}

.art-sb-subnav {
  background: var(--art-bg-light);
  padding: 2px 0;
  border-bottom: 1px solid var(--art-border-light);
}

.art-sb-subnav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px 6px 26px;
  color: var(--art-muted);
  text-decoration: none;
  font-size: 12.5px;
  transition: all var(--art-t-fast);
}

.art-sb-subnav-item:hover {
  color: var(--art-primary);
  background: var(--art-soft-bg);
  padding-left: 29px;
}

/* Notice */
.art-sb-notice {
  padding: 13px 15px;
  background: var(--art-bg-card);
  border-left: 3px solid var(--art-accent);
}

.art-sb-notice-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--art-accent-dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.art-sb-notice-text {
  font-size: 12px;
  line-height: 1.58;
  color: var(--art-text);
  margin-bottom: 8px;
}

.art-sb-notice-link {
  font-size: 12px;
  color: var(--art-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--art-t-fast);
}

.art-sb-notice-link:hover {
  color: var(--art-accent-dark);
}

/* Template link */
.art-template-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: var(--art-soft-bg);
  border: 1px solid var(--art-border);
  border-radius: var(--art-radius-sm);
  text-decoration: none;
  color: var(--art-primary);
  font-size: 12.5px;
  font-weight: 600;
  transition: all var(--art-t-base);
  margin: 10px 13px;
}

.art-template-link:hover {
  background: var(--art-white);
  border-color: var(--art-primary);
  box-shadow: var(--art-shadow-sm);
  transform: translateY(-1px);
}

.art-template-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Stats grid */
.art-sb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.art-sb-stat-item {
  padding: 13px 11px;
  text-align: center;
  border-right: 1px solid var(--art-border-light);
  border-bottom: 1px solid var(--art-border-light);
  transition: background var(--art-t-fast);
}

.art-sb-stat-item:nth-child(2n) {
  border-right: none;
}

.art-sb-stat-item:hover {
  background: var(--art-soft-bg);
}

.art-sb-stat-title {
  font-family: var(--art-font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--art-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.art-sb-stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--art-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Indexed list */
.art-sb-indexed-list {
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.art-sb-indexed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--art-soft-bg);
  padding: 7px 11px;
  border-radius: var(--art-radius-sm);
  font-size: 12px;
  text-decoration: none;
  color: var(--art-text);
  font-weight: 500;
  border: 1px solid transparent;
  transition: all var(--art-t-fast);
  gap: 8px;
}

.art-sb-indexed-item:hover {
  background: var(--art-white);
  border-color: var(--art-accent);
  transform: translateX(2px);
}

.art-indexed-status {
  font-size: 9px;
  background: rgba(21, 101, 192, 0.07);
  padding: 2px 7px;
  border-radius: 10px;
  color: var(--art-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA block */
.art-sb-cta {
  background: linear-gradient(135deg, var(--art-primary) 0%, var(--art-primary-light) 100%);
  padding: 18px 15px;
  color: var(--art-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.art-sb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.art-sb-cta-title {
  font-family: var(--art-font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  position: relative;
}

.art-sb-cta-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
  line-height: 1.58;
  position: relative;
}

.art-sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--art-primary) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 17px;
  border-radius: var(--art-radius-sm);
  font-size: 12px;
  transition: all var(--art-t-fast);
  position: relative;
  letter-spacing: -0.01em;
}

.art-sb-cta-btn:hover {
  background: var(--art-soft-bg);
  transform: translateY(-1px);
  box-shadow: var(--art-shadow-sm);
}

/* Info list */
.art-sb-info-list {
  padding: 8px 13px;
}

.art-sb-info-row {
  display: flex;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--art-border-light);
  font-size: 12px;
  gap: 8px;
}

.art-sb-info-row:last-child {
  border-bottom: none;
}

.art-sb-info-lbl {
  min-width: 85px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--art-muted);
  flex-shrink: 0;
  padding-top: 1px;
}

.art-sb-info-val {
  flex: 1;
  color: var(--art-text);
  word-break: break-word;
  line-height: 1.5;
  min-width: 0;
}

/* ============================================================
   EDITORIAL TEAM PAGE
   ============================================================ */
.art-et-wrapper {
  max-width: 900px;
  margin-inline: auto;
  padding: 40px var(--art-gutter) 60px;
}

.art-et-hero {
  text-align: center;
  padding-block: 0 36px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--art-border);
}

.art-et-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--art-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.art-et-hero-title {
  font-family: var(--art-font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--art-primary);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.art-et-hero-title em {
  font-style: normal;
  color: var(--art-accent);
}

.art-et-hero-desc {
  font-size: 14px;
  color: var(--art-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

.art-et-section {
  margin-bottom: 36px;
}

.art-et-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.art-et-section-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--art-primary);
  flex-shrink: 0;
}

.art-et-section-title {
  font-family: var(--art-font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--art-primary);
  margin: 0;
}

.art-et-section-count {
  font-size: 11px;
  margin-left: auto;
  color: var(--art-muted);
  font-weight: 500;
  background: var(--art-soft-bg);
  padding: 2px 10px;
  border-radius: 12px;
}

/* Chief card */
.art-et-chief-card {
  background: var(--art-bg-card);
  border: 1px solid var(--art-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.art-et-chief-card:hover {
  border-color: var(--art-primary);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
}

.art-et-chief-inner {
  display: flex;
  align-items: stretch;
}

.art-et-chief-photo {
  width: 200px;
  min-width: 160px;
  flex-shrink: 0;
  background: var(--art-soft-bg);
  overflow: hidden;
  position: relative;
}

.art-et-chief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.art-et-chief-card:hover .art-et-chief-photo img {
  transform: scale(1.04);
}

.art-et-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--art-font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--art-primary);
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  min-height: 220px;
}

.art-et-chief-body {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: var(--art-bg-card);
  transition: background 0.3s ease;
}

.art-et-chief-card:hover .art-et-chief-body {
  background: #F8FAFF;
}

.art-et-chief-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--art-accent-dark);
}

.art-et-chief-name {
  font-family: var(--art-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--art-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.art-et-chief-affil {
  font-size: 12.5px;
  color: var(--art-muted);
  line-height: 1.5;
}

.art-et-chief-bio {
  font-size: 12.5px;
  color: var(--art-text-secondary);
  line-height: 1.65;
  margin-top: 2px;
}

.art-et-chief-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.art-et-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--art-primary);
  background: var(--art-soft-bg);
  border: 1px solid var(--art-border);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.art-et-chip svg {
  width: 13px;
  height: 13px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.art-et-chip:hover {
  background: var(--art-primary);
  color: #fff;
  border-color: var(--art-primary);
  transform: translateY(-1px);
}

.art-et-chip:hover svg {
  opacity: 1;
}

/* Member grid */
.art-et-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.art-et-member-card {
  background: var(--art-bg-card);
  border: 1px solid var(--art-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.art-et-member-card:hover {
  border-color: var(--art-primary);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.09);
  transform: translateY(-2px);
}

.art-et-member-inner {
  display: flex;
  align-items: stretch;
}

.art-et-member-photo {
  width: 110px;
  min-width: 90px;
  flex-shrink: 0;
  background: var(--art-soft-bg);
  overflow: hidden;
  position: relative;
}

.art-et-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.art-et-member-card:hover .art-et-member-photo img {
  transform: scale(1.06);
}

.art-et-member-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--art-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--art-primary);
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.art-et-member-body {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background 0.3s ease;
}

.art-et-member-card:hover .art-et-member-body {
  background: #F8FAFF;
}

.art-et-member-role-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--art-primary);
  background: rgba(21, 101, 192, 0.09);
  padding: 2px 7px;
  border-radius: 6px;
  align-self: flex-start;
}

.art-et-member-name {
  font-family: var(--art-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--art-primary);
  line-height: 1.3;
  margin: 0;
}

.art-et-member-affil {
  font-size: 11px;
  color: var(--art-muted);
  line-height: 1.4;
}

.art-et-member-country {
  font-size: 10.5px;
  color: var(--art-muted);
  margin-top: auto;
  padding-top: 3px;
}

.art-et-member-footer {
  display: flex;
  gap: 5px;
  padding: 6px 12px 10px;
  border-top: 1px solid var(--art-border-light);
}

.art-et-member-link {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--art-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--art-border-light);
  background: var(--art-soft-bg);
  transition: all 0.25s ease;
}

.art-et-member-link svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.art-et-member-link:hover {
  color: var(--art-primary);
  background: var(--art-border-light);
  border-color: var(--art-border);
  transform: translateY(-1px);
}

.art-et-member-link:hover svg {
  opacity: 0.8;
}

/* Reviewer note */
.art-et-note {
  background: #FFFBF0;
  border-left: 3px solid var(--art-gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--art-text-secondary);
  line-height: 1.65;
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.art-et-note svg {
  width: 16px;
  height: 16px;
  color: var(--art-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.art-et-note a {
  color: var(--art-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.art-et-note a:hover {
  color: var(--art-accent-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.art-footer {
  background: var(--art-primary);
  border-top: 3px solid var(--art-accent);
  padding-top: 48px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--art-font-ui);
  margin-top: 56px;
}

.art-footer-inner {
  max-width: var(--art-max-w);
  margin-inline: auto;
  padding-inline: var(--art-gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 40px;
}

.art-footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity var(--art-t-fast);
}

.art-footer-logo:hover {
  opacity: 1;
}

.art-footer-desc {
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 13px;
  max-width: 370px;
}

.art-footer-issue-issn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.art-footer-issn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 11px;
  font-size: 11px;
  border-radius: var(--art-radius-sm);
  font-family: var(--art-font-mono);
  width: fit-content;
  transition: all var(--art-t-fast);
}

.art-footer-issn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.art-footer-links-col h4 {
  font-family: var(--art-font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 14px;
}

.art-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.art-footer-links li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  padding: 5px 0;
  transition: all var(--art-t-fast);
}

.art-footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.art-footer-links li a svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.4;
  transition: opacity var(--art-t-fast);
}

.art-footer-links li a:hover svg {
  opacity: 0.85;
}

.art-footer-address {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}

.art-footer-address strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.art-footer-address a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color var(--art-t-fast);
}

.art-footer-address a:hover {
  color: #fff;
}

.art-footer-bottom {
  max-width: var(--art-max-w);
  margin: 40px auto 0;
  padding: 15px var(--art-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  gap: 12px;
  flex-wrap: wrap;
}

.art-footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--art-t-fast);
}

.art-footer-bottom a:hover {
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .art-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .art-footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .art-header-inner {
    height: auto;
    padding-block: 11px;
    flex-wrap: wrap;
  }

  .art-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-bottom: 8px;
  }

  .art-nav.is-open {
    display: flex;
  }

  .art-nav-link {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: var(--art-radius-sm);
  }

  .art-nav-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .art-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 2px 0 4px;
  }

  .art-dropdown-item {
    padding-left: 22px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
  }

  .art-search-wrap {
    order: 3;
    width: 100%;
  }

  .art-search-form {
    width: 100%;
  }

  .art-search-input {
    width: 100% !important;
  }

  .art-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-block: 8px;
  }

  .art-topbar-left {
    gap: 10px;
  }

  .art-et-chief-card {
    flex-direction: column;
    border-left: none;
    border-top: 4px solid var(--art-primary);
  }

  .art-et-chief-photo {
    width: 100%;
    min-width: unset;
    height: 220px;
  }

  .art-et-initials {
    min-height: 200px;
  }

  .art-et-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .art-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .art-footer-brand-col {
    grid-column: auto;
  }

  .art-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .art-topbar-left,
  .art-topbar-right {
    flex-wrap: wrap;
  }

  .art-et-grid {
    grid-template-columns: 1fr;
  }

  .art-et-chief-photo {
    height: 170px;
  }

  .art-et-initials {
    min-height: 170px;
    font-size: 32px;
  }

  .art-et-chief-name {
    font-size: 18px;
  }

  .art-et-member-inner {
    flex-direction: column;
  }

  .art-et-member-photo {
    width: 100%;
    min-width: unset;
    height: 150px;
  }
}

@media (min-width: 1440px) {
  :root {
    --art-gutter: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}