.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background-color: #0D0E12; /* Ensure background if image doesn't cover fully */
}

.page-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-news__main-title {
  font-weight: bold;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-news__hero-description {
  font-size: 1.15rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-news__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-news__latest-news-section,
.page-news__trends-section,
.page-news__expert-advice-section,
.page-news__cta-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-news__trends-section,
.page-news__card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #A84F0C; /* Border */
}

.page-news__section-title {
  font-size: 2.5rem;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1rem;
  color: #FFF3E6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-news__news-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  border: 1px solid #A84F0C; /* Border */
}

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

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

.page-news__card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__card-title a {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

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

.page-news__card-summary {
  font-size: 0.95rem;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__card-date {
  font-size: 0.85rem;
  color: #FFB04D;
  display: block;
  margin-top: auto;
}

.page-news__button-group {
  text-align: center;
}

.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  color: #FFA53A;
  text-decoration: none;
  border: 2px solid #FFA53A;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-news__btn-secondary:hover {
  background-color: #FFA53A;
  color: #17191F;
}

.page-news__sub-title {
  font-size: 2rem;
  color: #FF8C1A;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__content-block {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.page-news__content-block img {
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  max-width: 400px; /* Adjust as needed for layout */
  width: 100%;
  height: auto;
}

.page-news__content-block p {
  color: #FFF3E6;
  font-size: 1rem;
}

.page-news__advice-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news__advice-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #FFF3E6;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__advice-item strong {
  color: #FFA53A;
}

.page-news__faq-section {
  background-color: #0D0E12; /* Background */
  padding: 60px 0;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFA53A;
  background-color: #17191F;
  list-style: none; /* For details/summary */
}

.page-news__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-news__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FF8C1A;
  transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #FFF3E6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

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

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

  .page-news__sub-title {
    font-size: 1.7rem;
  }

  .page-news__content-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-news__content-block img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

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

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

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

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

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

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

  .page-news__trends-section,
  .page-news__card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-news__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-news__latest-news-section,
  .page-news__trends-section,
  .page-news__expert-advice-section,
  .page-news__cta-section {
    padding: 40px 0;
  }

  .page-news__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__hero-image-wrapper,
  .page-news__news-card,
  .page-news__content-block,
  .page-news__advice-item,
  .page-news__faq-item,
  .page-news__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile button responsiveness */
  .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;
    margin-bottom: 10px;
  }

  .page-news__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-news__hero-section {
    padding-bottom: 40px;
  }
}