/* ─── Navigation ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-ysr {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-health {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
  /* single-line: scroll sideways instead of wrapping */
  overflow: visible;
  flex-wrap: nowrap;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

.nav-links::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.nav-link {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Nav Dropdown styling */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 190px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 110;
  margin-top: 0.5rem;
  display: block; /* Manage visible state via Alpine.js */
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-body);
  font-size: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  text-align: left;
}

.dropdown-item:hover {
  background: #eef9f7;
  color: var(--teal);
}

.nav-arrow {
  font-size: 0.6rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mobile Nav Accordion submenus */
.mobile-submenu {
  list-style: none;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  margin-left: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.mobile-submenu .mobile-nav-link {
  font-size: 0.8rem !important;
  padding: 0.4rem 0.5rem !important;
  color: var(--text-muted);
}

.mobile-submenu .mobile-nav-link.active {
  color: var(--teal) !important;
  font-weight: 600 !important;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  margin-left: auto;
}

.hamburger-btn:hover {
  color: var(--teal);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--teal);
  padding-left: 0.5rem;
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
  padding: 3rem 0 0;
  background: linear-gradient(135deg, #f7fdfc 0%, #eef9f7 40%, #ffffff 100%);
  overflow: hidden;
  /* clip the photo at bottom */
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr; /* text column wider, photo narrower */
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}

/* Left: Text */
.hero-left {
  padding-top: 2.5rem;
  padding-right: 2rem;
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  position: relative;
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hero-signature {
  margin-bottom: 1.75rem;
}

.signature-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.signature-roles {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Right: Photo */
.hero-right {
  position: relative;
  align-self: stretch;
  /* bleed past the container's right padding to reach viewport edge */
  margin-right: -2rem;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
  display: block;
  /* Fade left edge: tight gradient so photo is visible sooner */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 10%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 10%, black 25%);
}

.founder-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem; /* inside the bled photo area */
  background: rgba(13, 33, 55, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 137, 123, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  max-width: 210px;
  box-shadow: 0 16px 40px rgba(11, 30, 45, 0.5);
  z-index: 2;
}

.founder-badge-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.founder-badge-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.founder-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.founder-badge-list li {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* teal dot removed per user request */

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: transparent;
  padding: 0;
  margin-top: -2.25rem;
  position: relative;
  z-index: 10;
}

.stats-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.375rem 1rem;
  border-right: 1px solid var(--border);
}

.stat-item-inner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  text-align: left;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

/* ─── Focus Areas ───────────────────────────────────────────── */
.focus-section {
  padding-top: 1rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.focus-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.focus-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.focus-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.focus-card:hover .focus-icon {
  background: var(--teal);
  color: #fff;
}

.focus-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.focus-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Digital Innovations — horizontal card layout ─────────── */
.innovations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.innovation-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.innovation-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.inno-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  flex-grow: 1;
}

.inno-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.inno-right {
  flex: 0 0 42%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.inno-right img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: bottom;
  transition: var(--transition);
}

.innovation-card:hover .inno-right img {
  transform: scale(1.04) translateY(-4px);
}

.inno-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inno-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Specific app icon colors */
.innovation-card:nth-of-type(1) .inno-icon {
  background: rgba(45, 158, 99, 0.12);
  color: #2d9e63;
}

.innovation-card:nth-of-type(2) .inno-icon {
  background: rgba(26, 108, 168, 0.12);
  color: #1a6ca8;
}

.innovation-card:nth-of-type(3) .inno-icon {
  background: rgba(0, 137, 123, 0.15);
  color: #00897b;
}

.inno-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.inno-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.3;
}

.inno-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
}

.inno-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  height: 200px;
}

.inno-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.innovation-card:hover .inno-mockup img {
  transform: scale(1.04);
}

.inno-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: auto;
}

/* ─── Digital Health Page (Vertical Layout) ──────────────────── */
.digital-health-card {
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.innovation-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.innovation-logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.digital-health-card:nth-of-type(1) .innovation-logo-wrapper {
  background: rgba(45, 158, 99, 0.1);
  color: #2d9e63;
}

.digital-health-card:nth-of-type(2) .innovation-logo-wrapper {
  background: rgba(26, 108, 168, 0.1);
  color: #1a6ca8;
}

.digital-health-card:nth-of-type(3) .innovation-logo-wrapper {
  background: rgba(0, 137, 123, 0.15);
  color: #00897b;
}

.innovation-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.innovation-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.innovation-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.innovation-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  width: 100%;
}

.innovation-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.digital-health-card:hover .innovation-mockup img {
  transform: scale(1.04);
}

.innovation-actions {
  display: flex;
  margin-top: auto;
}

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  background: var(--bg-off);
  color: var(--text-muted);
  border: 1px solid var(--border);
  text-align: center;
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  border-radius: var(--radius-btn-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.btn-sm-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-body);
}

.btn-sm-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-sm-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-sm-primary:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  box-shadow: 0 3px 10px rgba(0, 137, 123, 0.35);
  transform: translateY(-1px);
}

/* ─── Publications & News Split ─────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem;
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.split-heading {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.link-view-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.link-view-all:hover {
  color: var(--teal-hover);
}

/* Publication rows on Home */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pub-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: var(--transition);
}

.pub-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.pub-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pub-body {
  flex: 1;
  min-width: 0;
}

.pub-title-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pub-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pub-cite {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.pub-cite-scopus {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pub-cite-num {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.pub-cite-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}

/* News list on Home */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-section);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.news-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.news-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.news-card:hover .news-card-title {
  color: var(--teal);
}

.news-card-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* ─── Partners Slider ───────────────────────────────────────── */
.partners-section {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: var(--bg-white);
}

.partners-eyebrow {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.partners-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.8rem;
}

.partners-arrow-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.partners-logos {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.partners-logos::-webkit-scrollbar {
  display: none;
}

/* Partner Logo Card */
.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: var(--transition);
  min-width: 150px;
  height: 72px;
  flex-shrink: 0;
}

.partner-logo-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(60%);
  opacity: 0.75;
  transition: var(--transition);
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 0;
  font-size: 0.83rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: #64748b;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  color: #64748b;
  font-size: 0.8rem;
}

.footer-contact-icon {
  color: var(--teal);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin: 1.5rem 0 0.625rem;
}

.footer-newsletter-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.875rem;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.625rem 1rem;
  color: #fff;
  font-size: 0.78rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: #475569;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.625rem;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--teal-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: #fff;
}

/* ─── Mental Health Center Page ─────────────────────────────── */
.mhc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.mhc-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.mhc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mhc-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mhc-list-icon {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 2px;
}

.mhc-list-title {
  color: var(--text-dark);
  display: block;
  font-weight: 700;
}

.mhc-list-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mhc-form-card {
  margin: 0;
  width: 100%;
}

.mhc-form-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Responsive MHC Grid */
@media (max-width: 992px) {
  .mhc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Research & Focus Page ─────────────────────────────────── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.research-card {
  text-align: left;
  align-items: flex-start;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.research-card .focus-icon {
  margin-bottom: 1.25rem;
}

.research-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.research-desc {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Responsive Research Grid */
@media (max-width: 768px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ─── Publications Page ─────────────────────────────────────── */
.publication-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.publication-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pub-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.pub-badge-google-scholar { background: linear-gradient(135deg, #4285f4, #1a73e8); }
.pub-badge-scopus { background: linear-gradient(135deg, #009639, #00732f); }
.pub-badge-web-of-science { background: linear-gradient(135deg, #f58220, #d96b14); }
.pub-badge-sinta { background: linear-gradient(135deg, #e91e63, #c2185b); }
.pub-badge-orcid { background: linear-gradient(135deg, #a6ce39, #8cb330); }
.pub-badge-all { background: linear-gradient(135deg, var(--teal-muted), var(--teal)); }

.pub-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-decoration: none;
  word-wrap: break-word;
}

.pub-meta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pub-doi-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.pub-doi-link:hover {
  color: var(--teal-hover);
}

.pub-citations {
  text-align: center;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
  min-width: 100px;
  flex-shrink: 0;
}

.pub-citations-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.pub-citations-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pagination */
.pub-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  animation: fadeIn 0.4s ease;
}

.pub-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.pub-page-btn:hover {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.pub-page-btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f1f5f9;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: not-allowed;
  opacity: 0.7;
}

.pub-page-indicator {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .publication-card {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: center;
  }
  .publication-card > div:first-child {
    margin: 0 auto;
  }
  .pub-citations {
    border-left: none !important;
    border-top: 1px solid var(--border);
    padding-left: 0 !important;
    padding-top: 1rem;
    width: 100%;
  }
}

/* ─── Books Page ────────────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.book-item-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.book-item-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.book-cover {
  width: 100px;
  height: 140px;
  background-color: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .book-item-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* Global Publication/Book Typography Helpers */
.pub-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pub-meta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.pub-meta-text strong {
  color: var(--text-body);
}

/* ─── News List Page ────────────────────────────────────────── */
.news-item-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-item-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-item-thumb {
  width: 160px;
  height: 110px;
  background-color: var(--bg-off);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-category {
  display: inline-block;
  font-size: 0.7rem;
  background-color: var(--teal-light);
  color: var(--teal);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-item-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.news-item-title a {
  color: inherit;
  transition: var(--transition);
}

.news-item-title a:hover {
  color: var(--teal);
}

.news-item-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.news-item-excerpt {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .news-item-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .news-item-thumb {
    width: 100%;
    height: 160px;
  }
}

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-method-body strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-method-body span,
.contact-method-body a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-method-body a {
  transition: var(--transition);
}

.contact-method-body a:hover {
  color: var(--teal);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Responsive (Public Sections) ───────────────────────────── */
@media (max-width: 1150px) {
  .nav-links {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
    justify-content: flex-start;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--teal-muted);
    padding-top: 0.75rem;
  }

  .hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .hero-right {
    max-width: 100%;
    width: 100%;
    margin-right: 0; /* cancel the desktop bleed */
    margin-left: 0;
    min-height: 400px;
  }

  .hero-photo {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-xl);
    -webkit-mask-image: none; /* no gradient fade on mobile */
    mask-image: none;
  }

  .founder-badge {
    right: 1rem;
    bottom: 1rem;
  }

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


  .stat-item:nth-child(3) {
    border-right: none;
  }

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

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .innovations-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero {
    padding-top: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  .hero-photo {
    min-height: 360px;
  }

  .founder-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -2rem auto 0;
    max-width: 90%;
    z-index: 5;
    box-shadow: var(--shadow-lg);
  }

  .innovation-card {
    padding: 1.25rem;
  }

  .inno-body {
    flex-direction: column;
    gap: 1rem;
  }

  .inno-left {
    flex: 1;
  }

  .inno-right {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .inno-right img {
    height: 200px;
    width: auto;
  }

  /* Centering digital health page cards on mobile */
  .digital-health-card {
    align-items: center;
    text-align: center;
  }

  .digital-health-card .innovation-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .digital-health-card .innovation-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .digital-health-card .innovation-actions .btn,
  .digital-health-card .innovation-actions .badge-coming-soon {
    max-width: 290px;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-card {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ─── Public Layout & Content Styles ────────────────────────── */
.container-sm {
  max-width: 800px !important;
}

.container-md {
  max-width: 900px !important;
}

.section-header-left {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header-left h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.section-header-centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-desc {
  color: var(--text-muted);
  margin-top: 1rem;
}

.rich-text-flow {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Founder Profile Card */
.founder-profile-card {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.founder-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal);
}

.founder-profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.founder-profile-subtitle {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-profile-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Academy Section */
.training-panel {
  background-color: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1rem;
}

.training-panel-title {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.training-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.training-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.training-item-title {
  color: var(--text-dark);
  display: block;
  font-size: 1.05rem;
}

.training-item-meta {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
}

/* Collaboration Form & Partners */
.form-card-wrap {
  margin-bottom: 5rem;
}

.btn-full-width {
  width: 100%;
}

.collab-partners-section {
  text-align: center;
}

.collab-partners-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

.collab-partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.collab-partner-badge {
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 12px;
  background-color: var(--bg-off);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collab-partner-icon {
  color: var(--teal);
}

.collab-partner-name {
  font-weight: 600;
  color: var(--text-dark);
}

/* News Details & Lists */
.news-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-read-more {
  font-size: 0.9rem;
}

.detail-header {
  margin-bottom: 2rem;
}

.back-to-news-btn {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.category-pill {
  font-size: 0.75rem;
  background-color: var(--teal-light);
  color: var(--teal-hover);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
}

.detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.detail-date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detail-banner-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  max-height: 400px;
  background-color: var(--bg-off);
}

/* Research Info */
.research-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.research-intro-text {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Collaboration Category page */
.collab-cat-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.collab-cat-header {
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fadeIn 0.5s ease;
}

.collab-cat-tag {
  background: #eef9f7;
  color: var(--teal);
  padding: 0.4rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collab-cat-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 0.75rem;
}

.collab-cat-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.collab-partners-grid-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

.collab-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.collab-partner-card-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.collab-partner-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02) !important;
  border-color: var(--teal) !important;
}

.collab-partner-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.collab-partner-logo-wrap {
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.collab-partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collab-partner-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.collab-partner-visit-btn {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
}

.collab-partner-visit-btn i {
  font-size: 0.65rem;
  margin-left: 0.2rem;
}

.collab-partner-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
}

.collab-partner-empty i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  display: block;
}

.collab-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2137 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.collab-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}

.collab-cta-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.collab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

/* Collaboration Form page styling */
.collab-form-container {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.collab-form-group {
  margin-bottom: 1.5rem;
}

.collab-form-group:last-of-type {
  margin-bottom: 2rem;
}

.collab-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.collab-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.collab-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: white;
}

.collab-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}

.collab-form-btn {
  width: 100%;
  background: var(--teal);
  color: white;
  padding: 0.875rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* Partner specific badge colors */
.partner-color-brin { background-color: rgba(230, 57, 70, 0.15); color: #e63946; }
.partner-color-kemenkes { background-color: rgba(45, 158, 99, 0.15); color: #2d9e63; }
.partner-color-ugm { background-color: rgba(0, 85, 165, 0.15); color: #0055a5; }
.partner-color-rsj { background-color: rgba(224, 123, 0, 0.15); color: #e07b00; }
.partner-color-who { background-color: rgba(0, 137, 123, 0.15); color: #00897b; }
.partner-color-unicef { background-color: rgba(26, 108, 168, 0.15); color: #1a6ca8; }
.partner-color-ysr { background-color: rgba(156, 39, 176, 0.15); color: #9c27b0; }

/* ── Empty States ──────────────────────────────────── */
.empty-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  color: var(--text-muted, #888);
}
.empty-section i {
  font-size: 2rem;
  opacity: 0.5;
}
.empty-section span {
  font-size: 0.9rem;
}

/* ── Collaboration Submission Cards ────────────────── */
.collab-submissions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.collab-submission-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.collab-submission-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: var(--teal);
}

.collab-submission-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.collab-submission-body {
  flex: 1;
  min-width: 0;
}

.collab-submission-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.collab-submission-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collab-submission-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collab-submission-cat-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.collab-submission-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}