.page-news {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body padding-top handled by shared.css */
  overflow: hidden;
  color: #F2FFF6;
}

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

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -150px; /* Overlay text slightly for visual effect, but not on the image itself */
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-news__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-news__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-news__section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-news__section-description {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8;
}

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

.page-news__grid--two-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-news__card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-news__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-news__card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-news__card-meta {
  font-size: 0.875rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-news__card-text {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #F2C14E; /* Gold */
}

.page-news__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(87, 227, 141, 0.7);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__cta-button--wide {
  min-width: 250px;
}

.page-news__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

.page-news__trend-item, .page-news__insight-item {
  background: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__trend-item:hover, .page-news__insight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(87, 227, 141, 0.4);
}

.page-news__trend-image, .page-news__insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-news__trend-title, .page-news__insight-title {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-news__trend-text, .page-news__insight-text {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-news__cta-bottom {
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
  color: #F2FFF6;
  text-align: center;
  padding: 80px 20px;
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.3);
}

.page-news__cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.page-news__cta-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }
  .page-news__grid--two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 40px;
  }
  .page-news__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }
  .page-news__main-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .page-news__description {
    font-size: clamp(0.9rem, 3.5vw, 1.125rem);
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-news__section-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-bottom: 30px;
  }
  .page-news__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__card-image {
    height: 180px;
  }
  .page-news__card-content {
    padding: 20px;
  }
  .page-news__card-title {
    font-size: clamp(1.1rem, 4vw, 1.375rem);
  }
  .page-news__card-text {
    font-size: 0.95rem;
  }
  .page-news__trend-item, .page-news__insight-item {
    padding: 20px;
  }
  .page-news__trend-image, .page-news__insight-image {
    height: 160px;
  }
  .page-news__trend-title, .page-news__insight-title {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }
  .page-news__trend-text, .page-news__insight-text {
    font-size: 0.9rem;
  }
  .page-news__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-news__cta-button--large {
    font-size: 1.125rem;
    padding: 15px 30px;
  }
  .page-news__cta-bottom {
    padding: 60px 15px;
  }
  .page-news__cta-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .page-news__cta-text {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  /* Mobile specific overrides for images, videos, buttons */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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__hero-section, .page-news__updates-section, .page-news__trends-section,
  .page-news__guides-section, .page-news__expert-insights, .page-news__cta-bottom,
  .page-news__button-group, .page-news__hero-image-wrapper,
  .page-news__trend-item, .page-news__insight-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news__button-group {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-content {
    margin-top: -60px;
  }
  .page-news__main-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }
  .page-news__description {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }
  .page-news__cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .page-news__cta-button--large {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-news__card-image {
    height: 160px;
  }
  .page-news__trend-image, .page-news__insight-image {
    height: 140px;
  }
}