/* style/news.css */\n:root {\n  --primary-color: #26A9E0;\n  --secondary-color: #FFFFFF;\n  --text-dark: #333333;\n  --text-light: #ffffff;\n  --bg-light: #f8f9fa; /* A slightly off-white for sections */\n  --bg-dark: #26A9E0; /* Using primary color for dark sections */\n  --border-color: #e0e0e0;\n  --button-login: #EA7C07; /* Specific color for login/register if needed, but CTA uses primary/secondary */\n}\n\n/* Base styles for the page content */\n.page-news {\n  font-family: 'Arial', sans-serif;\n  line-height: 1.6;\n  color: var(--text-dark); /* Default text color for light backgrounds */\n  background-color: var(--secondary-color); /* Matches body background from shared.css */\n  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */\n}\n\n.page-news__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 40px 20px;\n  box-sizing: border-box;\n}\n\n.page-news__text-center {\n  text-align: center;\n}\n\n.page-news__section-title {\n  font-size: 36px;\n  color: var(--primary-color);\n  text-align: center;\n  margin-bottom: 20px;\n  font-weight: bold;\n}\n\n.page-news__section-description {\n  font-size: 18px;\n  color: var(--text-dark);\n  text-align: center;\n  max-width: 800px;\n  margin: 0 auto 50px auto;\n}\n\n/* Color contrast classes */\n.page-news__dark-bg {\n  background-color: var(--bg-dark);\n  color: var(--text-light);\n}\n\n.page-news__dark-bg .page-news__section-title,\n.page-news__dark-bg .page-news__section-description,\n.page-news__dark-bg .page-news__article-title a,\n.page-news__dark-bg .page-news__promo-title a,\n.page-news__dark-bg .page-news__game-title a,\n.page-news__dark-bg .page-news__insight-title a,\n.page-news__dark-bg .page-news__read-more-button {\n  color: var(--text-light); /* Ensure text is light on dark backgrounds */\n}\n\n.page-news__light-bg {\n  background-color: var(--bg-light);\n  color: var(--text-dark);\n}\n\n/* Hero Section */\n.page-news__hero-section {\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  text-align: center;\n  padding: 60px 20px; /* Base padding, padding-top handled by .page-news */\n  background: linear-gradient(135deg, var(--primary-color) 0%, #3a7bd5 100%); /* Example gradient */\n  overflow: hidden; /* To contain the image if it overflows */\n}\n\n.page-news__hero-container {\n  position: relative;\n  max-width: 1200px;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  z-index: 1; /* Ensure content is above any potential background layers */\n}\n\n.page-news__hero-image {\n  width: 100%;\n  margin-bottom: 30px;\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n}\n\n.page-news__hero-image img {\n  width: 100%;\n  height: auto;\n  max-width: 100%;\n  display: block;\n  object-fit: cover;\n}\n\n.page-news__hero-content {\n  position: relative;\n  z-index: 2;\n  text-align: center;\n  width: 100%;\n}\n\n.page-news__main-title {\n  font-size: 48px;\n  color: var(--text-light);\n  margin-bottom: 20px;\n  font-weight: 700;\n  line-height: 1.2;\n}\n\n.page-news__hero-description {\n  font-size: 20px;\n  color: var(--text-light);\n  margin-bottom: 40px;\n  max-width: 900px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n/* CTA Buttons */\n.page-news__cta-button {\n  display: inline-block;\n  padding: 15px 40px;\n  text-decoration: none;\n  border-radius: 8px;\n  font-size: 18px;\n  font-weight: bold;\n  margin: 10px;\n  transition: all 0.3s ease;\n  cursor: pointer;\n  max-width: 100%; /* For responsive buttons */\n  box-sizing: border-box; /* For responsive buttons */\n  white-space: normal; /* For responsive buttons */\n  word-wrap: break-word; /* For responsive buttons */\n}\n\n.page-news__btn-primary {\n  background: var(--button-login); /* Using specific login color for primary CTA */\n  color: var(--text-light);\n  border: 2px solid transparent;\n}\n\n.page-news__btn-primary:hover {\n  background: #d46b06; /* Example darken */\n  transform: translateY(-2px);\n  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);\n}\n\n.page-news__btn-secondary {\n  background: var(--text-light);\n  color: var(--primary-color);\n  border: 2px solid var(--primary-color);\n}\n\n.page-news__btn-secondary:hover {\n  background: var(--primary-color);\n  color: var(--text-light);\n  transform: translateY(-2px);\n  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);\n}\n\n.page-news__cta-buttons {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n  gap: 15px;\n  margin-top: 30px;\n  width: 100%; /* For responsive button container */\n  max-width: 100%; /* For responsive button container */\n  box-sizing: border-box; /* For responsive button container */\n  overflow: hidden; /* For responsive button container */\n}\n\n\n/* Articles Grid (Latest News, Promotions, Game Updates, Industry Insights) */\n.page-news__articles-grid,\n.page-news__promo-grid,\n.page-news__game-grid,\n.page-news__insights-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-news__article-card,\n.page-news__promo-card,\n.page-news__game-card,\n.page-news__insight-card {\n  background: var(--secondary-color);\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n  display: flex;\n  flex-direction: column;\n}\n\n.page-news__article-card:hover,\n.page-news__promo-card:hover,\n.page-news__game-card:hover,\n.page-news__insight-card:hover {\n  transform: translateY(-8px);\n  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);\n}\n\n.page-news__article-card img,\n.page-news__promo-card img,\n.page-news__game-card img,\n.page-news__insight-card img {\n  width: 100%;\n  height: 220px; /* Fixed height for consistency */\n  object-fit: cover;\n  display: block;\n}\n\n.page-news__card-content {\n  padding: 25px;\n  flex-grow: 1;\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}\n\n.page-news__article-title,\n.page-news__promo-title,\n.page-news__game-title,\n.page-news__insight-title {\n  font-size: 22px;\n  font-weight: bold;\n  margin-bottom: 15px;\n  line-height: 1.3;\n}\n\n.page-news__article-title a,\n.page-news__promo-title a,\n.page-news__game-title a,\n.page-news__insight-title a {\n  text-decoration: none;\n  color: var(--primary-color);\n  transition: color 0.3s ease;\n}\n\n.page-news__article-title a:hover,\n.page-news__promo-title a:hover,\n.page-news__game-title a:hover,\n.page-news__insight-title a:hover {\n  color: #1e87b3; /* Example darken */\n}\n\n.page-news__article-date {\n  font-size: 14px;\n  color: #777;\n  margin-bottom: 10px;\n}\n\n.page-news__article-summary,\n.page-news__promo-text,\n.page-news__game-text,\n.page-news__insight-text {\n  font-size: 16px;\n  color: var(--text-dark);\n  margin-bottom: 20px;\n  flex-grow: 1;\n}\n\n.page-news__read-more-button {\n  display: inline-block;\n  padding: 10px 20px;\n  background: var(--primary-color);\n  color: var(--text-light);\n  text-decoration: none;\n  border-radius: 5px;\n  font-size: 15px;\n  font-weight: bold;\n  transition: background-color 0.3s ease;\n  align-self: flex-start;\n}\n\n.page-news__read-more-button:hover {\n  background: #1e87b3; /* Example darken */\n}\n\n.page-news__cta-promo {\n  text-align: center;\n  margin-top: 60px;\n}\n\n/* FAQ Section */\n.page-news__faq-list {\n  margin-top: 50px;\n  max-width: 900px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-news__faq-item {\n  margin-bottom: 15px;\n  border-radius: 8px;\n  overflow: hidden;\n  border: 1px solid var(--border-color);\n  background: var(--secondary-color);\n  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n}\n\n.page-news__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 18px 25px;\n  background: var(--secondary-color);\n  cursor: pointer;\n  user-select: none;\n  transition: background-color 0.3s ease, border-color 0.3s ease;\n  position: relative;\n}\n\n.page-news__faq-question:hover {\n  background: var(--bg-light);\n}\n\n.page-news__faq-question h3 {\n  margin: 0;\n  padding: 0;\n  flex: 1;\n  font-size: 18px;\n  font-weight: 600;\n  line-height: 1.5;\n  color: var(--primary-color);\n  pointer-events: none; /* Prevent h3 from blocking click event */\n}\n\n.page-news__faq-toggle {\n  font-size: 28px;\n  font-weight: bold;\n  line-height: 1;\n  color: var(--primary-color);\n  transition: transform 0.3s ease, color 0.3s ease;\n  flex-shrink: 0;\n  margin-left: 20px;\n  pointer-events: none; /* Prevent icon from blocking click event */\n  display: inline-flex;\n  align-items: center;\n  justify-content: center;\n  width: 32px;\n  height: 32px;\n}\n\n.page-news__faq-item.active .page-news__faq-toggle {\n  color: var(--primary-color);\n  transform: rotate(180deg); /* Or just change content to '−' */\n}\n\n.page-news__faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;\n  padding: 0 25px;\n  opacity: 0;\n  color: var(--text-dark);\n  background: #f9f9f9;\n  border-top: 1px solid var(--border-color);\n}\n\n.page-news__faq-item.active .page-news__faq-answer {\n  max-height: 2000px !important; /* Sufficiently large to contain any content */\n  padding: 20px 25px !important;\n  opacity: 1;\n  border-radius: 0 0 8px 8px;\n}\n\n.page-news__faq-answer p {\n  margin: 0;\n  font-size: 16px;\n  line-height: 1.7;\n}\n\n\n/* Responsive Design */\n@media (max-width: 1024px) {\n  .page-news__main-title {\n    font-size: 40px;\n  }\n  .page-news__hero-description {\n    font-size: 18px;\n  }\n  .page-news__section-title {\n    font-size: 32px;\n  }\n  .page-news__section-description {\n    font-size: 16px;\n  }\n  .page-news__article-title,\n  .page-news__promo-title,\n  .page-news__game-title,\n  .page-news__insight-title {\n    font-size: 20px;\n  }\n  .page-news__article-card img,\n  .page-news__promo-card img,\n  .page-news__game-card img,\n  .page-news__insight-card img {\n    height: 200px;\n  }\n}\n\n@media (max-width: 768px) {\n  .page-news {\n    padding-top: var(--header-offset, 120px) !important; /* Mobile specific padding top */\n  }\n\n  .page-news__container {\n    padding: 30px 15px;\n  }\n\n  .page-news__hero-section {\n    padding: 40px 15px;\n  }\n\n  .page-news__main-title {\n    font-size: 32px;\n  }\n  .page-news__hero-description {\n    font-size: 16px;\n  }\n  .page-news__section-title {\n    font-size: 28px;\n  }\n  .page-news__section-description {\n    font-size: 15px;\n    margin-bottom: 30px;\n  }\n\n  /* Image responsive for mobile */\n  .page-news img {\n    max-width: 100% !important;\n    width: 100% !important;\n    height: auto !important;\n  }\n  .page-news__article-card img,\n  .page-news__promo-card img,\n  .page-news__game-card img,\n  .page-news__insight-card img {\n     /* Adjust height for smaller screens */\n  }\n\n  /* Container responsive for mobile */\n  .page-news__section,\n  .page-news__card,\n  .page-news__container,\n  .page-news__hero-section,\n  .page-news__latest-news-section,\n  .page-news__promotions-updates-section,\n  .page-news__game-updates-section,\n  .page-news__industry-insights-section,\n  .page-news__faq-section,\n  .page-news__cta-section {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    padding-left: 15px;\n    padding-right: 15px;\n  }\n\n  /* Button responsive for mobile */\n  .page-news__cta-button,\n  .page-news__btn-primary,\n  .page-news__btn-secondary,\n  .page-news a[class*=\"button\"],\n  .page-news a[class*=\"btn\"] {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    white-space: normal !important;\n    word-wrap: break-word !important;\n    padding-left: 15px; /* Ensure padding inside button */\n    padding-right: 15px; /* Ensure padding inside button */\n }}