/**
 * Strona glowna Maris — redesign 2026
 * Sekcje: hero, marquee, bento, about, news, grants, slogan, contact
 */

/* ========== SHARED ========== */
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head__badge {
  display: inline-block;
  padding: 0.4em 1.2em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}

.section-head__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
}

/* ========== 1. HERO ========== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero,
.site-main > .hero {
  opacity: 1 !important;
  transform: none !important;
}

/* ~15% niżej niż pełny viewport (wcześniej 100svh / min 540px) */
.hero .swiper-slide {
  height: 85svh;
  min-height: 459px;
}

.hero__slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

/* Warstwa zdjęcia — osobno od gradientów, żeby móc animować fade-in */
.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(7,25,58,.78) 0%, rgba(10,32,71,.42) 50%, rgba(10,32,71,.18) 100%);
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(6,16,33,.65) 100%);
}

@keyframes hero-slide-photo-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-slide-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.125rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Wejście: najpierw zdjęcie, potem od góry badge → tytuł → podtytuł → przycisk */
.swiper-slide-active .hero__slide-bg {
  animation: hero-slide-photo-in 1.25s ease-out forwards;
}

.hero__slide .hero__badge,
.hero__slide .hero__title,
.hero__slide .hero__desc,
.hero__slide .hero__btn {
  opacity: 0;
}

.swiper-slide-active .hero__slide .hero__badge {
  animation: hero-slide-fade-up 0.55s ease-out forwards;
  animation-delay: 0.78s;
}

.swiper-slide-active .hero__slide .hero__title {
  animation: hero-slide-fade-up 0.58s ease-out forwards;
  animation-delay: 0.95s;
}

.swiper-slide-active .hero__slide .hero__desc {
  animation: hero-slide-fade-up 0.58s ease-out forwards;
  animation-delay: 1.12s;
}

.swiper-slide-active .hero__slide .hero__btn {
  animation: hero-slide-fade-up 0.58s ease-out forwards;
  animation-delay: 1.29s;
}

@media (prefers-reduced-motion: reduce) {
  .swiper-slide-active .hero__slide-bg {
    animation: none;
    opacity: 1;
  }

  .hero__slide .hero__badge,
  .hero__slide .hero__title,
  .hero__slide .hero__desc,
  .hero__slide .hero__btn {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) clamp(6rem, 14vw, 10rem);
  text-decoration: none;
  color: #fff;
}

/* Nadpisanie globalnego a:hover (niebieski) — tytuł na hover: żółty */
.hero__content:hover {
  color: #fff;
}

.hero__content:hover .hero__title {
  color: var(--color-accent);
}

.hero__content:hover .hero__desc {
  color: rgba(255, 255, 255, 0.92);
}

.hero__badge {
  display: inline-block;
  padding: 0.35em 1em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
  color: #fff;
  transition: color 0.25s ease;
}

.hero__desc {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.hero__btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(255,215,0,.35);
  transition: transform .25s, box-shadow .25s;
}

.hero__content:hover .hero__btn {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,215,0,.5);
}

.hero__pagination {
  position: absolute;
  bottom: 7rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 5;
}

.hero__pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  transition: background .3s, width .3s;
}

.hero__pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--color-accent);
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(50px, 8vw, 120px);
}

@media (max-width: 768px) {
  /* Treść na środku w pionie (wcześniej flex-end + duży padding dolny) */
  .hero__slide {
    align-items: center;
    justify-content: center;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
  }

  .hero__slide::after {
    /* Jaśniejszy, równiejszy półcień — czytelność przy wyśrodkowanym tekście */
    background: linear-gradient(
      180deg,
      rgba(6, 16, 33, 0.35) 0%,
      rgba(6, 16, 33, 0.5) 45%,
      rgba(6, 16, 33, 0.58) 100%
    );
  }

  .hero__content {
    align-items: center;
    text-align: center;
    padding: clamp(1.5rem, 5vh, 2.5rem) clamp(1.25rem, 5vw, 1.5rem);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Kropki pod slajdem — trochę niżej, żeby nie nachodziły na wyśrodkowany blok */
  .hero__pagination {
    bottom: clamp(3.25rem, 10vh, 5rem) !important;
  }
}

/* ========== 2. MARQUEE ========== */
.marquee-wrap {
  padding: clamp(2rem, 5vw, var(--space-8)) 0 var(--space-8);
  border-bottom: 1px solid rgba(30,60,114,.08);
  overflow: hidden;
}

.marquee-wrap__head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.marquee-wrap__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.marquee {
  --gap: clamp(2rem, 5vw, 4rem);
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__track img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.25s ease;
}

.marquee__track img:hover {
  transform: scale(1.06);
}

@keyframes marquee-scroll {
  to { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ========== 3. BENTO GRID ========== */
.bento {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .bento__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }
  .bento__card--lg { grid-column: span 2; min-height: 340px; }
}

@media (min-width: 1000px) {
  .bento__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
  }
  .bento__card--lg { grid-column: span 2; }
}

.bento__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  border-radius: clamp(16px, 3vw, 28px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}

.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(10,26,54,.22);
}

.bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,61,.1) 0%, rgba(15,31,61,.82) 100%);
  transition: opacity .35s;
}

.bento__card:hover .bento__overlay { opacity: .9; }

.bento__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bento__icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-1);
}

.bento__name {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.bento__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: 32ch;
}

.bento__cta {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 0.5em 1.4em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  transition: transform .2s, box-shadow .2s;
}

.bento__card:hover .bento__cta {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,215,0,.35);
}

/* ========== 4. ABOUT ========== */
.about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(74,144,226,.06), transparent 50%),
    linear-gradient(180deg, var(--color-bg-page), rgba(244,246,250,.6));
}

.about__wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about__wrap { grid-template-columns: 1.2fr 0.8fr; }
}

.about__heading {
  text-align: left;
}

.about__text p {
  margin: 0 0 var(--space-4);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.about__text .btn { margin-top: var(--space-4); }

.about__counters {
  display: grid;
  gap: var(--space-4);
}

.about__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(16px, 3vw, 24px);
  background: linear-gradient(145deg, rgba(30,60,114,.92), rgba(26,51,96,.96));
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.about__counter img {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-3);
}

.about__num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.about__num::after { content: "+"; }

.about__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  margin-top: var(--space-2);
}

/* ========== 5. NEWS ========== */
.news {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42, 82, 152, 0.35), transparent 55%),
    linear-gradient(165deg, #0f1f3d 0%, #1a3360 42%, #1e3c72 72%, #152a52 100%);
  color: rgba(255, 255, 255, 0.92);
}

.news .section-head__badge {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 215, 0, 0.16);
  border-color: rgba(255, 215, 0, 0.42);
}

.news .section-head__title {
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #e2e8f0 45%,
    rgba(186, 210, 255, 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news__card {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(16px, 3vw, 24px);
  background: #fff;
  border: 1px solid rgba(30,60,114,.08);
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}

.news__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.news__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-mid));
  color: #fff;
}

.news__day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.news__month {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: .85;
}

.news__body { flex: 1; min-width: 0; }

.news__heading {
  margin: 0 0 var(--space-2);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.news__heading a {
  color: var(--color-primary);
  text-decoration: none;
}

.news__heading a:hover { text-decoration: underline; }

.news__excerpt {
  margin: 0 0 var(--space-3);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.news__more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.news__more:hover { color: var(--color-accent-warm); }

/* ========== 6. GRANTS ========== */
.grants {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(
    165deg,
    #fffbeb 0%,
    rgba(255, 229, 92, 0.42) 38%,
    rgba(255, 215, 0, 0.38) 72%,
    rgba(255, 200, 80, 0.28) 100%
  );
}

.grants__intro {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-10);
}

@media (min-width: 700px) {
  .grants__intro { grid-template-columns: auto 1fr; }
}

.grants__logo img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.grants__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-primary);
}

.grants__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

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

.grants__gallery a {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.grants__gallery a:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

/* ========== 7. SLOGAN ========== */
.slogan {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.slogan__text {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

/* ========== 8. CONTACT ========== */
.contact {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #143261 0%, #0d2347 100%);
  color: #fff;
}

.contact__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.contact__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 7vw, 100px);
}

.contact__title {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.contact__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact__list {
  margin: 0 0 var(--space-8);
  padding: 0;
  list-style: none;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  font-size: 1rem;
  font-weight: 600;
}

.contact__list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.contact__list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact__maps {
  display: grid;
  gap: var(--space-4);
}

.contact__maps iframe {
  width: 100%;
  min-height: 200px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact__form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(16px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 48px rgba(7,20,43,.18);
  backdrop-filter: blur(14px);
}

.contact__form-heading {
  margin: 0 0 var(--space-6);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.contact__row {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 600px) {
  .contact__row--split { grid-template-columns: 1fr 1fr; }
}

.contact__form label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.contact__form textarea { resize: vertical; min-height: 8rem; }

.contact__form input.error,
.contact__form textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,.12);
}

.contact__field-error {
  display: none;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffd4d9;
}

.contact__field-error:not([hidden]) {
  display: block;
}

.contact__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact__checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
}

.contact__submit {
  width: 100%;
  margin-top: var(--space-2);
  padding: 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255,215,0,.22);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,215,0,.35);
  background: var(--color-accent-hover);
}

.contact__submit:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
  box-shadow: 0 12px 28px rgba(255,215,0,.18);
}

.contact__honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact__success {
  max-width: 54rem;
  margin: 0 auto var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(181,255,183,.28);
  background: linear-gradient(135deg, rgba(230,255,237,.96), rgba(196,245,210,.82));
  color: #164b1d;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(10,26,54,.14);
}

.contact__success.is-error {
  border-color: rgba(255, 173, 181, 0.32);
  background: linear-gradient(135deg, rgba(92, 20, 27, 0.96), rgba(122, 29, 39, 0.88));
  color: #ffe3e7;
}

.contact__success.is-success {
  border-color: rgba(181,255,183,.28);
}

.contact__success[hidden] { display: none !important; }

/* ========== LIGHTBOX (kept from original) ========== */
.home-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: rgba(0,0,0,.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.home-lightbox.is-open { opacity: 1; visibility: visible; }

.home-lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.home-lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}

.home-lightbox__close:hover { background: rgba(255,255,255,.3); }
