.ajsi-artistas-page {
  padding: 20px 0;
}

.ajsi-artistas-head {
  max-width: 900px;
  margin: 0 auto 18px auto;
  padding: 0 12px;
}

.ajsi-artistas-head h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
}

.ajsi-artistas-head p {
  margin: 0;
  color: rgba(0,0,0,.75);
  line-height: 1.5;
}

.ajsi-artistas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  padding: 0 12px;
}

.ajsi-artistas-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
}

.ajsi-artistas-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .15s ease;
}

.ajsi-artistas-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 576px) {
  .ajsi-artistas-item img {
    height: 150px;
  }
}

.ajsi-zoom {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.ajsi-zoom.is-open {
  display: block;
}

.ajsi-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.ajsi-zoom-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ajsi-zoom-img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  background: #fff;
}

.ajsi-zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  background: rgba(255,255,255,.92);
}

header,
.site-header,
.wp-site-blocks > header {
  display: none;
}

