.page-news__hero-section {
  padding-top: 10px; /* Small top padding as per rule 5 */
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-main);
  min-height: clamp(420px, 50vw, 600px);
}

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

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

.page-news__hero-content {
  position: relative; /* Ensure content is above any background effects */
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Using clamp for H1 font-size */
}

.page-news__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__hero-cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--button-color);
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure sufficient size */
  min-height: 44px; /* Ensure touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news__hero-cta:hover {
  background: var(--glow);
  transform: translateY(-2px);
}

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

.page-news__latest-section, .page-news__industry-section, .page-news__promotions-section, .page-news__cta-section {
  background-color: var(--bg-color);
  padding: 40px 0;
}

.page-news__section-title, .page-news__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

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

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

.page-news__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-news__card-content {
  padding: 20px;
}

.page-news__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-excerpt {
  font-size: 0.95rem;
  color: rgba(255, 243, 230, 0.8);
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-news__card-date {
  font-size: 0.85rem;
  color: rgba(255, 243, 230, 0.6);
  display: block;
}

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--deep-orange);
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  min-width: 180px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news__view-all-button:hover {
  background: var(--glow);
}

.page-news__promotions-section {
  text-align: center;
}

.page-news__promotions-section .page-news__section-title {
  margin-bottom: 20px;
}

.page-news__promotions-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
}

.page-news__cta-content {
  text-align: center;
  padding: 50px 15px;
  background-color: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 243, 230, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  background: var(--button-color);
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
  min-height: 48px; /* Larger touch target for CTA */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.page-news__cta-button:hover {
  background: var(--glow);
  transform: translateY(-3px);
}

.page-news__cta-button--secondary {
  background: var(--deep-orange);
}

.page-news__cta-button--secondary:hover {
  background: var(--glow);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-news__hero-description {
    font-size: 1rem;
  }

  .page-news__hero-cta {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

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

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

  .page-news__section-title, .page-news__cta-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  }

  .page-news__cta-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 549px) {
  .page-news__hero-image-wrapper {
    max-height: 250px;
  }

  .page-news__hero-content {
    padding: 15px;
  }

  .page-news__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-news__hero-description {
    font-size: 0.95rem;
  }

  .page-news__grid {
    grid-template-columns: 1fr; /* Single column layout on very small screens */
  }

  .page-news__card-image {
    height: 200px; /* Adjust height for single column to be larger */
  }

  .page-news__section-title, .page-news__cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-news__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-news__cta-button {
    max-width: 90%;
  }
}

/* Ensure content area images are not too small on mobile */
@media (max-width: 768px) {
  .page-news img {
    max-width: 100%;
    height: auto;
  }
  .page-news__card-image, .page-news__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
  /* Any selector targeting img within .page-news */
  .page-news__latest-section img, 
  .page-news__industry-section img {
    max-width: 100%; 
    height: auto; 
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
}

.page-news {
  overflow-x: hidden;
}