.page-news__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-news__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-news__hero-content {
  max-width: 800px;
}

.page-news__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-news__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-news__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-news__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news__section-padding {
  padding: 80px 0;
}

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

.page-news__section-title {
  font-size: 2.5rem;
  color: #8B0000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news__latest-section .page-news__section-title {
  color: #333333;
}

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

.page-news__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

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

.page-news__article-image {
  width: 100%;
  height: 250px;
  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.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFD700;
}

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

.page-news__article-date {
  font-size: 0.9rem;
  color: #888888;
  margin-top: auto;
  margin-bottom: 10px;
}

.page-news__read-more {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #FFD700;
}

.page-news__categories-section {
  background-color: #8B0000;
  color: #ffffff;
}

.page-news__categories-section .page-news__section-title {
  color: #ffffff;
}

.page-news__categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-news__category-item {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-news__category-item:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-news__full-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-news__video-insight-section {
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
}

.page-news__video-insight-section .page-news__section-title {
  color: #ffffff;
}

.page-news__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-news__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 2;
}

.page-news__video-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-news__video-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-news__video-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news__cta-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-news__cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-news__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-news__cta-title {
  font-size: 2.5rem;
  color: #8B0000;
  margin-bottom: 20px;
}

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

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background-color: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-news__btn-primary:hover {
  background-color: #a00000;
  border-color: #a00000;
  transform: translateY(-3px);
}

.page-news__btn-secondary {
  background-color: #ffffff;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-news__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #a00000;
  border-color: #a00000;
  transform: translateY(-3px);
}

.page-news__cta-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-news__faq-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-news__faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-news__faq-item:last-child {
  border-bottom: none;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #8B0000;
  cursor: pointer;
  padding: 10px 0;
}

.page-news__faq-question:hover {
  color: #FFD700;
}

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

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

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 3rem;
  }

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

  .page-news__cta-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    min-height: auto;
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }

  .page-news__hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .page-news__hero-title {
    font-size: 2.2rem;
  }

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

  .page-news__hero-cta-button,
  .page-news__video-cta-button,
  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 25px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-news__section-padding {
    padding: 60px 0;
  }

  .page-news__section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .page-news__articles-grid,
  .page-news__full-articles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

  .page-news__cta-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .page-news__cta-image {
    min-width: unset;
    width: 100%;
  }

  .page-news__video-insight-section .page-news__video-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

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

  .page-news__faq-question {
    font-size: 1.1rem;
  }

  .page-news__faq-answer {
    font-size: 0.95rem;
  }

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

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

  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper,
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for video section on mobile */
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8rem;
  }

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

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

  .page-news__faq-question {
    font-size: 1rem;
  }
}