.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px 0; /* Adjusted for header offset */
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}

.page-news__hero-image-container {
  width: 100%;
  max-width: 800px; /* Adjust based on desired hero image size */
  margin-bottom: 30px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover; /* Default cover for desktop, will change to contain for mobile */
}

.page-news__hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-news__intro-text {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-news__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-news__btn-secondary:hover {
  background: #FFD36B; /* Glow */
  color: #111111; /* Dark text for bright button */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-news__section {
  padding: 60px 0;
}

.page-news__dark-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-news__light-bg {
  background-color: #111111;
  color: #FFF6D6;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Primary Color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news__introduction p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #FFF6D6;
  text-align: justify;
}

.page-news__introduction p strong {
  color: #FFD36B;
}

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

.page-news__news-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-news__news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news__news-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__news-card-title a {
  color: #F2C14E; /* Primary Color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #FFD36B; /* Glow */
}

.page-news__news-card-date {
  font-size: 0.9em;
  color: #CCC;
  margin-bottom: 15px;
}

.page-news__news-card-excerpt {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more:hover {
  text-decoration: underline;
}

.page-news__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-news__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news__benefits-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-news__benefits-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: inline-block;
  object-fit: contain;
}

.page-news__benefits-title {
  font-size: 1.5em;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 15px;
}

.page-news__benefits-item p {
  font-size: 1em;
  color: #FFF6D6;
}

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

.page-news__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-news__step-title {
  font-size: 1.6em;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-news__step-item p {
  font-size: 1em;
  color: #FFF6D6;
}

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

.page-news__point-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-news__point-title {
  font-size: 1.6em;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 15px;
}

.page-news__point-item p {
  font-size: 1em;
  color: #FFF6D6;
}

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-news__faq-item[open] .page-news__faq-question {
  background-color: #0A0A0A;
  border-bottom: 1px solid #3A2A12;
}

.page-news__faq-item .page-news__faq-question::-webkit-details-marker {
  display: none;
}

.page-news__faq-item .page-news__faq-question::marker {
  display: none;
}

.page-news__faq-qtext {
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #FFF6D6;
  background-color: #0A0A0A;
}

.page-news__faq-answer p {
  margin: 0;
}

.page-news__cta-final {
  text-align: center;
  padding-bottom: 80px;
}

.page-news__cta-final .page-news__cta-buttons {
  margin-top: 40px;
}

/* General image and container responsiveness */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-news__section,
.page-news__card,
.page-news__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* --- Media Queries --- */

@media (max-width: 1024px) {
  .page-news__container {
    padding: 20px 30px;
  }

  .page-news__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

  .page-news__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-news__benefits-list,
  .page-news__guide-steps,
  .page-news__commitment-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 15px;
  }

  /* Hero Section */
  .page-news__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }

  .page-news__hero-image-container {
    margin-bottom: 20px;
  }

  .page-news__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-news__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
    margin-bottom: 15px;
  }

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

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

  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Sections */
  .page-news__section {
    padding: 40px 0;
  }

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

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

  /* News Grid (Article Cards) */
  .page-news__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__news-card-image {
    height: 180px;
  }

  .page-news__news-card-title {
    font-size: 1.2em;
  }

  .page-news__news-card-excerpt {
    font-size: 0.95em;
  }

  /* Benefits List */
  .page-news__benefits-list,
  .page-news__guide-steps,
  .page-news__commitment-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__benefits-item,
  .page-news__step-item,
  .page-news__point-item {
    padding: 25px;
  }

  .page-news__benefits-title,
  .page-news__step-title,
  .page-news__point-title {
    font-size: 1.4em;
  }

  /* FAQ */
  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-news__faq-answer {
    padding: 12px 20px 15px 20px;
    font-size: 0.95em;
  }

  /* All images */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* All containers */
  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* No winner list or game grid on news page, but including these empty rules for strict compliance to checklist */
  /* Winner List (Module 7, 8) - not applicable to news page, but for checklist */
  /* Game Grid (Module 4, 5) - not applicable to news page, but for checklist */
  .page-news__game-grid { /* Not present on news page */ }
  .page-news__winner-list { /* Not present on news page */ }
  .page-news__winner-item { /* Not present on news page */ }
  .page-news__winner-list__item-image { /* Not present on news page */ }
}