.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* 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;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #7A0E0E; /* Deep Red */
  position: relative;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

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

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content slightly over the image for visual flow */
  background: rgba(19, 19, 19, 0.7); /* Dark overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFD86A; /* Gold-like for emphasis */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
}

.page-news__hero-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: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-news__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold */
  border: 2px solid #FFD86A; /* Gold */
}

.page-news__btn-secondary:hover {
  background: rgba(255, 216, 106, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.2);
}

.page-news__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFD86A; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news__section-description {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news__latest-news-section,
.page-news__promotions-events-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-news__news-card,
.page-news__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #FFF5E1;
}

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

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

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

.page-news__news-card-date {
  font-size: 0.9rem;
  color: #FFCC66; /* Glow */
  margin-bottom: 10px;
}

.page-news__news-card-title,
.page-news__promotion-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.page-news__news-card-title a,
.page-news__promotion-card-title a {
  color: #FFD86A; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__news-card-excerpt,
.page-news__promotion-card-excerpt {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
}

.page-news__news-card-link {
  display: inline-block;
  color: #FFD86A; /* Gold */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-news__news-card-link:hover {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

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

.page-news__announcements-section {
  padding: 60px 0;
  background-color: #C91F17; /* Main color */
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__section-description {
  color: #FFF5E1;
}

.page-news__announcement-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-news__announcement-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__announcement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.page-news__announcement-date {
  font-size: 0.85rem;
  color: #FFCC66; /* Glow */
  margin-bottom: 10px;
  display: block;
}

.page-news__announcement-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-news__announcement-title a {
  color: #FFD86A; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__announcement-title a:hover {
  color: #FFCC66; /* Glow */
}

.page-news__announcement-excerpt {
  font-size: 0.95rem;
  color: #FFF5E1; /* Text Main */
}

.page-news__about-us-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-news__about-us-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-news__about-us-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-news__about-us-text {
  flex: 2;
  min-width: 300px;
  color: #FFF5E1;
}

.page-news__about-us-text .page-news__section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-news__about-us-text .page-news__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #E53935; /* Auxiliary color */
  color: #FFF5E1; /* Text Main */
}

.page-news__cta-section .page-news__section-title {
  color: #FFD86A; /* Gold */
}

.page-news__cta-section .page-news__section-description {
  color: #FFF5E1; /* Text Main */
  margin-bottom: 50px;
}

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

/* Image global responsive styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-news__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
    border-radius: 5px;
  }

  .page-news__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-news__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-news__hero-cta-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-left: 15px;
    padding-right: 15px;
  }

  .page-news__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* General images */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Content sections (e.g., news cards, announcement items) */
  .page-news__latest-news-section,
  .page-news__announcements-section,
  .page-news__promotions-events-section,
  .page-news__about-us-section,
  .page-news__cta-section {
    padding: 30px 0;
  }

  .page-news__news-grid,
  .page-news__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-news__news-card-title,
  .page-news__promotion-card-title {
    font-size: 1.1rem;
  }

  .page-news__announcement-item {
    padding: 20px;
  }

  .page-news__announcement-title {
    font-size: 1.1rem;
  }

  .page-news__about-us-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-news__about-us-image {
    max-width: 100%;
    min-width: unset;
  }

  .page-news__about-us-text .page-news__section-title {
    text-align: center;
  }

  .page-news__about-us-text .page-news__section-description {
    text-align: center;
  }

  .page-news__section-title {
    font-size: 1.8rem;
  }

  .page-news__section-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}