/* GBV Research Nigeria - Static Website Styles */
/* Light Navy Blue and White Theme */

:root {
  --navy: #1e3a5f;
  --navy-light: #2c5282;
  --navy-dark: #152a45;
  --gold: #c9943a;
  --gold-light: #f7edd9;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f0f4f8;
  --gray-200: #d1dce8;
  --gray-300: #a0b4c9;
  --gray-400: #6b8bab;
  --gray-500: #4a6382;
  --gray-600: #334155;
  --radius: 0.625rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 1.875rem; }
}

p {
  color: var(--gray-500);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #b8863a;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  background-color: var(--gray-100);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background-color: var(--navy-light);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background-color: var(--gray-100);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  padding: 1rem;
  overflow-y: auto;
  z-index: 40;
}

.nav-mobile.active {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--navy);
  background-color: var(--gray-100);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 42, 69, 0.9) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(44, 82, 130, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: var(--gold-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-200);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

.slider-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats {
  background-color: var(--navy);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--gold-light);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-500);
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-accent {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-list {
  margin: 1.5rem 0;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.about-list-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Findings Highlight */
.findings-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 1rem;
  padding: 3rem 2rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .findings-highlight {
    padding: 4rem;
  }
}

.findings-highlight .section-badge {
  background-color: rgba(201, 148, 58, 0.2);
  color: var(--gold);
}

.findings-highlight h2 {
  color: var(--white);
}

.findings-highlight p {
  color: var(--gray-300);
}

.findings-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .findings-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.findings-stat {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.findings-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.findings-stat-label {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

/* Gallery Preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Partners Section */
.partners {
  background-color: var(--gray-50);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.partner-logo {
  width: 4rem;
  height: 4rem;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.partner-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .cta {
    padding: 6rem 0;
  }
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background-color: var(--navy-dark);
  color: var(--gray-300);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-300);
  transition: color 0.2s ease;
}

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

.footer-emergency {
  background-color: rgba(153, 34, 34, 0.2);
  border: 1px solid rgba(153, 34, 34, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
}

.footer-emergency-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 0.5rem;
}

.footer-emergency-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-emergency-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--gray-300);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gray-200);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
  }
}

.timeline-dot {
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold-light);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Team Cards */
.team-grid {
  display: grid;
  gap: 2rem;
}

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

.team-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: var(--gray-100);
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

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

.team-name {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-institution {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Findings Cards */
.findings-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .findings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.findings-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.findings-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
}

.findings-card-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.findings-card-title {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.findings-card-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Crisis Banner */
.crisis-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #991b1b;
  color: var(--white);
  padding: 0.75rem 0;
  z-index: 40;
}

.crisis-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.crisis-banner-text {
  font-size: 0.875rem;
}

.crisis-banner-number {
  font-weight: 700;
  font-size: 1rem;
}

/* Page Content */
.page-content {
  padding-bottom: 4rem;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-white { background-color: var(--white); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* =====================================================
   ABOUT SECTION — Enhanced (from backup population)
===================================================== */

/* Inline stat strip inside about-content */
.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
}

.about-stat {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

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

.about-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Four-pillar grid below the about-grid */
.about-pillars-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-pillar-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.about-pillar-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
  transform: translateY(-2px);
  border-color: var(--gray-300);
}

.about-pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-pillar-icon--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.about-pillar-icon--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e0a840 100%);
  color: var(--white);
}

.about-pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.about-pillar-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* Project overview strip at the bottom of About */
.about-overview-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}

.about-overview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.about-overview-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.3rem;
}

.about-overview-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.about-overview-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
  .about-overview-strip {
    flex-direction: column;
    gap: 1rem;
  }
  .about-overview-divider { display: none; }
  .about-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-bottom: 1px solid var(--gray-200); }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--gray-200); }
  .about-stat:nth-child(even) { border-right: none; }
  .about-stat:last-child,
  .about-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}


/* =====================================================
   FINDINGS SECTION — Enhanced (from backup population)
===================================================== */

/* Content warning strip */
.findings-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #fef3cd;
  border: 1px solid #f5c842;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.findings-warning-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.findings-warning-body {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Campus awareness bar chart */
.findings-chart-block {
  margin-top: 3rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .findings-chart-block {
    padding: 3rem;
  }
}

.findings-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.findings-bar-row {
  display: grid;
  grid-template-columns: 11rem 1fr 4rem;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .findings-bar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.findings-bar-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  text-align: right;
  white-space: nowrap;
}

.findings-bar-label--alert {
  color: #c0392b;
  font-weight: 700;
}

.findings-bar-track {
  height: 0.625rem;
  background: var(--gray-200);
  border-radius: 9999px;
  overflow: hidden;
}

.findings-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 9999px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.findings-bar-fill--warn {
  background: linear-gradient(90deg, #b8860b 0%, var(--gold) 100%);
}

.findings-bar-fill--alert {
  background: linear-gradient(90deg, #8b0000 0%, #c0392b 100%);
}

.findings-bar-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}

.findings-bar-pct--alert {
  color: #c0392b;
}

/* Respondent voices */
.findings-voices {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}

.findings-quotes-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .findings-quotes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.findings-quote {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin: 0;
  transition: all 0.25s ease;
}

.findings-quote:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
  transform: translateY(-2px);
}

.findings-quote--accent {
  border-top-color: var(--gold);
  background: var(--gold-light);
}

.findings-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.findings-quote cite {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: normal;
  display: block;
}


/* =====================================================
   FINDINGS v2 — Visual Cards, Word Cloud, Modals
   (fv2- prefix = findings-v2, no collision with existing)
===================================================== */

/* ── 4-stat tile row ── */
.fv2-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) { .fv2-stat-row { grid-template-columns: repeat(2, 1fr); } }

.fv2-stat-tile {
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.fv2-stat-tile--navy  { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.fv2-stat-tile--alert { background: linear-gradient(135deg, #8b0000 0%, #c0392b 100%); }
.fv2-stat-tile--gold  { background: linear-gradient(135deg, #7a5a00 0%, var(--gold) 100%); }

.fv2-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.fv2-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* ── Card base ── */
.fv2-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.fv2-card:hover { box-shadow: 0 10px 36px rgba(30,58,95,0.1); transform: translateY(-3px); }
.fv2-card--wide { width: 100%; }

.fv2-card-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  width: fit-content;
}
.fv2-tag-chart      { background: rgba(30,58,95,0.07);   color: var(--navy); }
.fv2-tag-cloud      { background: rgba(201,148,58,0.12); color: #7a5a00; }
.fv2-tag-infographic{ background: rgba(30,58,95,0.07);   color: var(--navy); }
.fv2-tag-voices     { background: rgba(201,148,58,0.12); color: #7a5a00; }

.fv2-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.fv2-card-blurb {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

/* Row layouts */
.fv2-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) { .fv2-row-2 { grid-template-columns: 1fr; } }

.fv2-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) { .fv2-row-3 { grid-template-columns: 1fr; } }

/* ── Bar chart inside card ── */
.fv2-bars { display: flex; flex-direction: column; gap: 0.65rem; }
.fv2-bar-row { display: grid; grid-template-columns: 7.5rem 1fr 3.2rem; align-items: center; gap: 0.7rem; }
.fv2-bar-lbl { font-size: 0.72rem; font-weight: 500; color: var(--gray-500); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv2-lbl-alert { color: #c0392b; font-weight: 700; }
.fv2-bar-track { height: 7px; background: var(--gray-100); border-radius: 9999px; overflow: hidden; }
.fv2-bar-fill { height: 100%; border-radius: 9999px; width: 0%; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.fv2-bar-navy  { background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%); }
.fv2-bar-gold  { background: linear-gradient(90deg, #7a5a00 0%, var(--gold) 100%); }
.fv2-bar-alert { background: linear-gradient(90deg, #8b0000 0%, #c0392b 100%); }
.fv2-bar-pct { font-size: 0.7rem; font-weight: 700; color: var(--navy); }
.fv2-pct-alert { color: #c0392b; }

/* ── Word cloud ── */
.fv2-wordcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  align-items: baseline;
  padding: 0.5rem 0;
  line-height: 1.6;
  flex: 1;
}
.wc-word { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; cursor: default; transition: opacity 0.2s; }
.wc-word:hover { opacity: 0.7; }
.wc-xl { font-size: 2rem; }
.wc-lg { font-size: 1.45rem; }
.wc-md { font-size: 1.1rem; }
.wc-sm { font-size: 0.82rem; }

/* ── Infographic bars (support services) ── */
.fv2-infographic-bars { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.fv2-inf-row { display: grid; grid-template-columns: 1.5rem 1fr 6rem; align-items: center; gap: 0.6rem; }
.fv2-inf-icon { font-size: 1rem; text-align: center; }
.fv2-inf-meta { display: flex; flex-direction: column; }
.fv2-inf-name { font-size: 0.75rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.fv2-inf-n    { font-size: 0.65rem; color: var(--gray-400); }
.fv2-inf-track { height: 6px; background: var(--gray-100); border-radius: 9999px; overflow: hidden; }
.fv2-inf-fill  { height: 100%; border-radius: 9999px; width: 0%; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* ── Staff–Student gap visual ── */
.fv2-gap-visual { display: flex; flex-direction: column; gap: 0.85rem; flex: 1; padding: 0.25rem 0; }
.fv2-gap-row { display: grid; grid-template-columns: 4.5rem 1fr; align-items: center; gap: 0.75rem; }
.fv2-gap-role { font-size: 0.75rem; font-weight: 700; color: var(--navy); text-align: right; }
.fv2-gap-bar-wrap { position: relative; height: 2.2rem; background: var(--gray-100); border-radius: 6px; overflow: hidden; }
.fv2-gap-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  display: flex; align-items: center; padding: 0 0.75rem;
  border-radius: 6px; width: 0%;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.fv2-gap-label { font-size: 0.8rem; font-weight: 700; color: #fff; white-space: nowrap; }
.fv2-gap-delta { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0.75rem; background: var(--gray-50); border-radius: var(--radius); margin-top: 0.25rem; border: 1px solid var(--gray-200); }
.fv2-gap-delta-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.fv2-gap-delta-lbl { font-size: 0.72rem; color: var(--gray-400); line-height: 1.4; }

/* ── Quotes stack ── */
.fv2-quotes-stack { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.fv2-quote {
  background: var(--gray-50);
  border-left: 3px solid var(--navy);
  border-radius: 0 6px 6px 0;
  padding: 0.85rem 1rem;
  margin: 0;
}
.fv2-quote--gold { border-left-color: var(--gold); background: var(--gold-light); }
.fv2-quote p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-style: italic; color: var(--navy); margin: 0 0 0.3rem; line-height: 1.5; }
.fv2-quote cite { font-size: 0.7rem; color: var(--gray-400); font-style: normal; }

/* ── Framework hex grid ── */
.fv2-fw-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 767px) { .fv2-fw-layout { grid-template-columns: 1fr; } }
.fv2-hexgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.fv2-hex {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0.6rem;
  transition: transform 0.25s;
  cursor: default;
}
.fv2-hex:hover { transform: scale(1.06); }
.fv2-hex--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.fv2-hex--gold { background: linear-gradient(135deg, #7a5a00 0%, var(--gold) 100%); }
.fv2-hex-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.4); line-height: 1; margin-bottom: 0.25rem; }
.fv2-hex-lbl { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }

/* ── Card action buttons ── */
.fv2-card-actions { display: flex; gap: 0.6rem; align-items: center; margin-top: auto; padding-top: 0.75rem; flex-wrap: wrap; }
.fv2-btn-read {
  padding: 0.55rem 1.1rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.fv2-btn-read:hover { background: var(--navy-light); }
.fv2-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--gold-light);
  color: #7a5a00;
  border: 1px solid rgba(201,148,58,0.35);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.fv2-btn-dl:hover { background: #eeddb8; border-color: var(--gold); }

/* ── Modals ── */
.fv2-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,26,45,0.72);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.fv2-modal-overlay.open { display: flex; animation: fv2FadeIn 0.25s ease both; }
@keyframes fv2FadeIn { from{opacity:0} to{opacity:1} }
.fv2-modal {
  background: #fff;
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.25rem;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(15,26,45,0.28);
  animation: fv2SlideUp 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes fv2SlideUp { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }
.fv2-modal h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 0.5rem 0 1rem; line-height: 1.3; }
.fv2-modal p  { font-size: 0.9rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 0.85rem; }
.fv2-modal ul { margin-bottom: 0.85rem; }
.fv2-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  background: var(--gray-100); border: none;
  border-radius: 50%; cursor: pointer;
  font-size: 0.85rem; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.fv2-modal-close:hover { background: var(--navy); color: #fff; }
.fv2-modal-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem; border-radius: 9999px;
  margin-bottom: 0.25rem;
}
.fv2-modal-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--gray-200); margin-top: 0.5rem; }


/* =====================================================
   GALLERY v2 — Filtered masonry-style grid + Lightbox
   (glry- prefix = gallery, no collision with existing)
===================================================== */

/* Filter pills */
.glry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.glry-pill {
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--gray-500);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.glry-pill:hover { border-color: var(--navy); color: var(--navy); }
.glry-pill--active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Grid */
.glry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.875rem;
}
@media (max-width: 900px) { .glry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 540px) { .glry-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; } }

/* Items */
.glry-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.glry-item--wide { grid-column: span 2; }
@media (max-width: 540px) { .glry-item--wide { grid-column: span 1; } }

.glry-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,58,95,0.16); }

.glry-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.glry-item:hover img { transform: scale(1.05); }

/* Placeholder shown when img fails to load */
.glry-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, #fff 100%);
  gap: 0.4rem;
}
.glry-ph-code { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 700; color: rgba(30,58,95,0.08); line-height: 1; }
.glry-ph-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-300); }

/* Hover overlay */
.glry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,42,69,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
}
.glry-item:hover .glry-overlay { opacity: 1; }
.glry-overlay-title { font-size: 0.85rem; font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: 0.2rem; }
.glry-overlay-sub   { font-size: 0.7rem; color: rgba(255,255,255,0.65); }

/* Lightbox */
.glry-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9500;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.glry-lightbox.open { display: flex; }

.glry-lb-box {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.glry-lb-box img {
  width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.glry-lb-close {
  position: absolute; top: -2.75rem; right: 0;
  width: 2.2rem; height: 2.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.1rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.glry-lb-close:hover { background: #c0392b; }
.glry-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.2rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.glry-lb-nav:hover { background: var(--navy); border-color: var(--navy); }
.glry-lb-prev { left: -3.5rem; }
.glry-lb-next { right: -3.5rem; }
@media (max-width: 700px) {
  .glry-lb-prev { left: 0.5rem; }
  .glry-lb-next { right: 0.5rem; }
}
.glry-lb-caption {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-top: 0.85rem;
  line-height: 1.5;
}

