.page-blog-latest-gambling-news {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Page background as specified */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-gambling-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for hero */
}

.page-blog-latest-gambling-news__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-blog-latest-gambling-news__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-blog-latest-gambling-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-blog-latest-gambling-news__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-blog-latest-gambling-news__hero-button:hover {
  background-color: #e0a53b;
}

.page-blog-latest-gambling-news__hero-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.page-blog-latest-gambling-news__hero-image img {
  display: block;
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-latest-gambling-news__articles-section,
.page-blog-latest-gambling-news__trends-section,
.page-blog-latest-gambling-news__expert-insights,
.page-blog-latest-gambling-news__responsible-gaming {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-latest-gambling-news__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-latest-gambling-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-gambling-news__article-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-blog-latest-gambling-news__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-gambling-news__article-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-latest-gambling-news__article-content {
  padding: 25px;
}

.page-blog-latest-gambling-news__article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-latest-gambling-news__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-gambling-news__article-title a:hover {
  color: #FCBC45;
}

.page-blog-latest-gambling-news__article-excerpt {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-blog-latest-gambling-news__read-more-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-latest-gambling-news__read-more-button:hover {
  background-color: #333333;
}

.page-blog-latest-gambling-news__cta-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-latest-gambling-news__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-blog-latest-gambling-news__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-gambling-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-latest-gambling-news__cta-button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
}

.page-blog-latest-gambling-news__cta-button--register:hover {
  background-color: #F0F0F0;
}

.page-blog-latest-gambling-news__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-blog-latest-gambling-news__cta-button--login:hover {
  background-color: #e0a53b;
}

.page-blog-latest-gambling-news__trends-content,
.page-blog-latest-gambling-news__insights-content,
.page-blog-latest-gambling-news__responsible-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-blog-latest-gambling-news__trends-image,
.page-blog-latest-gambling-news__responsible-image {
  width: 600px;
  height: 450px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-gambling-news__trends-paragraph,
.page-blog-latest-gambling-news__insights-paragraph,
.page-blog-latest-gambling-news__responsible-paragraph {
  font-size: 1.05em;
  line-height: 1.8;
  text-align: justify;
  max-width: 800px;
}

.page-blog-latest-gambling-news__predictions-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
  max-width: 800px;
  align-self: flex-start;
}

.page-blog-latest-gambling-news__prediction-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-latest-gambling-news__responsible-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-blog-latest-gambling-news__responsible-button:hover {
  background-color: #333333;
}

.page-blog-latest-gambling-news__join-us-section {
  background-color: #FCBC45; /* Accent color */
  color: #000000;
  text-align: center;
  padding: 70px 20px;
}

.page-blog-latest-gambling-news__join-us-title {
  font-size: 2.4em;
  margin-bottom: 15px;
  color: #000000;
}

.page-blog-latest-gambling-news__join-us-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-gambling-news__join-us-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-latest-gambling-news__join-us-button:hover {
  background-color: #333333;
}

/* Media Queries for Responsiveness */
@media (min-width: 769px) {
  .page-blog-latest-gambling-news__trends-content,
  .page-blog-latest-gambling-news__responsible-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page-blog-latest-gambling-news__trends-paragraph,
  .page-blog-latest-gambling-news__insights-paragraph,
  .page-blog-latest-gambling-news__responsible-paragraph {
    flex: 1;
    margin-right: 30px;
  }

  .page-blog-latest-gambling-news__trends-image,
  .page-blog-latest-gambling-news__responsible-image {
    flex-shrink: 0;
    width: 400px; /* Adjust for larger screens */
    height: 300px;
  }

  .page-blog-latest-gambling-news__hero-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 40px;
    text-align: left;
  }

  .page-blog-latest-gambling-news__hero-content {
    margin-right: 50px;
    margin-bottom: 0;
  }

  .page-blog-latest-gambling-news__hero-image {
    flex-shrink: 0;
    width: 60%;
    max-width: 800px;
  }

  .page-blog-latest-gambling-news__predictions-list {
    align-self: center;
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-gambling-news__hero-title {
    font-size: 2em;
  }

  .page-blog-latest-gambling-news__hero-description {
    font-size: 1em;
  }

  .page-blog-latest-gambling-news__section-title {
    font-size: 1.8em;
  }

  .page-blog-latest-gambling-news__article-image,
  .page-blog-latest-gambling-news__trends-image,
  .page-blog-latest-gambling-news__responsible-image,
  .page-blog-latest-gambling-news__hero-image img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-latest-gambling-news__cta-title,
  .page-blog-latest-gambling-news__join-us-title {
    font-size: 2em;
  }

  .page-blog-latest-gambling-news__cta-button,
  .page-blog-latest-gambling-news__join-us-button {
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
  }

  .page-blog-latest-gambling-news__cta-section .page-blog-latest-gambling-news__cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-latest-gambling-news__predictions-list {
    padding-left: 20px;
    width: 100%;
  }

  .page-blog-latest-gambling-news__trends-content,
  .page-blog-latest-gambling-news__insights-content,
  .page-blog-latest-gambling-news__responsible-content {
    padding: 20px 15px;
  }
}