.sealog-projects-page {
  background: linear-gradient(to bottom, #fff, #f6f8fc);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2c4e;
}

.sealog-projects {
  padding: 4rem 1.5rem 5rem;
}

.sealog-projects-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.sealog-projects-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.sealog-section-title {
  margin: 0 0 .6rem;
  font-family: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 2rem;
  color: #1a2c4e;
}

.sealog-projects-sub {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 44, 78, .72);
}

.sealog-projects-empty {
  background: #fff;
  border: 1px solid rgba(26, 44, 78, .10);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  max-width: 740px;
  margin: 0 auto;
  color: rgba(26, 44, 78, .75);
}

.sealog-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}

@media (max-width: 1024px) {
  .sealog-projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sealog-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .sealog-projects-grid {
    grid-template-columns: 1fr;
  }
}

.sealog-projects-item {
  border: 1px solid rgba(26, 44, 78, .10);
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  aspect-ratio: 4 / 3;
  display: block;
}

.sealog-projects-item:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 44, 78, .24);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.sealog-projects-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sealog-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .78);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 1.2rem;
}

.sealog-lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  background: #0f172a;
}

.sealog-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}

.sealog-lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .16);
}

.sealog-lock {
  overflow: hidden;
}

.sealog-lightbox[hidden] {
  display: none !important;
}

.sealog-lightbox-close {
  z-index: 10000;
}

.sealog-projects-loader {
  height: 40px;
}

.sealog-projects-loader.is-loading {
  opacity: .7;
}

.sealog-projects-sentinel {
  height: 1px;
}