/* Modern home / landing page — scoped under .home-page */

.home-page {
  --home-ink: #15202b;
  --home-muted: #5a6b78;
  --home-paper: #f4f7f8;
  --home-panel: #ffffff;
  --home-line: rgba(21, 32, 43, 0.12);
  --home-accent: #0d7377;
  --home-accent-deep: #095456;
  --home-warm: #e8a54b;
  --home-hero-height: min(58vh, 460px);
  --home-max: 1120px;
  --home-font-display: "Syne", "Cabin", sans-serif;
  --home-font-body: "Literata", Georgia, serif;
  margin-top: 46px;
  color: var(--home-ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(13, 115, 119, 0.18), transparent 55%),
    radial-gradient(900px 420px at 95% 8%, rgba(232, 165, 75, 0.16), transparent 50%),
    linear-gradient(180deg, #e7eef1 0%, var(--home-paper) 28%, #eef3f5 100%);
  font-family: var(--home-font-body);
}

.home-page a {
  color: inherit;
}

.home-page a.home-chip,
.home-page .home-chip {
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: var(--home-hero-height);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f7fafb;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  background-color: #1a3034;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: home-hero-zoom 22s ease-out forwards;
}

.home-hero__media--fallback {
  background-image:
    linear-gradient(135deg, #0d3b3e 0%, #1a3034 45%, #243b55 100%),
    url("/_images/blog-space.jpg");
  background-size: cover;
  background-blend-mode: soft-light;
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 28, 34, 0.62) 0%, rgba(15, 28, 34, 0.32) 52%, rgba(15, 28, 34, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 28, 34, 0.55) 0%, rgba(15, 28, 34, 0.12) 60%, rgba(15, 28, 34, 0.2) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--home-max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 2.35rem;
  animation: home-rise 0.75s ease both;
}

.home-brand {
  margin: 0 0 0.55rem;
  font-family: var(--home-font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.home-hero__title {
  margin: 0 0 0.75rem;
  max-width: 22ch;
  font-family: var(--home-font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-hero__title a {
  text-decoration: none;
  color: #fff;
  transition: color 0.25s ease;
}

.home-hero__title a:hover,
.home-hero__title a:focus-visible {
  color: #d8f3f2;
}

.home-hero__deck {
  margin: 0 0 1.15rem;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(247, 250, 251, 0.86);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-family: var(--home-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-btn:hover,
.home-btn:focus-visible {
  transform: translateY(-1px);
}

.home-btn--primary {
  background: var(--home-accent);
  color: #fff;
}

.home-btn--primary:hover,
.home-btn--primary:focus-visible {
  background: var(--home-accent-deep);
  color: #fff;
}

.home-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.home-btn--ghost:hover,
.home-btn--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-hero__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(247, 250, 251, 0.78);
}

.home-hero__meta a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__meta a:hover,
.home-hero__meta a:focus-visible {
  border-bottom-color: #fff;
}

.home-shell {
  width: min(var(--home-max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.75rem 0 4rem;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem;
  align-items: start;
}

.home-section-head {
  margin-bottom: 1.5rem;
}

.home-section-head h2,
.home-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--home-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-section-head p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1rem;
}

.home-post-list,
.home-cat-list,
.home-featured-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-post {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--home-line);
  animation: home-rise 0.7s ease both;
  animation-delay: calc(var(--stagger) * 0.06s);
}

.home-post:last-child {
  border-bottom: 1px solid var(--home-line);
}

.home-post__thumb {
  display: block;
  overflow: hidden;
  border-radius: 0.4rem;
  background: #d7e0e4;
  aspect-ratio: 1;
}

.home-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-post:hover .home-post__thumb img,
.home-post:focus-within .home-post__thumb img {
  transform: scale(1.05);
}

.home-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  color: var(--home-muted);
}

.home-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 0.25rem;
  background: var(--chip, var(--home-accent));
  color: #fff;
  font-family: var(--home-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-post__title {
  margin: 0 0 0.45rem;
  font-family: var(--home-font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.home-post__title a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1.5px;
  transition: background-size 0.25s ease, color 0.2s ease;
}

.home-post__title a:hover,
.home-post__title a:focus-visible {
  color: var(--home-accent-deep);
  background-size: 100% 1.5px;
}

.home-post__excerpt {
  margin: 0 0 0.65rem;
  color: var(--home-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-post__more {
  font-family: var(--home-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-accent);
  text-decoration: none;
}

.home-post__more:hover,
.home-post__more:focus-visible {
  color: var(--home-accent-deep);
  text-decoration: underline;
}

.home-aside {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: 4.25rem;
}

.home-panel {
  padding: 1.2rem 1.15rem 1.3rem;
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  border-radius: 0.5rem;
}

.home-cat-list li + li,
.home-featured-list li + li {
  margin-top: 0.35rem;
}

.home-cat-list a,
.home-featured-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.45rem 0.15rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.home-cat-list a:hover,
.home-cat-list a:focus-visible,
.home-featured-list a:hover,
.home-featured-list a:focus-visible {
  color: var(--home-accent-deep);
  padding-left: 0.35rem;
}

.home-cat-count {
  flex: 0 0 auto;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 0.25rem;
  color: #fff;
  font-family: var(--home-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}

.home-featured-list a {
  display: block;
  font-family: var(--home-font-display);
  font-weight: 600;
  line-height: 1.35;
}

.home-aside-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--home-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-accent);
  text-decoration: none;
}

.home-aside-link:hover,
.home-aside-link:focus-visible {
  text-decoration: underline;
}

.home-empty {
  margin: 0;
  padding: 1.5rem 0;
  color: var(--home-muted);
}

.home-page--category {
  --home-hero-height: min(48vh, 380px);
}

.home-hero--category {
  --home-accent: var(--cat-color, #0d7377);
}

.home-hero--category .home-btn--primary {
  background: var(--cat-color, var(--home-accent));
}

.home-hero--category .home-btn--primary:hover,
.home-hero--category .home-btn--primary:focus-visible {
  filter: brightness(0.9);
  background: var(--cat-color, var(--home-accent-deep));
}

.home-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--home-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 250, 251, 0.78);
}

.home-cat-list li.is-current a {
  color: var(--home-accent-deep);
  font-weight: 700;
  padding-left: 0.35rem;
}

.home-scroll-status {
  margin-top: 1.25rem;
  min-height: 2.5rem;
}

.home-scroll-sentinel {
  height: 1px;
  width: 100%;
}

.home-scroll-loading,
.home-scroll-end,
.home-scroll-fallback {
  margin: 0.75rem 0 0;
  color: var(--home-muted);
  font-family: var(--home-font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

.home-scroll-fallback a {
  color: var(--home-accent);
}

.home-category-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-category-card a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem;
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-category-card a:hover,
.home-category-card a:focus-visible {
  border-color: rgba(13, 115, 119, 0.45);
  transform: translateY(-1px);
}

.home-category-card__media {
  display: block;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #d7e0e4;
  aspect-ratio: 1;
}

.home-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-category-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.home-category-card__title {
  font-family: var(--home-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.home-category-card__desc {
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-category-card__count {
  margin-top: auto;
  font-family: var(--home-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-accent);
}

.home-page--search {
  --home-hero-height: min(42vh, 340px);
}

.home-category-grid--search {
  margin-bottom: 0.5rem;
}

.home-search-posts {
  margin-top: 2.5rem;
}

.home-search-empty {
  margin-top: 0.5rem;
}

.home-search-empty h2 {
  margin: 0 0 0.4rem;
  font-family: var(--home-font-display);
  font-size: 1.35rem;
}

.home-search-empty p {
  margin: 0 0 0.75rem;
  color: var(--home-muted);
}

/* Post page — keep existing layout, align chrome with home styles */
.home-page--post {
  --home-max: 1200px;
  background:
    linear-gradient(180deg, rgba(231, 238, 241, 0.92) 0%, rgba(244, 247, 248, 0.96) 40%, #eef3f5 100%),
    var(--post-bg, none);
  background-size: auto, cover;
  background-position: center top;
  background-attachment: scroll, fixed;
  background-repeat: no-repeat;
}

.home-preview-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: Syne, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #c47a00;
}

.home-shell--post {
  padding-top: 1.75rem;
}

.home-page--post .home-post-layout {
  margin-left: 0;
  margin-right: 0;
}

.home-page--post .post-box-wrapper.home-panel {
  box-shadow: none;
  margin-bottom: 1.15rem;
  padding: 1.25rem 1.2rem 1.35rem;
}

.home-panel--article {
  padding: 1.5rem 1.45rem 1.75rem !important;
}

.home-page--post .home-chip {
  margin-bottom: 0.85rem;
}

.home-admin-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
}
.home-admin-edit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 0.35rem;
  font-family: var(--home-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  color: #fff !important;
  background: #0d7377;
  border: 1px solid #0d7377;
}
.home-admin-edit__btn:hover,
.home-admin-edit__btn:focus-visible {
  background: #095456;
  border-color: #095456;
  color: #fff !important;
}

.home-article-title {
  margin: 0.35rem 0 0.45rem;
  font-family: var(--home-font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--home-ink);
}

.home-article-date {
  margin: 0 0 1.1rem;
  font-family: var(--home-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--home-muted);
}

.home-article-body {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--home-ink);
}

.home-article-body a {
  color: var(--home-accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.home-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.home-article-body .youtube-container {
  margin: 1rem 0;
}

.home-article-rule {
  margin: 1.75rem 0 1.1rem;
  border: 0;
  border-top: 1px solid var(--home-line);
}

.home-article-comments-title {
  margin: 0 0 0.75rem;
  font-family: var(--home-font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.home-page--post .home-panel > h2,
.home-page--post .home-panel .category-list + button,
.home-page--post .home-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--home-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.home-page--post .category-list {
  margin: 0;
  padding: 0;
}

.home-page--post .post-right-category {
  border-bottom: 1px solid var(--home-line);
  padding: 0.35rem 0;
}

.home-page--post a.post-right-cats:link,
.home-page--post a.post-right-cats:visited {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-family: var(--home-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--home-ink);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.home-page--post a.post-right-cats:hover,
.home-page--post a.post-right-cats:focus-visible {
  margin-left: 0;
  padding-left: 0.35rem;
  color: var(--home-accent-deep);
}

.home-page--post .cat-names-right {
  float: none;
  min-width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 0.25rem;
  font-family: var(--home-font-display);
  font-weight: 700;
}

.home-page--post .home-panel .btn {
  margin-top: 0.75rem;
  font-family: var(--home-font-display);
  font-weight: 700;
  background: var(--home-accent);
  border-color: var(--home-accent);
}

.home-page--post .new-post-article-small {
  padding: 0.35rem 0;
}

.home-page--post .new-post-article-small hr {
  margin: 0.55rem 0 0;
  border: 0;
  border-top: 1px solid var(--home-line);
}

.home-page--post .new-post-article-small a.blacklink:link,
.home-page--post .new-post-article-small a.blacklink:visited {
  font-family: var(--home-font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--home-ink);
  text-decoration: none;
  line-height: 1.35;
}

.home-page--post .new-post-article-small a.blacklink:hover,
.home-page--post .new-post-article-small a.blacklink:focus-visible {
  color: var(--home-accent-deep);
}

.home-page--post .new-post-article-small img {
  border-radius: 0.3rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.home-panel--ad {
  overflow: hidden;
}

@media (max-width: 991px) {
  .home-page--post .home-post-aside {
    margin-top: 0.5rem;
  }
}

.home-page--404 {
  --home-hero-height: min(46vh, 360px);
}

.home-404-path {
  font-family: var(--home-font-display);
  font-weight: 700;
  word-break: break-all;
}

.home-404-ad {
  margin: 0 0 1.75rem;
}

.home-404-ad--lower {
  margin: 2rem 0 0;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-zoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__media,
  .home-hero__content,
  .home-post {
    animation: none;
  }

  .home-post__thumb img,
  .home-btn {
    transition: none;
  }
}

@media (max-width: 920px) {
  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-hero__content {
    width: min(var(--home-max), calc(100% - 1.5rem));
    padding: 3.5rem 0 2.5rem;
  }

  .home-shell {
    width: min(var(--home-max), calc(100% - 1.5rem));
    padding-top: 2rem;
  }

  .home-post {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .home-aside {
    grid-template-columns: 1fr;
  }

  .home-brand {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-category-card a {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

/* FTBP masonry galleries + lightbox */
.home-article-body .ftbp-mosaic,
.ftbp-mosaic {
  column-count: 3;
  column-gap: 0.55rem;
  margin: 1.35rem 0;
  width: 100%;
}
.ftbp-mosaic[data-count="1"] {
  column-count: 1;
}
.ftbp-mosaic[data-count="2"] {
  column-count: 2;
}
.ftbp-mosaic__item {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0 0 0.55rem;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #d7e0e5;
  border-radius: 0.35rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.ftbp-mosaic__item:focus-visible {
  outline: 2px solid #0d7377;
  outline-offset: 2px;
}
.ftbp-mosaic__item img,
.ftbp-mosaic img.ftbp_img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none !important;
  object-fit: contain;
  border: 0 !important;
  margin: 0 !important;
  vertical-align: top;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ftbp-mosaic__item:hover img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .ftbp-mosaic {
    column-count: 2;
  }
  .ftbp-mosaic[data-count="1"] {
    column-count: 1;
  }
}

@media (max-width: 560px) {
  .ftbp-mosaic,
  .ftbp-mosaic[data-count="2"] {
    column-count: 1;
  }
}

html.ftbp-lightbox-open,
html.ftbp-lightbox-open body {
  overflow: hidden;
}
.ftbp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  justify-items: stretch;
  background: rgba(8, 12, 16, 0.92);
  padding: 0;
}
.ftbp-lightbox[hidden] {
  display: none !important;
}
.ftbp-lightbox__stage {
  display: grid;
  place-items: center;
  width: 100vw;
  min-height: 0;
  padding: 0.5rem 0;
}
.ftbp-lightbox__img {
  display: block;
  width: 100vw;
  max-width: 100vw;
  max-height: calc(100vh - 4.5rem);
  height: auto;
  object-fit: contain;
  background: transparent;
}
.ftbp-lightbox__close,
.ftbp-lightbox__nav {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  line-height: 1;
}
.ftbp-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
}
.ftbp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
}
.ftbp-lightbox__nav--prev { left: 0.65rem; }
.ftbp-lightbox__nav--next { right: 0.65rem; }
.ftbp-lightbox__close:hover,
.ftbp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.ftbp-lightbox__counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font: 600 0.85rem Syne, system-ui, sans-serif;
  padding: 0.65rem 1rem 1rem;
}
