/* style/news.css */\n.page-news {\n  font-family: Arial, sans-serif;\n  line-height: 1.6;\n  color: #ffffff; /* Default text color for dark body background */\n  background-color: transparent; /* body background handled by shared.css */\n}\n\n.page-news__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 20px;\n  box-sizing: border-box;\n}\n\n/* Hero Section */\n.page-news__hero-section {\n  position: relative;\n  padding: 80px 0;\n  padding-top: var(--header-offset, 120px);\n  text-align: center;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  overflow: hidden;\n  min-height: 500px;\n  color: #ffffff;\n}\n\n.page-news__dark-bg {\n  background-color: #017439; /* Brand primary color for dark sections */\n  color: #ffffff;\n}\n\n.page-news__light-bg {\n  background-color: #ffffff;\n  color: #333333;\n}\n\n.page-news__hero-image {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  z-index: -1;\n  opacity: 0.3;\n}\n\n.page-news__hero-title {\n  font-size: 3.5em;\n  margin-bottom: 20px;\n  color: #ffffff;\n  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);\n  line-height: 1.2;\n}\n\n.page-news__hero-description {\n  font-size: 1.3em;\n  margin-bottom: 30px;\n  max-width: 800px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-news__cta-group {\n  display: flex;\n  justify-content: center;\n  gap: 20px;\n  flex-wrap: wrap;\n}\n\n.page-news__btn-primary,\n.page-news__btn-secondary {\n  display: inline-block;\n  padding: 15px 30px;\n  border-radius: 8px;\n  font-size: 1.1em;\n  font-weight: bold;\n  text-decoration: none;\n  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;\n  box-sizing: border-box;\n  max-width: 100%;\n  white-space: normal;\n  word-wrap: break-word;\n}\n\n.page-news__btn-primary {\n  background-color: #C30808; /* Register/Login color */\n  color: #FFFF00; /* Register/Login font color */\n  border: 2px solid #C30808;\n}\n\n.page-news__btn-primary:hover {\n  background-color: #e02020;\n  border-color: #e02020;\n}\n\n.page-news__btn-secondary {\n  background-color: transparent;\n  color: #ffffff;\n  border: 2px solid #ffffff;\n}\n\n.page-news__btn-secondary:hover {\n  background-color: #ffffff;\n  color: #017439;\n}\n\n/* Sections */\n.page-news__section-title {\n  font-size: 2.8em;\n  margin-bottom: 20px;\n  text-align: center;\n  line-height: 1.2;\n}\n\n.page-news__section-description {\n  font-size: 1.1em;\n  text-align: center;\n  margin-bottom: 50px;\n  max-width: 900px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-news__latest-articles,\n.page-news__platform-updates,\n.page-news__industry-insights,\n.page-news__video-section,\n.page-news__faq-section {\n  padding: 80px 0;\n}\n\n/* Article Grid */\n.page-news__articles-grid,\n.page-news__insights-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n}\n\n.page-news__article-card,\n.page-news__insight-card {\n  background-color: #f8f8f8;\n  border-radius: 10px;\n  overflow: hidden;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n  transition: transform 0.3s ease;\n  color: #333333;\n}\n\n.page-news__article-card:hover,\n.page-news__insight-card:hover {\n  transform: translateY(-5px);\n}\n\n.page-news__article-image,\n.page-news__insight-image {\n  width: 100%;\n  height: 225px; /* Fixed height for consistency */\n  object-fit: cover;\n  display: block;\n}\n\n.page-news__article-content,\n.page-news__insight-content {\n  padding: 25px;\n}\n\n.page-news__article-title,\n.page-news__insight-title {\n  font-size: 1.5em;\n  margin-bottom: 15px;\n  line-height: 1.3;\n}\n\n.page-news__article-title a,\n.page-news__insight-title a {\n  color: #017439;\n  text-decoration: none;\n}\n\n.page-news__article-title a:hover,\n.page-news__insight-title a:hover {\n  text-decoration: underline;\n}\n\n.page-news__article-excerpt,\n.page-news__insight-excerpt {\n  font-size: 1em;\n  margin-bottom: 20px;\n  color: #555555;\n}\n\n.page-news__read-more {\n  display: inline-block;\n  color: #017439;\n  text-decoration: none;\n  font-weight: bold;\n  transition: color 0.3s ease;\n}\n\n.page-news__read-more:hover {\n  color: #005f2c;\n  text-decoration: underline;\n}\n\n/* Platform Updates */\n.page-news__updates-list {\n  display: flex;\n  flex-direction: column;\n  gap: 25px;\n  max-width: 900px;\n  margin: 0 auto;\n}\n\n.page-news__update-item {\n  background-color: rgba(255, 255, 255, 0.1);\n  padding: 25px;\n  border-radius: 8px;\n  transition: background-color 0.3s ease;\n}\n\n.page-news__update-item:hover {\n  background-color: rgba(255, 255, 255, 0.15);\n}\n\n.page-news__update-title {\n  font-size: 1.6em;\n  margin-bottom: 10px;\n  color: #ffffff;\n}\n\n.page-news__update-title a {\n  color: #ffffff;\n  text-decoration: none;\n}\n\n.page-news__update-title a:hover {\n  text-decoration: underline;\n}\n\n.page-news__update-date {\n  display: block;\n  font-size: 0.9em;\n  color: #cccccc;\n  margin-bottom: 15px;\n}\n\n.page-news__update-text {\n  font-size: 1em;\n  color: #f0f0f0;\n}\n\n.page-news__view-all-btn {\n  margin-top: 40px;\n}\n\n/* Video Section */\n.page-news__video-wrapper {\n  position: relative;\n  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */\n  height: 0;\n  overflow: hidden;\n  max-width: 960px;\n  margin: 0 auto 40px auto;\n  border-radius: 10px;\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);\n  cursor: pointer;\n}\n\n.page-news__video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  display: block;\n  object-fit: cover;\n}\n\n.page-news__video-cta {\n  margin-top: 0;\n}\n\n/* FAQ Section */\n.page-news__faq-list {\n  max-width: 800px;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column;\n  gap: 15px;\n}\n\n.page-news__faq-item {\n  background-color: #f8f8f8;\n  border-radius: 8px;\n  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);\n  overflow: hidden;\n  color: #333333;\n}\n\n.page-news__faq-item details {\n  width: 100%;\n}\n\n.page-news__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 20px 25px;\n  font-size: 1.2em;\n  font-weight: bold;\n  color: #017439;\n  cursor: pointer;\n  background-color: #e6ffe6; /* Lighter background for summary */\n  border-bottom: 1px solid #d0f0d0;\n}\n\n.page-news__faq-question:hover {\n  background-color: #d0f0d0;\n}\n\n.page-news__faq-toggle {\n  font-size: 1.5em;\n  line-height: 1;\n  transition: transform 0.3s ease;\n}\n\n.page-news__faq-item[open] .page-news__faq-toggle {\n  transform: rotate(45deg);\n}\n\n.page-news__faq-answer {\n  padding: 15px 25px 20px;\n  font-size: 1em;\n  line-height: 1.7;\n  color: #555555;\n}\n\n.page-news__faq-item summary::-webkit-details-marker {\n  display: none;\n}\n\n.page-news__faq-item summary {\n  list-style: none;\n}\n\n/* General Section Padding */\n.page-news__latest-articles,\n.page-news__platform-updates,\n.page-news__industry-insights,\n.page-news__video-section,\n.page-news__faq-section {\n  padding: 80px 0;\n}\n\n/* Responsive Design */\n@media (max-width: 1024px) {\n  .page-news__hero-title {\n    font-size: 2.8em;\n  }\n  .page-news__hero-description {\n    font-size: 1.1em;\n  }\n  .page-news__section-title {\n    font-size: 2.2em;\n  }\n  .page-news__article-title,\n  .page-news__insight-title {\n    font-size: 1.3em;\n  }\n  .page-news__update-title {\n    font-size: 1.4em;\n  }\n}\n\n@media (max-width: 768px) {\n  .page-news__hero-section {\n    padding: 60px 0;\n    padding-top: var(--header-offset, 120px) !important;\n  }\n  .page-news__hero-title {\n    font-size: 2em;\n  }\n  .page-news__hero-description {\n    font-size: 1em;\n  }\n  .page-news__cta-group {\n    flex-direction: column;\n    gap: 15px;\n    align-items: center;\n  }\n  .page-news__btn-primary,\n  .page-news__btn-secondary {\n    width: 90%;\n    max-width: 300px;\n    padding: 12px 20px;\n    font-size: 1em;\n    white-space: normal !important;\n    word-wrap: break-word !important;\n  }\n\n  .page-news__section-title {\n    font-size: 1.8em;\n  }\n  .page-news__section-description {\n    font-size: 0.95em;\n  }\n\n  .page-news__articles-grid,\n  .page-news__insights-grid {\n    grid-template-columns: 1fr;\n  }\n\n  .page-news__article-card,\n  .page-news__insight-card {\n    margin: 0 15px;\n  }\n\n  .page-news__latest-articles,\n  .page-news__platform-updates,\n  .page-news__industry-insights,\n  .page-news__video-section,\n  .page-news__faq-section {\n    padding: 40px 0;\n  }\n  \n  .page-news__container {\n    padding: 0 15px;\n  }\n\n  /* Image responsiveness */\n  .page-news img {\n    max-width: 100% !important;\n    height: auto !important;\n    display: block !important;\n  }\n  .page-news__article-image,\n  .page-news__insight-image {\n    height: auto; /* Allow height to adjust naturally */\n  }\n\n  /* Video responsiveness */\n  .page-news video,\n  .page-news__video {\n    max-width: 100% !important;\n    width: 100% !important;\n    height: auto !important;\n    display: block !important;\n  }\n  .page-news__video-wrapper {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    padding-left: 0;\n    padding-right: 0;\n    margin-left: 0;\n    margin-right: 0;\n    border-radius: 0;\n    box-shadow: none;\n  }\n  .page-news__video-section {\n    padding-left: 15px;\n    padding-right: 15px;\n    box-sizing: border-box !important;\n    overflow: hidden !important;\n  }\n\n  .page-news__faq-question {\n    font-size: 1.1em;\n    padding: 15px 20px;\n  }\n  .page-news__faq-answer {\n    padding: 10px 20px 15px;\n  }\n}\n\n@media (max-width: 480px) {\n  .page-news__hero-title {\n    font-size: 1.8em;\n  }\n  .page-news__section-title {\n    font-size: 1.5em;\n  }\n}\n