.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px; /* Max width for image itself */
  margin: 0 auto 20px auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  /* No fixed font-size, rely on clamp if needed, otherwise relative */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-news__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-news__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-news__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__intro-section,
.page-news__access-section {
  padding: 80px 20px;
  background: var(--background-color-light, #ffffff);
  color: var(--text-color-dark, #333333);
}

.page-news__categories-section,
.page-news__faq-section {
  padding: 80px 20px;
  background: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

.page-news__benefits-section,
.page-news__conclusion-section {
  padding: 80px 20px;
  background: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

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

.page-news__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: inherit;
  line-height: 1.3;
}

.page-news__text-block {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: inherit;
}

.page-news__text-link {
  color: var(--glow-color, #57E38D);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-news__text-link:hover {
  color: var(--gold-color, #F2C14E);
}

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

.page-news__card {
  background: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-main-color, #F2FFF6);
}

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

.page-news__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-news__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color, #F2FFF6);
}

.page-news__card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary-color, #A7D9B8);
  flex-grow: 1;
}

.page-news__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--glow-color, #57E38D);
  border: 2px solid var(--glow-color, #57E38D);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-news__btn-secondary:hover {
  background: var(--glow-color, #57E38D);
  color: #08160F;
}

.page-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-news__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-news__content-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: block;
  min-width: 300px; /* Minimum size for content images */
  min-height: 225px;
}

.page-news__text-content {
  width: 50%;
}

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

.page-news__faq-item {
  background: var(--deep-green-color, #0A4B2C);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color, #F2FFF6);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
  transition: background 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-news__faq-question::-webkit-details-marker { /* For details/summary */
  display: none;
}

.page-news__faq-question:hover {
  background: var(--divider-color, #1E3A2A);
}

.page-news__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--glow-color, #57E38D);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-news__section-title {
    font-size: 2rem;
  }
  .page-news__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-news__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-news__content-image,
  .page-news__text-content {
    width: 100%;
  }
  .page-news__content-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section,
  .page-news__intro-section,
  .page-news__categories-section,
  .page-news__benefits-section,
  .page-news__access-section,
  .page-news__faq-section,
  .page-news__conclusion-section {
    padding: 40px 15px;
  }

  .page-news__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-news__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-news__description {
    font-size: 1rem;
  }

  .page-news__section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .page-news__text-block,
  .page-news__card-text,
  .page-news__faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .page-news__card-title {
    font-size: 1.3rem;
  }

  .page-news__grid {
    grid-template-columns: 1fr;
  }

  .page-news__card-image {
    height: 180px;
  }

  .page-news__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  /* Mobile responsive for images, videos, and buttons */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__hero-image-wrapper,
  .page-news__content-wrapper,
  .page-news__text-content,
  .page-news__grid,
  .page-news__card,
  .page-news__faq-list,
  .page-news__faq-item,
  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Adjust padding for containers to prevent overflow */
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-news__hero-content .page-news__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .page-news__card .page-news__btn-secondary {
    margin-left: auto;
    margin-right: auto;
  }

  .page-news__content-image {
    min-width: unset;
    min-height: unset;
    height: auto;
  }
}