/* 相册列表页 /photos */
.album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 15px;
  margin-top: 8px;
}

.album-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.album-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--color-list-item-odd);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity ease-in-out 0.3s;
}

.album-card:hover .album-cover img {
  opacity: 0.85;
}

.album-card-info {
  padding-top: 10px;
}

.album-card-title {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--font-color);
}

.album-card:hover .album-card-title {
  text-decoration: underline;
}

.album-card-meta {
  margin-top: 2px;
  font-size: 0.8125rem;
  color: var(--font-color-extra);
}

/* 相册详情页 */
.album-desc {
  width: 100%;
  margin-bottom: 28px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.album-photo {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--color-list-item-odd);
  cursor: zoom-in;
}

.album-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity ease-in-out 0.3s;
}

.album-photo:hover img {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .album-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .album-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
