/* ==========================================================================
   REGAL HERITAGE DESIGN SYSTEM & HISTORICAL CHRONICLES THEME
   ========================================================================== */

:root {
  /* Royal Color Palette */
  --bg-deep-velvet: #120105;
  --bg-crimson-dark: #1f0308;
  --bg-crimson-glass: rgba(36, 6, 13, 0.75);

  --gold-primary: #f0c05a;
  --gold-light: #ffe89e;
  --gold-dark: #b8860b;
  --gold-glow: rgba(240, 192, 90, 0.45);
  --gold-border: rgba(240, 192, 90, 0.3);

  --saffron-vibrant: #ff6f00;
  --saffron-glow: rgba(255, 111, 0, 0.35);
  --cream-pure: #faf0e6;
  --text-muted: #d9c2ba;

  /* Elevation & Shadows */
  --shadow-ambient: 0 10px 30px -10px rgba(0, 0, 0, 0.9);
  --shadow-gilded: 0 0 25px var(--gold-glow);
  --shadow-dramatic: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Sticky Header & Nav
   ========================================================================== */
body {
  padding-top: 80px;
}

.site-header-wrapper {
  position: fixed; /* Changed from sticky to fixed */
  top: 0;
  left: 0;
  right: 0;
  /* width: 100%; is removed so it strictly binds to the viewport edges */
  z-index: 1000;
  background: var(--bg-crimson-dark);
}

.site-header {
  position: relative;
  width: 100%;
  background: rgba(24, 2, 6, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-smooth);
}

.site-header.scrolled,
.site-header-wrapper.is-scrolled .site-header {
  background: rgba(14, 1, 4, 0.96);
  border-bottom: 1.5px solid var(--gold-primary);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.9),
    0 1px 15px var(--gold-glow);
}

.header-container {
  height: 80px;
}

/* ==========================================================================
   1. Featured Historical Image Banner (Hero Artifact)
   ========================================================================== */
.featured-history-section {
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.featured-history-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-dark) 25%,
    #8b0000 60%,
    var(--saffron-vibrant) 100%
  );
  box-shadow: var(--shadow-dramatic);
  animation: featuredFrameGlow 5s ease-in-out infinite alternate;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.featured-history-wrapper:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.95),
    0 0 50px var(--gold-glow);
}

@keyframes featuredFrameGlow {
  0% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.8),
      0 0 25px var(--gold-glow);
  }
  100% {
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.9),
      0 0 55px var(--saffron-glow),
      0 0 85px var(--gold-glow);
  }
}

.featured-aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 192, 90, 0.35) 0%,
    rgba(255, 111, 0, 0.2) 40%,
    rgba(139, 0, 0, 0.1) 70%,
    transparent 85%
  );
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: auraBreathe 6s ease-in-out infinite alternate;
}

@keyframes auraBreathe {
  0% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.featured-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-deep-velvet);
  border: 1px solid var(--gold-primary);
  z-index: 1;
}

.featured-history-img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
}

.featured-history-wrapper:hover .featured-history-img {
  transform: scale(1.04);
  filter: contrast(106%) brightness(105%);
}

.featured-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 232, 158, 0.55) 50%,
    rgba(255, 255, 255, 0.75) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
  animation: shimmerRun 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shimmerRun {
  0% {
    left: -150%;
  }
  30% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* Ornate Gilded Corners */
.featured-corner-accent {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--gold-light);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 6px var(--gold-primary));
}
.corner-tl {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
}
.corner-tr {
  top: 6px;
  right: 6px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 6px 0 0;
}
.corner-bl {
  bottom: 6px;
  left: 6px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 6px;
}
.corner-br {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 6px 0;
}

/* ==========================================================================
   2. Historical Milestones Timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--saffron-vibrant) 15%,
    var(--gold-primary) 50%,
    var(--saffron-vibrant) 85%,
    transparent 100%
  );
  box-shadow: 0 0 16px var(--gold-glow);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
  box-sizing: border-box;
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 50px;
  text-align: right;
  transform: translateX(-50px) translateY(20px);
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 50px;
  text-align: left;
  transform: translateX(50px) translateY(20px);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.timeline-dot {
  position: absolute;
  top: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    var(--gold-light),
    var(--saffron-vibrant)
  );
  border: 3px solid var(--bg-deep-velvet);
  box-shadow:
    0 0 14px var(--gold-glow),
    0 0 22px var(--saffron-glow);
  z-index: 5;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.45);
  box-shadow:
    0 0 25px var(--gold-primary),
    0 0 35px var(--saffron-vibrant);
}

.timeline-content {
  background: var(--bg-crimson-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.8),
    0 0 25px var(--gold-glow);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(240, 192, 90, 0.18),
    rgba(255, 111, 0, 0.08)
  );
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 4px 18px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 10px var(--gold-glow);
}

.timeline-content h4 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   3. Archival Gallery (3x4 Pagination System)
   ========================================================================== */
.paginated-gallery-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.gallery-controls-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.75rem;
}

.gallery-nav-buttons {
  display: inline-flex;
  gap: 14px;
}

.gallery-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(43, 5, 13, 0.95),
    rgba(18, 1, 5, 0.95)
  );
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  transition: var(--transition-smooth);
}

.gallery-arrow-btn:hover:not(:disabled) {
  background: linear-gradient(
    135deg,
    var(--gold-primary) 0%,
    var(--saffron-vibrant) 100%
  );
  color: var(--bg-deep-velvet);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 22px var(--gold-glow);
}

.gallery-arrow-btn:disabled,
.gallery-arrow-btn.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: rgba(240, 192, 90, 0.2);
  box-shadow: none;
}

.gallery-set {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.gallery-set.active {
  display: grid;
  animation: fadeInSet 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSet {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.memory-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(20, 2, 6, 0.7);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-ambient);
  cursor: pointer;
  height: 220px;
  transition: var(--transition-smooth);
}

.memory-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
  filter: sepia(15%) contrast(102%);
}

.memory-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(14, 1, 4, 0.95) 0%,
    rgba(14, 1, 4, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.memory-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--gold-primary);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.9),
    0 0 20px var(--gold-glow);
  z-index: 5;
}

.memory-card:hover .memory-card-img {
  transform: scale(1.1);
  filter: sepia(0%) contrast(105%);
}

.memory-card:hover .memory-card-overlay {
  opacity: 1;
}

.memory-card-year {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 800;
  letter-spacing: 0.75px;
}

.memory-card-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-pure);
  line-height: 1.35;
  margin-top: 3px;
}

.news-source-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(31, 3, 8, 0.9);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

/* ==========================================================================
   4. Interactive Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 1, 3, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox-modal.is-active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 950px;
  width: 100%;
  text-align: center;
  animation: zoomInLightbox 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomInLightbox {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--gold-light);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.2) rotate(90deg);
}

.lightbox-img {
  max-height: 78vh;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 50px var(--gold-glow);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--cream-pure);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   5. Detailed Historical Chronicles (आमचा गौरवशाली इतिहास)
   ========================================================================== */
.history-story-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden; /* Added to clip overflowing aura glows */
  background: radial-gradient(
    circle at 50% 20%,
    rgba(60, 6, 18, 0.85) 0%,
    rgba(18, 1, 4, 0.98) 70%,
    var(--bg-deep-velvet) 100%
  );
}

.story-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3rem;
}

.story-block-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.story-block-row.reverse-row {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-block-row.reverse-row .story-text-card {
  order: 2;
}
.story-block-row.reverse-row .story-media-col {
  order: 1;
}

.story-text-card {
  background: var(--bg-crimson-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.5rem 2.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-smooth);
}

.story-text-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 30px var(--gold-glow);
}

.story-chapter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(240, 192, 90, 0.15),
    rgba(255, 111, 0, 0.08)
  );
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 10px var(--gold-glow);
}

.story-heading {
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.story-description {
  color: var(--cream-pure);
  font-size: 1.05rem;
  line-height: 1.85;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.leadership-item {
  background: rgba(14, 1, 4, 0.7);
  border-left: 3px solid var(--gold-primary);
  padding: 1rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: var(--transition-smooth);
}

.leadership-item:hover {
  background: rgba(240, 192, 90, 0.1);
  transform: translateX(6px);
}

.leadership-tag {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.leadership-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.story-image-frame {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 8px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-dark) 30%,
    #8b0000 65%,
    var(--saffron-vibrant) 100%
  );
  box-shadow: var(--shadow-dramatic);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-image-frame:hover {
  transform: translateY(-6px) scale(1.02);
}

.story-aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 192, 90, 0.3) 0%,
    rgba(255, 111, 0, 0.18) 50%,
    transparent 80%
  );
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.story-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-deep-velvet);
  border: 1px solid var(--gold-primary);
  z-index: 1;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
}

.story-image-frame:hover .story-img {
  transform: scale(1.06);
  filter: contrast(106%) brightness(105%);
}

.story-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 232, 158, 0.5) 50%,
    rgba(255, 255, 255, 0.7) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-frame:hover .story-shimmer-sweep {
  left: 200%;
}

.story-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-light);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 5px var(--gold-primary));
}
.story-corner.corner-tl {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
  border-radius: 5px 0 0 0;
}
.story-corner.corner-tr {
  top: 6px;
  right: 6px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 5px 0 0;
}
.story-corner.corner-bl {
  bottom: 6px;
  left: 6px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 5px;
}
.story-corner.corner-br {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 5px 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .gallery-set {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .story-block-row,
  .story-block-row.reverse-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-block-row.reverse-row .story-text-card {
    order: 1;
  }
  .story-block-row.reverse-row .story-media-col {
    order: 2;
  }
  .story-text-card {
    padding: 2rem;
  }
  .story-heading {
    font-size: 1.45rem;
  }
  .story-image-frame {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    /* Move the central line to the left edge of the screen */
    left: 28px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    /* Reset all alternating desktop logic */
    width: 100%;
    left: 0;
    padding-left: 65px; /* Create space for the line and dot */
    padding-right: 0;
    text-align: left;
    margin-bottom: 2.5rem;
    transform: translateY(20px);
  }

  .timeline-item.revealed {
    transform: translateY(0);
  }

  /* Force the dots to sit exactly on the vertical line */
  .timeline-item .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 17px;
    right: auto;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .gallery-set {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 520px) {
  .gallery-set {
    grid-template-columns: 1fr;
  }
  .gallery-arrow-btn {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .lightbox-modal {
    padding: 1.25rem;
  }
  .lightbox-close {
    top: -42px;
    font-size: 2rem;
  }
}
