.pictures-title {
  position: fixed;
  left: 0;
  top: 50%;
  width: 60px;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-left: 40px;
}
.pictures-title h1 {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  transform: translateY(-50%);
  white-space: nowrap;
}

.pictures-content {
  margin-left: 60px;
}

.album-title a {
  font-size: 3rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.album-images {
  min-width: 0;
  overflow: hidden;
}

.album-images figure {
  overflow: hidden;
}

.album-images figure:hover img {
  transform: scale(1.05);
}

.album-images img {
  width: auto;
  height: 200px;
  max-height: 200px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .album-title a {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .pictures-layout {
    margin-top: 0;
  }

  .pictures-title {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .pictures-title h1 {
    transform: none;
  }

  .pictures-content {
    margin-left: 0;
  }

  .album {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-images {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .album-title a {
    font-size: 1.25rem;
  }

  .album-images img {
    height: 140px;
    max-height: 140px;
  }
}
