/* style/thabet88-news.css */

:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --background-dark: #000;
  --background-medium-dark: #0d0d0d;
  --background-card: #1a1a1a;
  --background-faq-question: #222;
  --background-faq-question-hover: #2a2a2a;
  --background-light: #ffffff;
  --border-color: #333;
}

.page-thabet88-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark); /* Ensure main content has dark background */
}

.page-thabet88-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-thabet88-news__section-title,
.page-thabet88-news__main-title,
.page-thabet88-news__cta-title,
.page-thabet88-news__advantage-title,
.page-thabet88-news__brand-item-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-thabet88-news__main-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-thabet88-news__section-title {
  font-size: 2.2em;
  margin-top: 50px;
}

.page-thabet88-news__description,
.page-thabet88-news__section-description,
.page-thabet88-news__cta-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-thabet88-news__link-inline {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-thabet88-news__link-inline:hover {
  text-decoration: underline;
}

/* Hero Banner Section */
.page-thabet88-news__hero-banner {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%), url('[GALLERY:news_hero:1920x600:thabet88,news,banner,abstract_gold,vi-VN]') no-repeat center center/cover;
  padding: 120px 0 80px;
  text-align: center;
  /* Fixed header spacing */
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

.page-thabet88-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-thabet88-news__cta-button--primary {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.page-thabet88-news__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-thabet88-news__cta-button--secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-thabet88-news__cta-button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Latest Articles Section */
.page-thabet88-news__latest-articles {
  padding: 60px 0;
  background-color: var(--background-medium-dark); /* Slightly lighter dark background */
}

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

.page-thabet88-news__article-card {
  background-color: var(--background-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-thabet88-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-thabet88-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

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

.page-thabet88-news__article-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-thabet88-news__article-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-thabet88-news__article-title a:hover {
  text-decoration: underline;
}

.page-thabet88-news__article-excerpt {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-thabet88-news__article-date {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 15px;
  display: block;
}

.page-thabet88-news__read-more {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-thabet88-news__read-more:hover {
  background-color: #6a0000;
}

.page-thabet88-news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.page-thabet88-news__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-thabet88-news__pagination-link:hover {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.page-thabet88-news__pagination-link--active {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.page-thabet88-news__pagination-link:last-child {
  width: auto;
  border-radius: 8px;
  padding: 0 15px;
}

/* Why Follow Section */
.page-thabet88-news__why-follow {
  padding: 80px 0;
  background-color: var(--background-dark);
}

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

.page-thabet88-news__advantage-item {
  background-color: var(--background-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-thabet88-news__advantage-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: left;
}

.page-thabet88-news__advantage-item p {
  color: #ccc;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-thabet88-news__cta-bottom {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  text-align: center;
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-title {
  color: var(--background-dark);
  margin-bottom: 20px;
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-description {
  color: var(--background-dark);
  margin-bottom: 40px;
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-button--primary {
  background-color: var(--background-dark);
  color: var(--primary-color);
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-button--primary:hover {
  background-color: #333;
  color: var(--primary-color);
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-button--secondary {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.page-thabet88-news__cta-bottom .page-thabet88-news__cta-button--secondary:hover {
  background-color: #e6c200;
  color: var(--background-dark);
}

/* FAQ Section */
.page-thabet88-news__faq-section {
  padding: 80px 0;
  background-color: var(--background-medium-dark);
}

.page-thabet88-news__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-thabet88-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--background-card);
  border: 1px solid var(--border-color);
}

.page-thabet88-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--background-faq-question);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-thabet88-news__faq-question:hover {
  background: var(--background-faq-question-hover);
}

.page-thabet88-news__faq-question:active {
  background: #333;
}

.page-thabet88-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light);
  pointer-events: none;
}

.page-thabet88-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-thabet88-news__faq-item.active .page-thabet88-news__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change to X or rotate */
}

.page-thabet88-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-thabet88-news__faq-item.active .page-thabet88-news__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: var(--background-card);
  border-radius: 0 0 5px 5px;
}

.page-thabet88-news__faq-answer p {
  color: #ccc;
  font-size: 0.95em;
  margin: 0;
}

/* Brand Intro Section */
.page-thabet88-news__brand-intro {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-thabet88-news__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-thabet88-news__brand-item {
  background-color: var(--background-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-thabet88-news__brand-item-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: left;
}

.page-thabet88-news__brand-item p {
  color: #ccc;
  font-size: 1em;
}

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

@media (max-width: 768px) {
  .page-thabet88-news__hero-banner {
    padding: 100px 0 60px; /* Mobile: Adjust based on fixed header height */
    padding-top: 100px !important;
  }

  .page-thabet88-news__main-title {
    font-size: 2em;
  }

  .page-thabet88-news__section-title {
    font-size: 1.8em;
  }

  .page-thabet88-news__description,
  .page-thabet88-news__section-description,
  .page-thabet88-news__cta-description {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-thabet88-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-thabet88-news__cta-button {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-thabet88-news__latest-articles,
  .page-thabet88-news__why-follow,
  .page-thabet88-news__cta-bottom,
  .page-thabet88-news__faq-section,
  .page-thabet88-news__brand-intro {
    padding: 40px 0;
  }

  .page-thabet88-news__container {
    padding: 0 15px;
  }

  .page-thabet88-news__article-grid,
  .page-thabet88-news__advantage-grid,
  .page-thabet88-news__brand-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-thabet88-news__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-thabet88-news__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain; /* Use contain to ensure full image visibility on mobile */
  }

  .page-thabet88-news__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-thabet88-news__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-thabet88-news__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-thabet88-news__faq-answer {
    padding: 0 15px;
  }
  
  .page-thabet88-news__faq-item.active .page-thabet88-news__faq-answer {
    padding: 15px !important;
  }

  /* General image responsiveness for all images in the page */
  .page-thabet88-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-thabet88-news__section,
  .page-thabet88-news__card,
  .page-thabet88-news__container,
  .page-thabet88-news__article-card,
  .page-thabet88-news__advantage-item,
  .page-thabet88-news__brand-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-thabet88-news__article-content,
  .page-thabet88-news__advantage-item,
  .page-thabet88-news__brand-item {
      padding-left: 15px;
      padding-right: 15px;
  }
  
}