/* PhotoAIrt — gallery category landings */
.gallery-landing-page .layout-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 24px 48px;
}

.gallery-landing-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 14px;
  color: #e8d5b0;
}

.gallery-intro {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
  max-width: 720px;
}

.gallery-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.gallery-cta {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  background: #e8d5b0;
  color: #000;
  border: 1px solid #e8d5b0;
}

.gallery-cta.secondary {
  background: transparent;
  color: #e8d5b0;
}

.gallery-cta:hover { opacity: 0.88; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.gallery-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 12px 0;
}

.gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-hub-card {
  display: block;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid rgba(232, 213, 176, 0.28);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.gallery-hub-card:hover {
  border-color: #e8d5b0;
}

.gallery-hub-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #e8d5b0;
  margin-bottom: 8px;
}

.gallery-hub-card p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.gallery-back {
  display: inline-block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-back:hover { color: #e8d5b0; }
