.plantas-albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.plantas-album {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(48, 53, 23, 0.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plantas-album:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(48, 53, 23, 0.22);
}
.plantas-album-cover {
  display: block;
  aspect-ratio: 16/10;
  background: #eef0e6 center/cover no-repeat;
}
.plantas-album-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px 22px;
}
.plantas-album-meta strong {
  font-size: 1.25rem;
  color: #303517;
  font-weight: 700;
}
.plantas-album-meta em {
  font-style: normal;
  color: #565C36;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plantas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.plantas-item {
  display: block;
  width: 100%;
  padding: 10px;
  border: 0;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(48, 53, 23, 0.12);
}
.plantas-item img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #f7f7f2;
  transition: transform .25s ease;
}
.plantas-item:hover img {
  transform: scale(1.03);
}
.plantas-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(20, 22, 12, .92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.plantas-lb[hidden] {
  display: none !important;
}
.plantas-lb-img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}
.plantas-lb-close,
.plantas-lb-prev,
.plantas-lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.plantas-lb-close { top: 16px; right: 24px; }
.plantas-lb-prev { left: 16px; }
.plantas-lb-next { right: 16px; }
