:root {
  --bg-base: #515d45;
  --bg-deep: #23281f;
  --paper: #f4f1ea;
  --paper-soft: #ede8dc;
  --text-main: #25271f;
  --text-muted: #66695c;
  --accent: #7c8d66;
  --accent-soft: #d7dec8;
  --line: #d6d1c4;
  --line-strong: #bdb6a4;
  --overlay-dark: rgba(9, 11, 8, 0.66);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background: var(--bg-base);
}

body {
  min-height: 100vh;
  padding: 56px 18px;
  position: relative;
}

.backdrop {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 12%, rgba(196, 214, 173, 0.24), transparent 45%),
    radial-gradient(circle at 86% 86%, rgba(239, 224, 191, 0.16), transparent 38%),
    linear-gradient(rgba(7, 9, 7, 0.45), rgba(7, 9, 7, 0.45)),
    url("./assets/images/bg-backdrop.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.shell {
  width: min(1140px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(248, 246, 240, 0.96), rgba(241, 237, 227, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 58px rgba(14, 17, 12, 0.3);
  position: relative;
  z-index: 1;
  padding: 28px;
}

.hero {
  min-height: 500px;
  background-image:
    linear-gradient(105deg, rgba(16, 18, 14, 0.12) 0%, rgba(16, 18, 14, 0.52) 62%),
    url("./assets/images/hero-main.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 18px 18px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 214, 176, 0.34), rgba(198, 214, 176, 0));
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 240, 228, 0.88);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(3px);
  padding: 10px 14px;
  position: relative;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  font-size: 24px;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero-content {
  width: min(650px, 100%);
  padding: 26px 10px;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "Букетерия Воронеж";
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(246, 244, 236, 0.95);
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 10.5vw, 110px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 0 0 22px;
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.52;
  max-width: 470px;
  color: rgba(245, 243, 236, 0.92);
}

button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(15, 18, 14, 0.72);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

button:hover,
button:focus-visible {
  background: rgba(13, 16, 12, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-1px);
}

.hero-feature {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: min(330px, 40%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(10, 12, 10, 0.58);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.hero-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-feature__meta {
  padding: 12px;
}

.hero-feature__meta span {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.9;
  text-transform: uppercase;
}

.hero-feature__meta h3 {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.section {
  padding: 34px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 22px;
}

.section-head--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.section-head h2,
.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.3vw, 46px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.products-carousel {
  position: relative;
}

.products-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.products-viewport::-webkit-scrollbar {
  display: none;
}

.products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  min-width: 100%;
  padding-bottom: 6px;
}

.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.carousel-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: rgba(241, 236, 224, 0.9);
  color: var(--text-main);
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

.carousel-button:disabled {
  opacity: 0.4;
  cursor: default;
}

.product {
  background: #faf8f2;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.product img {
  width: 100%;
  aspect-ratio: 2.5 / 3;
  object-fit: cover;
  display: block;
}

.meta {
  padding: 12px 12px 14px;
}

.meta h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.meta p {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.product-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  text-underline-offset: 3px;
}

.product--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: linear-gradient(150deg, #f7f4eb, #e6e0d0);
}

.product--empty .meta {
  max-width: 340px;
  text-align: center;
}

.product--empty .meta h3 {
  font-size: 26px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.promo {
  margin: 10px 0 28px;
  border: 1px solid var(--line);
  background: #faf8f2;
}

.promo img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.promo p {
  margin: 0;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 880px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #f9f6ee;
  margin-bottom: 28px;
}

.benefits article {
  min-height: 152px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits h3 {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

.benefits__active {
  background: linear-gradient(170deg, #8ea07a, #6c7f59);
}

.benefits__active p,
.benefits__active h3 {
  color: #f8f7f1;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 126px;
  gap: 12px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  grid-column: span 3;
  grid-row: span 2;
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 18, 14, 0.7), rgba(16, 18, 14, 0.16));
}

.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  background: rgba(244, 241, 232, 0.92);
  font-size: 10px;
  letter-spacing: 0.08em;
  z-index: 1;
}

.catalog-card__count {
  position: absolute;
  left: 10px;
  bottom: 46px;
  font-size: 10px;
  color: #f0efe8;
  background: rgba(11, 13, 10, 0.58);
  padding: 4px 8px;
  z-index: 1;
  font-style: normal;
}

.catalog-card__desc {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
  font-size: 11px;
  line-height: 1.34;
  color: #f7f6f0;
  background: rgba(14, 16, 12, 0.58);
  padding: 7px;
  z-index: 1;
}

.catalog-card--hero {
  grid-column: span 6;
  grid-row: span 3;
}

.catalog-card--wide {
  grid-column: span 6;
}

.catalog-card--tall {
  grid-row: span 3;
}

.catalog-card--empty {
  grid-column: span 12;
  min-height: 280px;
  background: linear-gradient(120deg, #e9e3d5, #dfd8c4);
}

.catalog-card--empty::after {
  display: none;
}

.cta {
  margin-top: 30px;
  min-height: 320px;
  background-image: linear-gradient(rgba(19, 23, 16, 0.6), rgba(19, 23, 16, 0.6)),
    url("./assets/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 34px;
}

.cta p {
  margin: 0;
  max-width: 570px;
  font-size: 15px;
  line-height: 1.52;
}

.product--interactive,
.catalog-card--interactive {
  cursor: pointer;
}

.product--interactive {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product--interactive img {
  transition: transform 0.55s ease, filter 0.4s ease;
}

.product--interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 10, 8, 0.42), rgba(8, 10, 8, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product--interactive:hover,
.product--interactive:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(20, 24, 16, 0.2);
}

.product--interactive:hover img,
.product--interactive:focus-within img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.product--interactive:hover::after,
.product--interactive:focus-within::after {
  opacity: 1;
}

.product-hover-open {
  position: absolute;
  inset: auto 12px 88px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  background: rgba(11, 14, 10, 0.84);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.product--interactive:hover .product-hover-open,
.product--interactive:focus-within .product-hover-open {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card__open {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 10px;
  font-size: 10px;
  background: rgba(11, 14, 10, 0.84);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.catalog-card--interactive:hover .catalog-card__open,
.catalog-card--interactive:focus-within .catalog-card__open {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card--interactive img {
  transition: transform 0.55s ease, filter 0.4s ease;
}

.catalog-card--interactive:hover img,
.catalog-card--interactive:focus-within img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-modal,
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
}

.gallery-modal[hidden],
.image-lightbox[hidden] {
  display: none;
}

.gallery-modal__backdrop,
.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, 0.8);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 19, 15, 0.95);
  border: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  animation: modalFadeIn 0.26s ease both;
}

.gallery-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.gallery-modal__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  color: #f3f1e9;
}

.gallery-modal__close,
.image-lightbox__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0;
  font-size: 26px;
  line-height: 1;
  background: rgba(12, 14, 10, 0.78);
  color: #fff;
}

.gallery-grid {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 16px 30px 24px 24px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
  align-content: start;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(211, 224, 191, 0.5) rgba(255, 255, 255, 0.06);
}

.gallery-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 20, 15, 0.9);
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: galleryItemIn 0.46s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: var(--stagger, 0ms);
}

.gallery-grid::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  margin: 8px 0;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(214, 226, 196, 0.68), rgba(151, 171, 124, 0.68));
  border-radius: 999px;
  border: 2px solid rgba(16, 19, 15, 0.85);
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(224, 235, 208, 0.86), rgba(164, 185, 138, 0.86));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.56s ease, filter 0.4s ease;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 10, 8, 0.76), rgba(8, 10, 8, 0.08));
  opacity: 0;
  transition: opacity 0.24s ease;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-within .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: #10120e;
  border: 0;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  grid-template-rows: 1fr auto;
  align-items: center;
  animation: modalFadeIn 0.22s ease both;
}

.image-lightbox__dialog img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0c0f0a;
  max-width: min(1500px, calc(100vw - 170px));
  max-height: calc(100vh - 172px);
  margin: 0 auto;
}

.image-lightbox__nav {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(14, 17, 12, 0.86);
  color: #fff;
  padding: 0;
  font-size: 24px;
}

.image-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.image-lightbox__meta {
  grid-column: 1 / 4;
  grid-row: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 18px 16px;
  color: #f0efe8;
  background: rgba(8, 10, 8, 0.78);
}

.image-lightbox__meta h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
}

.image-lightbox__meta p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.48;
  color: #d4d4cc;
}

.image-lightbox__close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes galleryItemIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .shell {
    padding: 18px;
  }

  .hero {
    min-height: 420px;
  }

  .products-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 104px;
  }

  .catalog-card {
    grid-column: span 3;
    grid-row: span 2;
  }

  .catalog-card--hero,
  .catalog-card--wide {
    grid-column: span 6;
  }

  .catalog-card--tall {
    grid-row: span 3;
  }

  .hero-feature {
    width: min(270px, 46%);
  }

  .gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 86px;
  }

  .gallery-item {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gallery-item:nth-child(6n + 1),
  .gallery-item:nth-child(6n + 4) {
    grid-column: span 4;
    grid-row: span 3;
  }
}

@media (max-width: 620px) {
  body {
    padding: 34px 10px;
  }

  .shell {
    padding: 12px;
  }

  .topbar {
    gap: 8px;
    padding: 6px 8px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: 32px;
    height: 28px;
    padding: 6px;
    border: 1px solid rgba(46, 46, 42, 0.2);
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-toggle span {
    width: 100%;
    height: 1px;
    background: var(--text-main);
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    right: 8px;
    top: calc(100% + 4px);
    z-index: 20;
    flex-direction: column;
    gap: 0;
    background: rgba(248, 243, 229, 0.98);
    border: 1px solid var(--line);
    min-width: 180px;
  }

  .topbar.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    font-size: 11px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 330px;
    padding: 10px 10px 18px;
  }

  .hero-content {
    padding: 10px 2px;
  }

  .hero-content::before {
    font-size: 9px;
    padding: 4px 8px;
  }

  .hero p {
    max-width: 290px;
    font-size: 11px;
  }

  .hero-feature {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .section {
    padding: 22px 0;
  }

  .section-head--split {
    align-items: flex-end;
  }

  .products-track {
    grid-auto-columns: 88%;
    gap: 8px;
  }

  .meta h3,
  .meta p,
  .promo p {
    font-size: 11px;
  }

  .benefits article {
    min-height: 118px;
    padding: 10px;
  }

  .benefits h3,
  .benefits p {
    font-size: 10px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 158px;
    gap: 8px;
  }

  .catalog-card,
  .catalog-card--hero,
  .catalog-card--wide,
  .catalog-card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .catalog-card--wide {
    grid-column: span 2;
  }

  .cta {
    min-height: 232px;
    padding: 16px;
  }

  .cta p {
    font-size: 11px;
  }

  button {
    font-size: 10px;
    padding: 8px 12px;
  }

  .carousel-button {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .product-hover-open,
  .catalog-card__open {
    opacity: 1;
    transform: none;
  }

  .gallery-modal__head {
    padding: 12px;
  }

  .gallery-modal__head h3 {
    font-size: 24px;
  }

  .gallery-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 148px;
    gap: 8px;
    padding: 10px 16px 14px 10px;
  }

  .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }

  .image-lightbox__dialog {
    grid-template-columns: 44px 1fr 44px;
  }

  .image-lightbox__dialog img {
    max-width: calc(100vw - 88px);
    max-height: calc(100vh - 146px);
  }

  .image-lightbox__meta h4 {
    font-size: 18px;
  }

  .image-lightbox__meta p {
    font-size: 11px;
  }
}
