.page-news {
  background-color: #100224;
  color: #F5F5F5;
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-news__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FF5A4F;
  margin-bottom: 15px;
}

.page-news__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-news__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
}

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

.page-news__section-title {
  font-weight: 700;
  font-size: 2.2em;
  color: #FF5A4F;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

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

.page-news__news-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
}

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

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

.page-news__card-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 10px;
  display: block;
}

.page-news__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.page-news__card-title a:hover {
  color: #FF5A4F;
}

.page-news__card-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.page-news__read-more-button {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #E53935;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-news__read-more-button:hover {
  background-color: #FF5A4F;
}

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-news__view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
}

.page-news__cta-section {
  background-color: #1a0630;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}

.page-news__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FF5A4F;
  margin-bottom: 20px;
}

.page-news__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

@media (max-width: 768px) {
  .page-news__main-title {
    font-size: 2em;
  }

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

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

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

  .page-news__cta-title {
    font-size: 1.8em;
  }

  .page-news__cta-description {
    font-size: 1em;
  }

  .page-news__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-news__news-list-section img, .page-news__cta-section img {
    max-width: 100%;
    height: auto;
  }

  .page-news__hero-section, .page-news__news-list-section, .page-news__cta-section {
    overflow-x: hidden;
  }

  .page-news__news-list-section .page-news__news-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum width */
    min-height: 200px; /* Ensure minimum height */
  }

  /* Ensure all content area images are responsive and meet min size */
  .page-news img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-content {
    padding: 20px 15px;
  }

  .page-news__main-title {
    font-size: 1.8em;
  }

  .page-news__cta-title {
    font-size: 1.5em;
  }
}