/* ==========================================================================
   Rock Tribute Collective, design tokens
   ========================================================================== */
:root{
  --black: #000000;
  --black-soft: #150f09;
  --black-card: #1c1309;
  --paper: #ecd9ac;
  --paper-dim: #c7ad7c;
  --paper-faint: rgba(236,217,172,0.55);
  --rust: #c1552c;
  --rust-deep: #7c2f1c;
  --ember: #e8833f;
  --line: rgba(236,217,172,0.14);
  --line-strong: rgba(236,217,172,0.28);

  --font-display: 'Bevan', serif;
  --font-accent: 'Rye', serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --container: 1180px;
  --radius: 3px;

  --ease: cubic-bezier(.4,.06,.2,1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  padding-top: var(--header-h, 70px);
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3{ margin: 0; font-weight: 400; }
p{ margin: 0 0 1em; color: var(--paper-dim); }
p:last-child{ margin-bottom: 0; }

.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;
}

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--rust); color: var(--paper); padding: .8em 1.4em;
}
.skip-link:focus{ left: 1em; top: 1em; }

:focus-visible{
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* Grain overlay, keeps the poster feel consistent across every section */
.grain{
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section{
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.eyebrow{
  font-family: var(--font-accent);
  color: var(--rust);
  font-size: 1.05rem;
  letter-spacing: .12em;
  margin: 0 0 .6em;
}
.section-title{
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--paper);
  line-height: 1.15;
  margin-bottom: .7em;
  max-width: 16ch;
}
#about .section-title{ max-width: none; }

/* Scroll reveal */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .95em 1.8em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-rust{
  background: var(--rust);
  color: var(--paper);
  box-shadow: 0 0 0 1px var(--rust-deep) inset;
}
.btn-rust:hover{ background: var(--ember); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn-outline:hover{ border-color: var(--rust); color: var(--rust); transform: translateY(-2px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark{ width: 40px; height: 40px; }
.brand-word{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--paper);
  letter-spacing: .02em;
}

.primary-nav{
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav ul{
  display: flex;
  gap: 26px;
}
.primary-nav a{
  font-family: var(--font-label);
  font-size: 1.02rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color .2s var(--ease);
  position: relative;
  white-space: nowrap;
}
.primary-nav ul a::after{
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav ul a:hover{ color: var(--paper); }
.primary-nav ul a:hover::after{ transform: scaleX(1); }
.nav-cta{ padding: .7em 1.4em; font-size: .92rem; }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block; height: 2px; width: 100%;
  background: var(--paper);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 76px 24px 100px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(193,85,44,0.16), transparent 60%),
    var(--black);
}
.hero-inner{
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge{
  width: 108px;
  margin: 0 auto 8px;
}
.hero-logo{
  width: min(560px, 88vw);
  margin: 0 auto;
}
.hero-sub{
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--paper-dim);
  max-width: 46ch;
  margin: 8px auto 2.2em;
}
.hero-sub a{ color: inherit; }
.hero-heart{ color: darkred; font-size: 1.15em; }
.hero-social{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-fade{
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* Ring badge (shared SVG component) */
.ring-badge{ width: 100%; height: auto; overflow: visible; }
.ring-outer, .ring-inner{
  fill: none;
  stroke: var(--rust);
}
.ring-outer{ stroke-width: 2.5; }
.ring-inner{ stroke-width: 1; stroke: var(--rust-deep); }
.ring-text{
  font-family: var(--font-accent);
  font-size: 13.5px;
  letter-spacing: .12em;
  fill: var(--paper);
}
.ring-text-sub{ fill: var(--paper-dim); }
.ring-center{
  font-family: var(--font-display);
  font-size: 30px;
  fill: var(--paper);
  text-anchor: middle;
}
.ring-badge-lg .ring-text{ font-size: 15px; }
.ring-center-lg{ font-size: 42px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-copy p{ font-size: 1.08rem; }
.feature-list{ display: flex; flex-direction: column; gap: 26px; }
.feature-list li{ display: flex; gap: 16px; align-items: flex-start; }
.feature-icon{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--rust);
}
.feature-icon svg{ width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.feature-text{ color: var(--paper-dim); font-size: .98rem; padding-top: 6px; }
.feature-text strong{ color: var(--paper); display: block; font-family: var(--font-label); font-size: 1.08rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 2px; }

/* ==========================================================================
   Band members
   ========================================================================== */
.member-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.member-grid-spacer{
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.member-photo{
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  margin-bottom: 18px;
  overflow: hidden;
}
.member-photo img{ width: 100%; height: 100%; object-fit: cover; object-position: top; }
.member-photo.placeholder{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  border: 1px dashed var(--line-strong);
  color: var(--paper-faint);
}
.member-photo.placeholder svg{ width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.member-photo.placeholder span{ font-family: var(--font-label); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }

.member-name{
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: .2em;
}
.member-role{
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rust);
  font-size: .88rem;
  margin: 0 0 .7em;
}
.member-bio{ font-size: .96rem; margin: 0; }

/* ==========================================================================
   Heart tribute section
   ========================================================================== */
.section-heart{
  background: var(--black-soft);
}
.heart-grid{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.heart-badge-wrap{ position: sticky; top: 120px; }
.heart-copy p{ font-size: 1.08rem; }

.setlist-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.setlist-chips li{
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .92rem;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .5em 1.1em;
}

.video-frame{
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-card);
}
.video-frame iframe{ width: 100%; aspect-ratio: 16/9; display: block; border: 0; }
.video-placeholder{
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--paper-faint);
}
.video-icon{ width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.video-placeholder p{ margin: 0; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; }

/* ==========================================================================
   Shows
   ========================================================================== */
.shows-empty{
  text-align: center;
  max-width: 480px;
  margin: 20px auto 8px;
  padding: 56px 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.shows-empty svg{ width: 46px; height: 46px; fill: none; stroke: var(--rust); stroke-width: 1.6; margin: 0 auto 18px; }
.shows-empty h3{ font-family: var(--font-display); font-size: 1.35rem; color: var(--paper); margin-bottom: .5em; font-weight: 400; }
.shows-empty p{ margin-bottom: 1.6em; }

.show-row{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}
.show-date{
  display: flex; flex-direction: column; align-items: center;
  width: 70px; flex-shrink: 0;
  font-family: var(--font-label);
}
.show-month{ color: var(--rust); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }
.show-day{ color: var(--paper); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.show-details{ flex: 1; }
.show-venue{ font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; color: var(--paper); margin-bottom: .2em; }
.show-location{ color: var(--paper-dim); margin: 0; font-size: .95rem; }

.shows-booking-note{
  text-align: center;
  margin-top: 36px;
  font-size: .98rem;
}
.shows-booking-note a{ color: var(--rust); border-bottom: 1px solid var(--rust-deep); }
.shows-booking-note a:hover{ color: var(--ember); border-color: var(--ember); }

/* ==========================================================================
   Media / gallery
   ========================================================================== */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item{
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; }
.gallery-item:not(.placeholder){
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.gallery-item:not(.placeholder):hover,
.gallery-item:not(.placeholder):focus-visible{
  border-color: var(--rust);
}
.gallery-item:not(.placeholder) img{ transition: transform .3s var(--ease); }
.gallery-item:not(.placeholder):hover img{ transform: scale(1.05); }
.gallery-item.placeholder{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  border: 1px dashed var(--line-strong);
  color: var(--paper-faint);
}
.gallery-item.placeholder svg{ width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
.gallery-item.placeholder span{ font-family: var(--font-label); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }

/* ==========================================================================
   News
   ========================================================================== */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card{
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.news-card:hover{ border-color: var(--rust-deep); transform: translateY(-3px); }
.news-date{
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rust);
  font-size: .82rem;
  margin-bottom: .8em;
}
.news-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: .5em;
  line-height: 1.3;
}
.news-card p{ font-size: .96rem; margin: 0; }

/* ==========================================================================
   Join / ticket
   ========================================================================== */
.section-join{ background: var(--black-soft); }
.join-inner{ display: flex; justify-content: center; }
.ticket{
  width: 100%;
  max-width: 720px;
  background: var(--black-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 48px 44px;
  position: relative;
  text-align: center;
}
.ticket::before, .ticket::after{
  content: '';
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid var(--line-strong);
}
.ticket::before{ left: -13px; }
.ticket::after{ right: -13px; }
.ticket .eyebrow, .ticket .section-title{ }
.ticket-copy .section-title{ margin: 0 auto .5em; }
.ticket-copy p{ max-width: 42ch; margin: 0 auto 1.8em; }

.signup-form{
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.signup-form input{
  flex: 1;
  min-width: 0;
}
.form-note{
  margin-top: 14px;
  font-size: .92rem;
  color: var(--ember);
  min-height: 1.2em;
}

/* Shared form field styling */
input[type="text"], input[type="email"], textarea{
  background: var(--black);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .9em 1.1em;
  width: 100%;
  transition: border-color .2s var(--ease);
}
input::placeholder, textarea::placeholder{ color: var(--paper-faint); }
input:focus, textarea:focus{ outline: none; border-color: var(--rust); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info p{ font-size: 1.05rem; }
.contact-email{
  display: inline-block;
  font-family: var(--font-label);
  font-size: 1.2rem;
  letter-spacing: .02em;
  color: var(--rust);
  border-bottom: 1px solid var(--rust-deep);
  margin: 14px 0 30px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contact-email:hover{ color: var(--ember); border-color: var(--ember); }

.social-row{ display: flex; gap: 14px; }
.social-row a{
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper-dim);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social-row a:hover{ border-color: var(--rust); color: var(--rust); transform: translateY(-2px); }
.social-row svg{ width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.contact-form{ display: flex; flex-direction: column; gap: 16px; }
.contact-form textarea{ resize: vertical; }
.contact-form .btn{ align-self: flex-start; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ padding: 56px 0 40px; background: var(--black); }
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer-mark{ width: 48px; height: 48px; }
.footer-nav{ display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.footer-nav a{
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  color: var(--paper-dim);
}
.footer-nav a:hover{ color: var(--rust); }
.footer-copy{ font-size: .86rem; color: var(--paper-faint); margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .about-grid, .heart-grid, .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
  .heart-badge-wrap{ position: static; width: 220px; margin: 0 auto; }
  .news-grid{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .member-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px){
  .primary-nav{
    position: fixed;
    top: var(--header-h, 69px); left: 0; right: 0;
    height: calc(100vh - var(--header-h, 69px));
    height: calc(100dvh - var(--header-h, 69px));
    z-index: 500;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 28px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .3s var(--ease), visibility .3s;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .primary-nav.is-open{
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .primary-nav .nav-links{ flex-direction: column; gap: 4px; }
  .primary-nav .nav-links a{
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
    white-space: normal;
  }
  .primary-nav .nav-links a::after{ display: none; }

  .nav-cta{ text-align: center; }
  .menu-toggle{ display: flex; }

  .section{ padding: 64px 0; }
  .news-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .member-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .ticket{ padding: 40px 24px; }
  .signup-form{ flex-direction: column; }
  .show-row{ flex-wrap: wrap; }
  .show-link{ margin-left: 86px; }
}

@media (max-width: 480px){
  .hero{ padding: 56px 20px 80px; }
  .section-title{ font-size: 1.7rem; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .show-link{ margin-left: 0; width: 100%; margin-top: 10px; }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
  padding: 24px;
}
.lightbox.is-open{
  opacity: 1;
  visibility: visible;
}
.lightbox-img{
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position: fixed;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  border-color: var(--rust);
  color: var(--rust);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-close{
  top: 24px; right: 24px;
  width: 44px; height: 44px;
}
.lightbox-close svg{ width: 18px; height: 18px; }
.lightbox-prev,
.lightbox-next{
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
}
.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }
.lightbox-prev svg,
.lightbox-next svg{ width: 22px; height: 22px; }

@media (max-width: 640px){
  .lightbox-close{ top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-prev,
  .lightbox-next{ width: 44px; height: 44px; }
  .lightbox-prev{ left: 10px; }
  .lightbox-next{ right: 10px; }
}
