/* =========================
   HERO (fallback tweaks)
========================= */

.hero-section {
  position: relative;
  padding: 120px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.5)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.hero-inner h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.95;
}

/* =========================
   QUICK LINKS
========================= */

.hero-quick-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-link {
  background: rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.quick-link:hover {
  background: #fff;
  color: #000;
}

/* =========================
   GENERAL SECTION SPACING
========================= */

.deals-intro-tips,
.deals-cta-text,
.popular-destinations,
.deals-section,
.seo-content {
  padding: 25px 20px;
}

.deals-section {
  padding: 20px 0;
}

@media (max-width: 768px) {

  .deals-section {
    padding: 15px 0;
  }

  .filter-page-wrapper {
    padding: 0 15px;
  }

}

/* =========================
   INTRO TIPS
========================= */

.deals-intro-tips {
  max-width: 700px;
  margin: 20px auto 10px;
  text-align: left;
}

.deals-intro-tips h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.deals-intro-tips p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* =========================
   CTA TEXT
========================= */

.deals-cta-text {
  margin: 5px auto 20px;
  text-align: center;
}

.deals-cta-text p {
  font-size: 16px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

/* =========================
   POPULÄRA DESTINATIONER
========================= */

.popular-destinations {
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.dest-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.dest-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 16px;
  font-weight: 600;
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );
}

.dest-card span {
  z-index: 2;
}

.dest-card:hover {
  transform: translateY(-4px);
}

/* =========================
   DEALS SECTION
========================= */

.deals-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

/* =========================
   SEO CONTENT
========================= */

.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.seo-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.seo-content p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner h1 {
    font-size: 28px;
  }

  .intro-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .rd-card-grid.rd-card-grid--deals {
    grid-template-columns: 1fr !important;
  }

}