.gallery-list-view.custom-styling .view-content {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 15px !important;
  max-width: 1200px !important;
  list-style: none !important;
  padding: 20px !important;
  margin: 0 auto !important;
}

.gallery-list-view.custom-styling .gallery-item {
  position: relative !important;
  height: 80px !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  transition: all 0.3s ease !important;
}

.gallery-list-view.custom-styling .gallery-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  border-color: rgba(0,0,0,0.1) !important;
}

.gallery-list-view.custom-styling .views-field-title {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #5a9fd4 !important; /* Мягкий синий как у ваших ссылок */
  font-weight: 500 !important;
  font-size: 14px !important;
  text-align: center !important;
  margin: 0 !important;
  font-family: inherit !important;
}

.gallery-list-view.custom-styling .views-field-title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.gallery-list-view.custom-styling .views-field-title a:hover {
  color: #4a8bc2 !important; /* Чуть темнее при наведении */
}

/* Адаптивность */
@media (max-width: 1200px) {
  .gallery-list-view.custom-styling .view-content {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .gallery-list-view.custom-styling .view-content {
    grid-template-columns: repeat(4, 1fr) !important;
    padding: 15px !important;
  }
}

@media (max-width: 600px) {
  .gallery-list-view.custom-styling .view-content {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }
  
  .gallery-list-view.custom-styling .gallery-item {
    height: 60px !important;
  }
  
  .gallery-list-view.custom-styling .views-field-title {
    font-size: 12px !important;
  }
}
