/* style/betting-guides-lottery-tips.css */
.page-betting-guides-lottery-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-betting-guides-lottery-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-lottery-tips__hero {
  background: linear-gradient(135deg, #004AAD, #0028ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-betting-guides-lottery-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-betting-guides-lottery-tips__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-betting-guides-lottery-tips__section {
  padding: 60px 0;
}

.page-betting-guides-lottery-tips__section--alt-bg {
  background-color: #f8f8f8;
}

.page-betting-guides-lottery-tips__section--cta {
  background: linear-gradient(135deg, #FFD700, #ffb552);
  color: #004AAD;
  text-align: center;
}

.page-betting-guides-lottery-tips__section-title {
  font-size: 2.5em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-guides-lottery-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-betting-guides-lottery-tips__section-title--light {
  color: #004AAD;
}

.page-betting-guides-lottery-tips__section-title--light::after {
  background-color: #004AAD;
}

.page-betting-guides-lottery-tips__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-betting-guides-lottery-tips__text-content--light {
  color: #004AAD;
}

.page-betting-guides-lottery-tips__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-betting-guides-lottery-tips__button--primary {
  background-color: #FFD700;
  color: #004AAD;
}

.page-betting-guides-lottery-tips__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guides-lottery-tips__button--secondary {
  background-color: #004AAD;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-guides-lottery-tips__button--secondary:hover {
  background-color: #003a8a;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guides-lottery-tips__button--light {
  background-color: #004AAD;
  color: #fff;
}

.page-betting-guides-lottery-tips__button--light:hover {
  background-color: #003a8a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guides-lottery-tips__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-guides-lottery-tips__list li {
  margin-bottom: 10px;
}

.page-betting-guides-lottery-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-betting-guides-lottery-tips__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-betting-guides-lottery-tips__card:hover {
  transform: translateY(-5px);
}

.page-betting-guides-lottery-tips__card-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-betting-guides-lottery-tips__card-text {
  font-size: 1em;
  color: #555;
}

.page-betting-guides-lottery-tips__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-betting-guides-lottery-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guides-lottery-tips__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-betting-guides-lottery-tips__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides-lottery-tips__article-card {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides-lottery-tips__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-betting-guides-lottery-tips__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-guides-lottery-tips__article-title {
  font-size: 1.4em;
  color: #004AAD;
  padding: 15px 20px 10px;
}

.page-betting-guides-lottery-tips__article-excerpt {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-betting-guides-lottery-tips__hero-title {
    font-size: 2.5em;
  }

  .page-betting-guides-lottery-tips__hero-subtitle {
    font-size: 1.2em;
  }

  .page-betting-guides-lottery-tips__section-title {
    font-size: 2em;
  }

  .page-betting-guides-lottery-tips__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-guides-lottery-tips__grid {
    grid-template-columns: 1fr;
  }

  .page-betting-guides-lottery-tips__articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-betting-guides-lottery-tips__hero-title {
    font-size: 2em;
  }

  .page-betting-guides-lottery-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-guides-lottery-tips__section {
    padding: 40px 0;
  }

  .page-betting-guides-lottery-tips__button {
    width: 100%;
  }

  .page-betting-guides-lottery-tips__cta-buttons {
    flex-direction: column;
  }
}