/* ===========================
   SERVICES.CSS - ENHANCED VERSION
   (Includes styles for services.html overview and individual service pages)
   =========================== */

/* General Body & Main Adjustments */
body {
  line-height: 1.6;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;

/*   width: 100%;
  height: 100%; */
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.service-page-main,
.services-overview-page-main {
  padding-top: 90px;
  padding-bottom: 50px;
}

.service-page-main {
  padding-top: 0; /* elimina el padding que desplazaba la sección */
}

/* --- Shared Heading Styles --- */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #2c2c2c;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
  color: #ef4e50;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ef4e50;
  margin: 1rem auto 0;
  border-radius: 2px;
}


h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  color:white;
}

.btn.primary {
  background-color: #ef4e50;
  color: white;
  border-color: #ef4e50;
}

.btn.primary:hover {
  background-color: #b31221;
  border-color: #b31221;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn.secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* ==================================
   SERVICES OVERVIEW PAGE (services.html)
   ================================== */

.services-overview-page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.services-overview-page-main .red_title {
  color: #ef4e50;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

.services-overview-description {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 4rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 2.5rem 2rem;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  min-height: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.service-card h3 {
  font-size: 1.4rem;
  color: #ef4e50;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-card span {
  font-size: 0.95rem;
  color: #2c2c2c;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.service-card span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ef4e50;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: right;
}

.service-card:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==================================
   INDIVIDUAL SERVICE PAGES
   ================================== */

/* --- Hero Section for Service Details --- */
.service-hero {
  height: 65vh;
  width: 100vw;
  max-width: 100vw;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.service-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 2rem;
}

.service-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
  text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.service-hero p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Specific Hero Backgrounds (add more for each service) */
.facade-hero { 
  background-image: url('/img/serveis/fondo/facanes.JPG');
  background-size: cover;
  background-position: center; 


}

.vertical-hero { 
  background-image: url('/img/serveis/fondo/verticals.png');
  background-size: cover;
  background-position: center; 

}

.desamiantat-hero { 
  background-image: url('/img/serveis/fondo/desamiantat.png');  
  background-size: cover;
  background-position: center;

}

.cobertes-hero { 
  background-image: url('/img/serveis/fondo/impermeabilizacion.png');
  background-size: cover;
  background-position: center;
  
}

.reforcos-hero {
  background-image: url('/img/serveis/fondo/reforcos.png');
  background-size: cover;
  background-position: center;

}

.humitats-hero { 
  background-image: url('/img/serveis/fondo/humitat.JPG');
  background-size: cover;
  background-position: center;

}

.aillament-hero { 
  background-image: url('/img/serveis/fondo/aillament.png');
  background-size: cover;
  background-position: center; 

}

.reformes-hero { 
  background-image: url('/img/serveis/fondo/reforma.jpg'); 
  background-size: cover;
  background-position: center;

}

.obra-nova-hero { 
  background-image: url('/img/serveis/fondo/obra-nova.png');
/*   background-color: #ffa0a0; */
  background-size: cover;
  background-position: center;

}

.interiorisme-hero { 
  background-image: url('/img/render/IMG-20250825-WA0044.png'); 
  background-size: cover;
  background-position: center;

}


.instalacions-hero {
  background-image: url('/img/serveis/instalacions_comunitaries/hero.png'); 
/*   background-color: #ffa0a0; */
  background-size: cover;
  background-position: center;

}

.baixants-hero { 
  background-image: url('/img/serveis/baixants_comunitaris/baixants_hero.png');
  background-size: cover;
  background-position: center;

}








/* --- General Content Blocks --- */
.service-content-block,
.service-process-block,
.service-benefits-block,
.service-applications-block,
.call-to-action-section {
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.service-content-block.grey-bg,
.service-process-block.grey-bg,
.service-benefits-block.grey-bg,
.service-applications-block.grey-bg {
  background-color: #f8f8f8;
  padding-left: 0;
  padding-right: 0;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
  padding: 5rem 2rem 3rem;
  max-width: 85rem;
  margin: auto;
}

.content-wrapper:last-of-type {
  margin-bottom: 0;
}

.content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.content-wrapper .text-block {
  flex: 1;
  padding: 0 1rem;
}

.text-block{
  text-align: center;
  align-items: center;
}

.content-wrapper .image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.content-wrapper .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.content-wrapper .image-block img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}


.service-content-block h2,
.service-process-block h2,
.service-benefits-block h2,
.service-applications-block h2 {
  margin-bottom: 3.5rem;
}

/* --- Process Blocks --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.process-steps .step {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  will-change: transform, box-shadow;
}

.process-steps .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.process-steps .step h3 {
  font-size: 1.5rem;
  color: #ef4e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-steps .step p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* --- Benefits Grid --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.benefit-item {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  will-change: transform, box-shadow;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.benefit-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #2c2c2c;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.benefit-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* --- Applications List (similar to benefits, but for lists) --- */
.applications-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.applications-list li {
  background-color: #ef4e50;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow, background-color;
}

.applications-list li:hover {
  background-color: #b31221;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.applications-list li::before {
  content: '✓';
  font-family: 'Libertinus Math', sans-serif;
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
}

/* --- Call to Action Section --- */
.call-to-action-section {
  text-align: center;
  background-color: #ef4e50;
  color: white;
  padding: 5rem 2rem;
  border-radius: 15px;
  margin-top: 6rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.call-to-action-section h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.call-to-action-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 1.2rem auto 0;
  border-radius: 3px;
}

.call-to-action-section p {
  font-size: 1.3rem;
  margin-bottom: 3.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.call-to-action-section .btn {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}


/* ==================================
   RESPONSIVE ADJUSTMENTS
   ================================== */
@media (max-width: 992px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; margin-bottom: 2.5rem;}
  h2::after { margin-top: 0.8rem; }
  h3 { font-size: 1.6rem; }

  .service-hero {
    height: 55vh;
  }
  .service-hero h1 { font-size: 3.2rem; }
  .service-hero p { font-size: 1.2rem; margin-bottom: 2rem;}

  .services-overview-page-main { padding: 4rem 1.5rem; }
  .services-overview-page-main .red_title { font-size: 2.8rem; margin-bottom: 2rem;}
  .services-overview-description { font-size: 0.95rem; margin-bottom: 3rem; }
  .services-grid-overview { gap: 2rem; }
  .service-card { padding: 2rem 1.5rem; min-height: 320px;}

  .service-content-block,
  .service-process-block,
  .service-benefits-block,
  .service-applications-block,
  .call-to-action-section {
    padding: 4rem 1.5rem;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .process-steps,
  .benefits-grid,
  .applications-list {
    grid-template-columns: 1fr;
  }

  .process-steps .step,
  .benefit-item {
    padding: 1.8rem;
  }

  .applications-list li {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
  }

  .call-to-action-section { margin-top: 4rem; }
  .call-to-action-section h2 { font-size: 2.2rem; margin-bottom: 1.2rem;}
  .call-to-action-section h2::after { margin-top: 0.7rem; }
  .call-to-action-section p { font-size: 1.1rem; margin-bottom: 2.5rem;}
  .call-to-action-section .btn { padding: 0.9rem 2.2rem; font-size: 1.05rem;}
}

@media (max-width: 576px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; margin-bottom: 2rem; }
  h2::after { width: 50px; height: 3px; margin-top: 0.6rem; }
  h3 { font-size: 1.4rem; }
  p { font-size: 1rem; }

  .service-hero {
    height: 50vh;
  }
  .service-hero h1 { font-size: 2.5rem; }
  .service-hero p { font-size: 1.1rem; margin-bottom: 2rem;}
  .service-hero .btn { padding: 0.8rem 1.8rem; font-size: 0.95rem; }

  .services-overview-page-main { padding: 3rem 1rem; }
  .services-overview-page-main .red_title { font-size: 2.2rem; margin-bottom: 2rem;}
  .services-overview-description { font-size: 0.95rem; margin-bottom: 2.5rem; }
  .services-grid-overview { gap: 1.5rem; }
  .service-card { padding: 1.8rem 1rem; min-height: 280px;}
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.9rem; }
  .service-card span { font-size: 0.85rem;}

  .service-content-block,
  .service-process-block,
  .service-benefits-block,
  .service-applications-block,
  .call-to-action-section {
    padding: 3rem 1rem;
  }

  .content-wrapper .image-block img { border-radius: 8px; }
  .process-steps .step, .benefit-item { padding: 1.5rem; }
  .process-steps .step h3, .benefit-item h3 { font-size: 1.2rem; }
  .process-steps .step p, .benefit-item p { font-size: 0.9rem; }

  .applications-list li {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }
  .applications-list li::before { font-size: 1.2em; }


  .call-to-action-section { margin-top: 3rem; border-radius: 10px;}
  .call-to-action-section h2 { font-size: 1.8rem; margin-bottom: 1rem;}
  .call-to-action-section h2::after { width: 60px; height: 3px; margin-top: 0.6rem; }
  .call-to-action-section p { font-size: 1rem; margin-bottom: 2rem;}
  .call-to-action-section .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem;}
}




/* ====== GALLERY CAROUSEL (inline centered) ====== */
:root {
  --slide-w: 52vw; /* ancho de la slide central (responsive) */
  --slide-h: calc(var(--slide-w) * 0.75); /* 4:3 */
  --adj-blur: 5px;
  --adj-brightness: 0.72;
  --gap: 1rem;
}

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
  position: relative;
}

.gc-track-wrapper {
  overflow: hidden;
  flex: 1 1 auto;
}

.gc-track {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  align-items: center;
  transition: transform .45s cubic-bezier(.22,.9,.15,1);
}

.gc-slide {
  flex: 0 0 auto;
  width: var(--slide-w);
  height: var(--slide-h);
  display: grid;
  place-items: center;
  transform-origin: center;
  transition: transform .45s ease, filter .45s ease, opacity .45s ease;
  border-radius: 12px;
  overflow: visible;
}

/* imagen dentro de slide */
.gc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: transform .45s ease, filter .45s ease;
}

/* Estado por defecto: todas difuminadas/oscurecidas */
.gc-slide { filter: blur(var(--adj-blur)) brightness(var(--adj-brightness)); opacity: 0.92; transform: scale(.96); }

/* Centro: nítida y con ligera ampliación */
.gc-slide.center {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
  z-index: 3;
}

/* Slides adyacentes (anterior y siguiente) — menos blur que el resto */
.gc-slide.adjacent {
  filter: blur(calc(var(--adj-blur) / 2)) brightness(calc(var(--adj-brightness) + 0.08));
  opacity: 0.98;
  z-index: 2;
}

/* Botones prev / next */
.gc-btn {
  background: rgba(0,0,0,0.06);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  color: #111;
  transition: background .18s ease, transform .12s ease;
  z-index: 5;
}
.gc-btn:hover { background: rgba(0,0,0,0.12); transform: scale(1.03); }

/* Ajustes responsive */
@media (max-width: 900px) {
  :root { --slide-w: 64vw; }
}
/* --- Mobile tuning --- */
@media (max-width: 576px) {
  .gallery-carousel {
    display: grid;
    grid-template-columns: auto auto; /* 2 columnas solo para los botones */
    grid-template-rows: auto auto;    /* fila 1: carrusel, fila 2: botones */
    justify-content: center;
    row-gap: .6rem;                   /* separación entre imagen y botones */
  }

  /* La pista (imágenes) ocupa las 2 columnas arriba */
  .gc-track-wrapper {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  /* Botones en la segunda fila, uno al lado del otro */
  .gc-prev, .gc-next {
    position: static !important;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    margin: 0;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
    border-radius: 0;
    align-self: center;
    justify-self: center;
  }

  .gc-prev {
    grid-column: 1; /* izquierda */
    grid-row: 2;
    border-right: none;
    border-radius: 6px 0 0 6px;
  }

  .gc-next {
    grid-column: 2; /* derecha */
    grid-row: 2;
    border-left: none;
    border-radius: 0 6px 6px 0;
  }
}


/* ======== SERVICE GALLERY (Interiorisme) ======== */
.service-gallery-block {
  padding: 0 0 3rem; /* ya hereda fondos y spacing de .grey-bg */
}

.service-gallery-block .content-wrapper {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  filter: brightness(1.02);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 2rem;
}

.lightbox.is-open { display: flex; }

.lightbox__figure {
  margin: 0;
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  display: grid;
  gap: 0.75rem;
  place-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.lightbox__caption {
  color: #eee;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.4;
  max-width: 100%;
  padding: .25rem .5rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  transform: none;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.05);
}
.lightbox__close:hover { transform: scale(1.05); }

/* @media (max-width: 576px) {
  .lightbox__prev, .lightbox__next { top: unset; bottom: 1rem; transform: none; }
  .lightbox__prev { left: 1rem; }
  .lightbox__next { right: 1rem; }
}
 */