.page-news {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  color: var(--text-main);
  background-color: var(--bg-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-news__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-news__section-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 17px;
}

.page-news__content-wrapper p {
  max-width: 900px;
  text-align: justify;
}

.page-news__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

/* Hero Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-news__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-news__hero-description {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-news__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-news__btn-secondary {
  background: var(--card-bg);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
}

.page-news__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--secondary-color);
  color: var(--text-main);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

/* Intro Section */
.page-news__intro-section {
  padding: 80px 0;
}

/* Latest News Section */
.page-news__latest-news {
  padding: 80px 0;
  background-color: var(--card-bg);
}

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

.page-news__news-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-news__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news__card-content {
  padding: 25px;
  color: var(--text-secondary);
}

.page-news__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.page-news__card-link:hover .page-news__card-title {
  color: var(--gold-color);
}

.page-news__card-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-news__card-date {
  font-size: 14px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 15px;
}

.page-news__read-more {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
}

.page-news__arrow {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.page-news__card-link:hover .page-news__arrow {
  margin-left: 15px;
}

.page-news__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

/* Promotions & Events Section */
.page-news__promotions-events {
  padding: 80px 0;
}

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

.page-news__promo-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-news__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.page-news__promo-content {
  padding: 25px;
  color: var(--text-secondary);
}

.page-news__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__promo-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__promo-title a:hover {
  color: var(--gold-color);
}

.page-news__promo-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Industry Insights Section */
.page-news__industry-insights {
  padding: 80px 0;
  background-color: var(--deep-green);
}

/* FAQ Section */
.page-news__faq-section {
  padding: 80px 0;
}

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

.page-news__faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-news__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  list-style: none;
  user-select: none;
}

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

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

.page-news__faq-toggle {
  font-size: 24px;
  line-height: 1;
  width: 30px;
  text-align: center;
  color: var(--secondary-color);
  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;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Final CTA Section */
.page-news__final-cta {
  padding: 80px 0;
  background-color: var(--bg-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-news__hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
  }
  .page-news__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news__container {
    padding: 0 15px;
  }
  .page-news__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-news__hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-news__hero-description {
    font-size: clamp(15px, 3vw, 18px);
  }
  .page-news__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-news__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-news__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
  }
  .page-news__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .page-news__intro-section,
  .page-news__latest-news,
  .page-news__promotions-events,
  .page-news__industry-insights,
  .page-news__faq-section,
  .page-news__final-cta {
    padding: 50px 0;
  }
  .page-news__news-grid,
  .page-news__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-news__card-image,
  .page-news__promo-image {
    height: 180px;
  }
  .page-news__card-title,
  .page-news__promo-title {
    font-size: 20px;
  }
  .page-news__faq-item summary {
    font-size: 18px;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }
  /* Mobile image, video, button specific rules */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-news__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-news__cta-button {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-news__hero-section {
    padding: 30px 0;
    padding-top: 10px !important;
  }
  .page-news__hero-title {
    font-size: clamp(24px, 8vw, 36px);
  }
  .page-news__hero-description {
    font-size: clamp(14px, 4vw, 16px);
  }
  .page-news__section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .page-news__faq-item summary {
    font-size: 16px;
    padding: 12px 15px;
  }
  .page-news__faq-answer {
    padding: 0 15px 12px;
    font-size: 14px;
  }
}