/* ===== گالری‌ها (راست‌چین) ===== */
.galleries { background: var(--white); padding: 90px 0 70px; direction: rtl; }
.galleries-head { text-align: center; margin-bottom: 50px; }
.galleries-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}
.gallery-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  background: rgba(0,0,0,.15);
  transition: background .3s ease;
  font-weight: 400;
}
.gallery-card:hover .label { background: rgba(0,0,0,.3); }

/* موبایل */
@media (max-width: 768px) {
  .gallery-cards { padding: 0 16px; gap: 14px; }
  .gallery-card { aspect-ratio: 4/3; }
  .gallery-card .label { font-size: 24px; }
  .galleries { padding: 60px 0 50px; }
}
