body {
  background: #000;
  color: #ccc;
  font-family: "Hina Mincho", serif;
}

.page-title {
  /* font-size: 28px; */
  margin: 60px 0 40px;
}

.section {
  padding-top: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid #111;
}

.section-meta {
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
}

.logo-holder {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 4px;
}

.title {
  font-size: 20px;
}

.date {
  font-size: 13px;
  opacity: 0.5;
}

.photographer {
  font-size: 13px;
  opacity: 0.7;
}

a {
  color: #ccc;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.fa-brands {
  color: inherit;
}

.row-line {
  display: flex;
  margin-bottom: 8px;
  overflow: hidden;
}

.row-line img {
  height: 400px;
  object-fit: cover;
  margin-right: 8px;
  cursor: pointer;
  filter: grayscale(100%) contrast(110%);
  transition: 0.3s;
}

.row-line img:hover {
  filter: none;
}

.viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.viewer img {
  max-width: 90%;
  max-height: 90%;
}

@media (max-width: 768px) {
  .row-line img {
    height: 220px;
  }
}

.loader-wrap {
  min-height: 200px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  border-top: 2px solid #ccc;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.row-line {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}