/* ==========================================
   File: stars.css
   Project: The Best Fetish Links
   Version: 3.0.2
   ========================================== */

.stars-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.page-title {
  font-size: 2rem;
  color: #000; /* ✅ теперь чёрный цвет */
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 30px;
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.star-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.star-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(255, 0, 80, 0.4);
}

.star-photo {
  width: 100%;
  height: 450px; /* фиксированная высота */
  object-fit: cover;
  display: block;
}

.star-name {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 15px;
}

.star-desc {
  color: #ccc;
  font-size: 0.95rem;
  padding: 0 15px;
  margin: 10px 0 20px 0;
}

.star-link {
  display: inline-block;
  color: #ff0050;
  text-decoration: none;
  margin-bottom: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.star-link:hover {
  color: #fff;
}
