.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #26A9E0; /* Brand primary color for hero background */
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-news__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-top: 20px;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-news__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f8ff;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-news__btn-primary:hover {
  background-color: #e06a00;
  border-color: #e06a00;
}

.page-news__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand primary color for secondary action */
  border: 2px solid #26A9E0;
}

.page-news__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7fb0;
  border-color: #1a7fb0;
}

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

.page-news__latest-articles,
.page-news__promotions-events,
.page-news__faq-section {
  background-color: #FFFFFF;
  color: #333333;
}

.page-news__featured-analysis,
.page-news__security-info,
.page-news__cta-final {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-news__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-news__latest-articles .page-news__section-title,
.page-news__promotions-events .page-news__section-title,
.page-news__faq-section .page-news__section-title {
  color: #26A9E0;
}

.page-news__featured-analysis .page-news__section-title,
.page-news__security-info .page-news__section-title,
.page-news__cta-final .page-news__section-title {
  color: #FFFFFF;
}

.page-news__section-description {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-news__article-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-news__article-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news__article-title a:hover {
  text-decoration: underline;
}

.page-news__article-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.page-news__article-summary {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  color: #EA7C07;
  font-weight: 600;
  text-decoration: none;
}

.page-news__read-more:hover {
  text-decoration: underline;
}

.page-news__view-all {
  text-align: center;
}

.page-news__featured-analysis .page-news__container {
  text-align: center;
}

.page-news__featured-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-news__featured-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.page-news__text-block {
  max-width: 800px;
  text-align: left;
  line-height: 1.7;
  font-size: 1.05rem;
}

.page-news__text-block p {
  margin-bottom: 1em;
  color: #f0f8ff;
}

.page-news__text-block .page-news__btn-secondary {
  margin-top: 20px;
}

.page-news__promotion-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-news__promotion-list li {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-news__security-info .page-news__container {
  text-align: center;
}

.page-news__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 30px auto;
}

/* FAQ Section */
.page-news__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-news__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-news__faq-item summary:hover {
  background-color: #eaf6ff;
}

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

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

.page-news__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−';
}

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.page-news__faq-answer p {
  margin-bottom: 1em;
}

.page-news__cta-final .page-news__container {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-image-wrapper {
    max-height: 500px;
  }

  .page-news__featured-content {
    flex-direction: column;
  }

  .page-news__text-block {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section,
  .page-news__latest-articles,
  .page-news__featured-analysis,
  .page-news__promotions-events,
  .page-news__security-info,
  .page-news__faq-section,
  .page-news__cta-final {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__hero-image-wrapper {
    max-height: 400px;
  }

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

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

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-news__article-title {
    font-size: 1.2rem;
  }

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

  .page-news__section-description,
  .page-news__text-block p,
  .page-news__promotion-list li,
  .page-news__faq-answer {
    font-size: 0.95rem;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__container,
  .page-news__article-card,
  .page-news__featured-content,
  .page-news__security-info,
  .page-news__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-news__promotion-list {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-news__hero-section {
    padding-top: 10px !important;
  }
}

/* Ensure all images are at least 200x200px or larger */
.page-news img {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific smaller images if absolutely necessary and not content-critical */
/* This is a fallback and should ideally not be needed if images are correctly sized */
.page-news__logo-small {
  min-width: auto;
  min-height: auto;
}

/* No CSS filters for images */
.page-news img {
  filter: none;
}