/* Additional */
.page-subtitle {
  text-transform: uppercase;
}

.trust-link {
  border-bottom: 1px dotted #ccc;
}

.trust-link:hover {
  color: var(--primary);
}

.dotted-divider {
  border: none;
  border-top: 2px dotted #ccc;
  margin: 40px auto;
  width: 100%;
}

/* Quote */
.highlight-quote {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 30px;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border-left: 5px solid var(--primary);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  text-align: center;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.highlight-quote p {
  margin: 0;
}

@media (max-width: 600px) {
  .highlight-quote {
    padding: 18px;
    font-size: 1rem;
  }
}

/* Related Pages */
/* Base styles for all related-topics */
.related-topics {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border-left: 5px solid var(--primary);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 30px 25px;
  margin-top: 60px;
}

.related-topics h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px dotted rgba(255, 51, 102, 0.4);
  display: inline-block;
  padding-bottom: 5px;
}

.related-topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.related-topics ul li {
  /* default 2 columns on mobile */
  flex: 1 1 45%;
}

.related-topics ul li a {
  color: #444;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.related-topics ul li a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* Media queries for larger screens */
@media (min-width: 768px) {
  /* For first section: keep 2 columns */
  .related-topics.related-2cols ul li {
    flex: 1 1 45%;
  }

  /* For second section: 3 columns on bigger screens */
  .related-topics.related-3cols ul li {
    flex: 1 1 30%;
  }
}

/* Banner */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  padding: 25px 30px;
  margin: 60px 0;
  transition: all 0.3s ease;
}

.promo-banner:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.promo-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.promo-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 14px;
}

.promo-content {
  flex: 1;
}

.promo-content h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.promo-content p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.promo-btn:hover {
  background: #991717;
  transform: translateY(-2px);
}

/* Responsive Banner */
@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .promo-image {
    max-width: 100%;
  }

  .promo-image img {
    height: auto;
    max-height: 400px;
  }

  .promo-content h2 {
    font-size: 1.5rem;
  }

  .promo-btn {
    padding: 12px 35px;
  }
}
    
/* Dating Pages Feed */    
.dating-feed {
  margin-top: 30px;
  background: #faf7fb;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.dating-feed h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6em;
  color: #333;
}

.feed-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 20px;
}

.feed-item {
  flex: 0 0 240px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feed-item:hover {
  transform: translateY(-4px);
}

.feed-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 20px;
}

.feed-thumb {
  font-size: 2em;
  margin-bottom: 10px;
}

.feed-item h3 {
  font-size: 1.1em;
  margin-bottom: 6px;
  color: #111;
}

.feed-item p {
  font-size: 0.9em;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .feed-item {
    flex: 0 0 70%;
  }
}

/* Feed Section */
.feed-section {
  margin: 60px 0;
  padding: 0 20px;
}

.feed-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.feed-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 10px;
  /*-ms-overflow-style: none;*/
  scrollbar-width: none;
}

/* Hide scrollbar */
.feed-slider::-webkit-scrollbar {
  display: none;
}

.feed-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease;
}

.feed-card:hover {
  transform: translateY(-5px);
}

.feed-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.feed-card-text {
  padding: 12px;
}

.feed-card-text h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.feed-card-text p {
  font-size: 0.9rem;
  color: #666;
}

.feed-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px; /* add a bit of space for the scrollbar */

  /* For Firefox */
  scrollbar-width: none; /* hide by default */
}

.feed-slider:hover {
  scrollbar-width: thin; /* show on hover */
  scrollbar-color: #ffffff #f0f0f0;
}

/* For Chrome, Edge, Safari */
.feed-slider::-webkit-scrollbar {
  height: 0; /* hide by default */
  transition: height 0.3s ease;
}

.feed-slider:hover::-webkit-scrollbar {
  height: 8px; /* show when hovered */
}

.feed-slider::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.feed-slider::-webkit-scrollbar-thumb {
  background: #b81c1c;
  border-radius: 10px;
}

.feed-slider::-webkit-scrollbar-thumb:hover {
  background: #a01818;
}