/* =============================================================
   MODULE DỰ ÁN - t888-project.css
   Áp dụng cho: archive-project.php, single-project.php
   ============================================================= */

/* ── Variables ── */
:root {
  --proj-primary: #143687;
  --proj-primary-light: #2d6aa0;
  --proj-accent: #143687;
  --proj-accent-hover: #d08030;
  --proj-text: #2c3e50;
  --proj-text-muted: #6b7280;
  --proj-border: #e5e7eb;
  --proj-bg-soft: #f8fafc;
  --proj-white: #ffffff;
  --proj-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --proj-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --proj-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --proj-radius: 16px;
  --proj-radius-sm: 8px;
  --proj-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   HERO SECTION (Archive)
   ============================================================ */
.t888-projects-archive {
  background: var(--proj-bg-soft);
  min-height: 100vh;
}

.projects-hero {
  background: linear-gradient(
    135deg,
    var(--proj-primary) 0%,
    var(--proj-primary-light) 60%,
    #3a8fd1 100%
  );
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.projects-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.projects-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.projects-hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */
.projects-main {
  padding-top: 48px;
  padding-bottom: 72px;
}

/* ============================================================
   TAB LỌC
   ============================================================ */
.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--proj-border);
}

.project-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--proj-text-muted);
  background: var(--proj-white);
  border: 1.5px solid var(--proj-border);
  text-decoration: none;
  transition: all var(--proj-transition);
  cursor: pointer;
  white-space: nowrap;
}

.project-tab-btn:hover {
  color: var(--proj-primary);
  border-color: var(--proj-primary-light);
  background: rgba(45, 106, 160, 0.06);
  transform: translateY(-1px);
}

.project-tab-btn.active {
  background: linear-gradient(
    135deg,
    var(--proj-primary),
    var(--proj-primary-light)
  );
  color: var(--proj-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(26, 60, 94, 0.3);
}

.project-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
}

.project-tab-btn:not(.active) .project-tab-count {
  background: var(--proj-bg-soft);
  color: var(--proj-text-muted);
}

/* ============================================================
   PROJECT GRID
   ============================================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   PROJECT CARD
   ============================================================ */
.project-card {
  background: var(--proj-white);
  border-radius: var(--proj-radius);
  overflow: hidden;
  box-shadow: var(--proj-shadow-sm);
  /* border: 1px solid var(--proj-border); */
  transition: all var(--proj-transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--proj-shadow-lg);
  border-color: transparent;
}

.project-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Ảnh ── */
.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--proj-bg-soft);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.project-card:hover .project-card__image {
  transform: scale(1.07);
}

.project-card__image--placeholder {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

/* ── Badge ── */
.project-card__badge {
  display: none;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--proj-accent);
  color: var(--proj-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  /* border-radius: 50px; */
  box-shadow: 0 2px 8px rgba(232, 160, 69, 0.4);
}

/* ── Overlay on hover ── */
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 94, 0.7),
    rgba(45, 106, 160, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--proj-transition);
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__overlay-icon {
  color: var(--proj-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform var(--proj-transition);
}

.project-card:hover .project-card__overlay-icon {
  transform: scale(1);
}

/* ── Body ── */
.project-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.project-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-card__cat {
  font-size: 14px;
  font-weight: 600;
  color: var(--proj-primary-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--proj-text);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--proj-transition);
  font-family: var(--font-philosopher);
}

.project-card:hover .project-card__title {
  color: var(--proj-primary);
}

.project-card__desc {
  font-size: 15px;
  color: var(--proj-text-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.project-card__cta {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--proj-primary);
  text-decoration: none;
  transition:
    gap var(--proj-transition),
    color var(--proj-transition);
}

.project-card:hover .project-card__cta {
  gap: 10px;
  color: var(--proj-accent);
}

.project-card__cta-icon {
  transition: transform var(--proj-transition);
}

.project-card:hover .project-card__cta-icon {
  transform: translateX(4px);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.project-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.project-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--proj-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--proj-text);
  background: var(--proj-white);
  border: 1.5px solid var(--proj-border);
  text-decoration: none;
  transition: all var(--proj-transition);
}

.project-pagination .page-numbers:hover,
.project-pagination .page-numbers.current {
  background: var(--proj-primary);
  color: var(--proj-white);
  border-color: transparent;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.project-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--proj-text-muted);
}

.project-empty__icon {
  margin-bottom: 16px;
  color: var(--proj-border);
}

.project-empty p {
  font-size: 1rem;
  margin: 0;
}

/* ============================================================
   SINGLE PROJECT — HERO
   ============================================================ */
.project-single__hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-single__hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.t888-project-single:hover .project-single__hero-bg {
  transform: scale(1);
}

.project-single__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 40, 0.85) 0%,
    rgba(10, 20, 40, 0.4) 60%,
    rgba(10, 20, 40, 0.1) 100%
  );
  z-index: 1;
}

.project-single__hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
  padding-top: 120px;
}

.project-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-single__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--proj-accent);
  background: rgba(232, 160, 69, 0.15);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(232, 160, 69, 0.35);
  text-decoration: none;
  transition: background var(--proj-transition);
}

.project-single__cat:hover {
  background: rgba(232, 160, 69, 0.3);
}

.project-single__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--proj-white);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.project-single__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 680px;
  line-height: 1.65;
}

/* ============================================================
   SINGLE PROJECT — CONTAINER
   ============================================================ */
.project-single__container {
  padding-top: 56px;
  padding-bottom: 80px;
}

/* ── Ảnh chính ── */
.project-single__main-image-wrap {
  position: relative;
  border-radius: var(--proj-radius);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--proj-shadow-lg);
}

.project-single__main-image {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}

.project-single__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--proj-accent);
  color: var(--proj-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(232, 160, 69, 0.45);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.project-section {
  margin-bottom: 60px;
}

.project-section__header {
  margin-bottom: 28px;
}

.project-section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--proj-accent);
  margin-bottom: 8px;
}

.project-section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--proj-text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  position: relative;
  padding-bottom: 14px;
}

.project-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--proj-accent), transparent);
  border-radius: 2px;
}

/* ── Nội dung editor ── */
.wysiwyg-content {
  font-size: 1rem;
  color: var(--proj-text-muted);
  line-height: 1.8;
  /* max-width: 800px; */
}

.wysiwyg-content p {
  margin-bottom: 1em;
}
.wysiwyg-content h2,
.wysiwyg-content h3 {
  color: var(--proj-text);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.wysiwyg-content a {
  color: var(--proj-primary-light);
}
.wysiwyg-content ul,
.wysiwyg-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.wysiwyg-content li {
  margin-bottom: 0.4em;
}

/* ============================================================
   3 Ô THÔNG SỐ
   ============================================================ */
.project-single__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .project-single__specs {
    grid-template-columns: 1fr;
  }
}

.project-spec-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--proj-white);
  border: 1px solid var(--proj-border);
  border-radius: var(--proj-radius);
  box-shadow: var(--proj-shadow-sm);
  transition: all var(--proj-transition);
  position: relative;
  overflow: hidden;
}

.project-spec-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--proj-primary), var(--proj-accent));
  border-radius: 0 2px 2px 0;
}

.project-spec-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--proj-shadow-md);
}

.project-spec-box__icon {
  color: var(--proj-primary-light);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 106, 160, 0.1);
  border-radius: 12px;
}

.project-spec-box__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-spec-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--proj-text-muted);
}

.project-spec-box__value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--proj-text);
  line-height: 1.2;
}

/* ============================================================
   MỤC TIÊU CHIẾN DỊCH
   ============================================================ */
.project-goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .project-goals-list {
    grid-template-columns: 1fr;
  }
}

.project-goal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--proj-white);
  border: 1px solid var(--proj-border);
  border-radius: var(--proj-radius-sm);
  transition: all var(--proj-transition);
  animation: fadeSlideUp 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.07s);
  opacity: 0;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-goal-item:hover {
  border-color: var(--proj-primary-light);
  box-shadow: var(--proj-shadow-sm);
}

.project-goal-item__num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--proj-primary-light);
  background: rgba(45, 106, 160, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: monospace;
}

.project-goal-item__content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--proj-text-muted);
  line-height: 1.6;
  flex: 1;
}

.project-goal-item__icon {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1024px) {
  .project-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.project-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--proj-radius-sm);
  overflow: hidden;
  background: var(--proj-bg-soft);
  cursor: pointer;
}

.project-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-gallery-item:hover .project-gallery-item__img {
  transform: scale(1.1);
}

.project-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 94, 0.65);
  color: var(--proj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--proj-transition);
}

.project-gallery-item:hover .project-gallery-item__overlay {
  opacity: 1;
}

/* ============================================================
   NAVIGATION PREV/NEXT
   ============================================================ */
.project-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--proj-border);
  padding-top: 40px;
  margin-top: 60px;
}

@media (max-width: 640px) {
  .project-single__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.project-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--proj-radius-sm);
  border: 1.5px solid var(--proj-border);
  transition: all var(--proj-transition);
  background: var(--proj-white);
}

.project-nav-btn:hover {
  border-color: var(--proj-primary-light);
  background: rgba(45, 106, 160, 0.04);
}

.project-nav-btn--prev {
  text-align: left;
}
.project-nav-btn--next {
  text-align: right;
}

.project-nav-btn--all {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--proj-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: 50px;
}

.project-nav-btn__arrow {
  font-size: 1.25rem;
  color: var(--proj-primary-light);
}

.project-nav-btn__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--proj-text-muted);
}

.project-nav-btn__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--proj-text);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  .projects-hero {
    padding: 60px 24px 48px;
  }
  .projects-main {
    padding-top: 32px;
  }
  .project-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
  .project-section {
    margin-bottom: 40px;
  }
  .project-single__hero {
    min-height: 360px;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.proj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 10, 20, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.proj-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

body.lightbox-open {
  overflow: hidden;
}

.proj-lightbox__inner {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.proj-lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--proj-radius-sm);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  display: block;
  transition: opacity 0.2s ease;
}

.proj-lightbox__caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
  max-width: 600px;
}

/* Close button */
.proj-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--proj-transition);
  z-index: 100001;
}

.proj-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Prev / Next */
.proj-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--proj-transition);
  z-index: 100001;
}

.proj-lightbox__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.proj-lightbox__nav:disabled {
  opacity: 0.2;
  cursor: default;
}

.proj-lightbox__nav--prev {
  left: 20px;
}
.proj-lightbox__nav--next {
  right: 20px;
}

@media (max-width: 640px) {
  .proj-lightbox__nav--prev {
    left: 8px;
  }
  .proj-lightbox__nav--next {
    right: 8px;
  }
  .proj-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
