.specials-list {
  padding: 80px 10%;
  background: radial-gradient(circle at top, #001f2f, #000);
  text-align: center;
  color: white;
}

.specials-list h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #bf360c;
  text-shadow: 0 0 10px #bf360c;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.special-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 420px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}


.special-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(4px);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.special-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0;
}

.special-price-block {
  line-height: 1.2;
}

.special-from {
  font-size: 0.9em;
  color: #ccc;
  margin: 0;
}

.special-price {
  font-size: 1.6em;
  font-weight: bold;
  margin: 0;
  color: #FFEB3B;
}

.special-person {
  font-size: 0.8em;
  color: #aaa;
  margin: 0;
}

.special-duration {
  font-size: 0.9em;
  color: #ddd;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .specials-list {
    padding: 60px 20px;
  }

  .specials-list h2 {
    font-size: 2.2em;
  }

  .special-card {
    height: 380px;
  }

  .special-overlay {
    height: 55%;
    padding: 15px;
  }

  .special-title {
    font-size: 1.2em;
  }

  .special-price {
    font-size: 1.4em;
  }
}