/* style/i9bet141-news.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #0A2463;
}

.page-i9bet141-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

/* Fixed Navbar Padding */
.page-i9bet141-news {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

.page-i9bet141-news__hero-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--background-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-i9bet141-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-i9bet141-news__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.2;
}

.page-i9bet141-news__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-i9bet141-news__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-i9bet141-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-i9bet141-news__btn-primary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-i9bet141-news__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-i9bet141-news__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-i9bet141-news__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-i9bet141-news__latest-updates,
.page-i9bet141-news__guides-tips,
.page-i9bet141-news__why-choose {
  padding: 60px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-i9bet141-news__industry-insights,
.page-i9bet141-news__social-responsibility,
.page-i9bet141-news__join-us {
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-i9bet141-news__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  color: inherit;
}

.page-i9bet141-news__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-i9bet141-news__dark-bg .page-i9bet141-news__section-description {
  color: #e0e0e0;
}

.page-i9bet141-news__articles-grid,
.page-i9bet141-news__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-i9bet141-news__article-card,
.page-i9bet141-news__guide-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-i9bet141-news__article-card:hover,
.page-i9bet141-news__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-i9bet141-news__article-image,
.page-i9bet141-news__guide-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-i9bet141-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-i9bet141-news__article-title,
.page-i9bet141-news__guide-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.page-i9bet141-news__article-title a,
.page-i9bet141-news__insight-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-i9bet141-news__article-title a:hover,
.page-i9bet141-news__insight-title a:hover {
  color: var(--secondary-color);
}

.page-i9bet141-news__article-excerpt,
.page-i9bet141-news__insight-excerpt,
.page-i9bet141-news__guide-excerpt {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-i9bet141-news__article-date {
  font-size: 0.85em;
  color: #999999;
  display: block;
  margin-top: auto;
}

.page-i9bet141-news__view-all-cta {
  text-align: center;
}

.page-i9bet141-news__insights-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-i9bet141-news__insight-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.page-i9bet141-news__insight-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-i9bet141-news__insight-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-i9bet141-news__insight-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-i9bet141-news__insight-title a:hover {
  color: #ffffff;
}

.page-i9bet141-news__insight-excerpt {
  color: #e0e0e0;
}

.page-i9bet141-news__guide-item {
  text-align: center;
}

.page-i9bet141-news__guide-item .page-i9bet141-news__cta-button {
  margin-top: 20px;
}

.page-i9bet141-news__social-responsibility .page-i9bet141-news__responsibility-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-i9bet141-news__point-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-i9bet141-news__point-item strong {
  color: var(--secondary-color);
}

.page-i9bet141-news__why-choose .page-i9bet141-news__reasons-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-i9bet141-news__reason-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-i9bet141-news__reason-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.page-i9bet141-news__reason-text {
  color: #555555;
}

.page-i9bet141-news__final-cta {
  text-align: center;
  margin-top: 50px;
}

.page-i9bet141-news__join-us {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-i9bet141-news__main-title {
    font-size: 2.8em;
  }
  .page-i9bet141-news__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-i9bet141-news {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-i9bet141-news__hero-section,
  .page-i9bet141-news__latest-updates,
  .page-i9bet141-news__industry-insights,
  .page-i9bet141-news__guides-tips,
  .page-i9bet141-news__social-responsibility,
  .page-i9bet141-news__why-choose,
  .page-i9bet141-news__join-us {
    padding: 40px 15px;
  }

  .page-i9bet141-news__main-title {
    font-size: 2.2em;
  }

  .page-i9bet141-news__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-i9bet141-news__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-i9bet141-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-i9bet141-news__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-i9bet141-news__cta-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-i9bet141-news__articles-grid,
  .page-i9bet141-news__guides-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-i9bet141-news__article-card,
  .page-i9bet141-news__guide-item,
  .page-i9bet141-news__insight-item,
  .page-i9bet141-news__reason-item,
  .page-i9bet141-news__point-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-i9bet141-news__article-image,
  .page-i9bet141-news__guide-image {
    height: 180px;
  }

  .page-i9bet141-news__article-content {
    padding: 20px;
  }

  .page-i9bet141-news__article-title,
  .page-i9bet141-news__guide-title {
    font-size: 1.2em;
  }

  .page-i9bet141-news__insight-title {
    font-size: 1.4em;
  }

  .page-i9bet141-news__reason-title {
    font-size: 1.3em;
  }

  /* Ensure all images are responsive */
  .page-i9bet141-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-i9bet141-news__main-title {
    font-size: 1.8em;
  }

  .page-i9bet141-news__section-title {
    font-size: 1.5em;
  }

  .page-i9bet141-news__cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
}