/* style/index-latest-news-highlights.css */
.page-index-latest-news-highlights {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50; /* Dark blue/charcoal for text */
  background-color: #f8f8f8;
}

.page-index-latest-news-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-news-highlights__section {
  padding: 60px 0;
}

.page-index-latest-news-highlights__section:nth-child(odd) {
  background-color: #ffffff;
}

.page-index-latest-news-highlights__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-index-latest-news-highlights__sub-title {
  font-size: 1.8em;
  color: #2C3E50; /* Dark blue/charcoal */
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-index-latest-news-highlights__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-news-highlights__hero {
  background: linear-gradient(135deg, #FFD700, #2C3E50);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.page-index-latest-news-highlights__hero-content {
  max-width: 600px;
}

.page-index-latest-news-highlights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index-latest-news-highlights__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-latest-news-highlights__hero-image-wrapper {
  max-width: 400px;
  flex-shrink: 0;
}

.page-index-latest-news-highlights__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.page-index-latest-news-highlights__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-latest-news-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-index-latest-news-highlights__btn--primary {
  background-color: #E74C3C; /* CTA Red */
  color: #fff;
  border: 2px solid #E74C3C;
}

.page-index-latest-news-highlights__btn--primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.page-index-latest-news-highlights__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-index-latest-news-highlights__btn--secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.page-index-latest-news-highlights__news-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index-latest-news-highlights__news-card:hover {
  transform: translateY(-5px);
}

.page-index-latest-news-highlights__news-card-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}

.page-index-latest-news-highlights__news-card-content {
  padding: 25px;
  flex-grow: 1;
}

.page-index-latest-news-highlights__news-card-title {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-latest-news-highlights__news-card-title a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-latest-news-highlights__news-card-title a:hover {
  color: #FFD700;
}

.page-index-latest-news-highlights__news-card-date {
  font-size: 0.9em;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.page-index-latest-news-highlights__news-card-text {
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-news-highlights__read-more {
  color: #E74C3C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-latest-news-highlights__read-more:hover {
  color: #c0392b;
}

.page-index-latest-news-highlights__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-news-highlights__offer-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

.page-index-latest-news-highlights__offer-card:hover {
  transform: translateY(-5px);
}

.page-index-latest-news-highlights__offer-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-latest-news-highlights__offer-card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-latest-news-highlights__offer-card-text {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index-latest-news-highlights__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #E74C3C;
  color: #fff;
  border: none;
}

.page-index-latest-news-highlights__btn--small:hover {
  background-color: #c0392b;
}

.page-index-latest-news-highlights__cta-banner {
  background: #2C3E50;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-index-latest-news-highlights__cta-banner--bottom {
  margin-top: 60px;
}

.page-index-latest-news-highlights__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-index-latest-news-highlights__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-index-latest-news-highlights__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-latest-news-highlights__responsible-gaming-info p {
  margin-bottom: 15px;
  color: #333;
}

.page-index-latest-news-highlights__responsible-gaming-info strong {
  color: #2C3E50;
}

.page-index-latest-news-highlights__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #333;
}

.page-index-latest-news-highlights__list li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-news-highlights__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-index-latest-news-highlights__hero-title {
    font-size: 2.8em;
  }

  .page-index-latest-news-highlights__hero-description {
    font-size: 1.1em;
  }

  .page-index-latest-news-highlights__news-card {
    flex-direction: column;
  }

  .page-index-latest-news-highlights__news-card-image {
    width: 100%;
    height: 250px;
    border-radius: 8px 8px 0 0;
  }

  .page-index-latest-news-highlights__news-card-content {
    padding: 20px;
  }

  .page-index-latest-news-highlights__news-card-title {
    font-size: 1.4em;
  }

  .page-index-latest-news-highlights__section-title {
    font-size: 2em;
  }

  .page-index-latest-news-highlights__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-news-highlights__hero {
    padding: 60px 15px;
  }
  .page-index-latest-news-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-news-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-latest-news-highlights__section {
    padding: 40px 0;
  }
  .page-index-latest-news-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-highlights__hero-actions, .page-index-latest-news-highlights__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-news-highlights__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-latest-news-highlights__offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-news-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-news-highlights__cta-title {
    font-size: 1.5em;
  }
  .page-index-latest-news-highlights__news-card-title {
    font-size: 1.2em;
  }
}