.page-news {
  /* Fixed header spacing for desktop */
  padding-top: 100px;
  background-color: var(--bg-dark-1, #0d0d0d);
  color: #ffffff; /* Light text on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-news__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color, #1A202C) 0%, #000000 100%);
  color: #ffffff;
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.page-news__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color, #FFD700);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-news__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color, #FFD700);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #1A202C);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__btn-primary {
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #1A202C);
}

.page-news__btn-primary:hover {
  background: #e6c200;
}

.page-news__btn-secondary {
  background: var(--primary-color, #1A202C);
  color: var(--secondary-color, #FFD700);
  border: 2px solid var(--secondary-color, #FFD700);
}

.page-news__btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.page-news__inline-cta-button {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #1A202C);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__inline-cta-button:hover {
  background: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-news__introduction-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-news__introduction-section .page-news__section-title {
  color: var(--primary-color, #1A202C);
  text-shadow: none;
}

.page-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-news__text-content {
  flex: 1;
}

.page-news__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-news__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-news__introduction-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.page-news__latest-articles-section {
  padding: 80px 20px;
  background-color: var(--primary-color, #1A202C);
  color: #ffffff;
}

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

.page-news__article-card {
  background: #2a3340;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  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 10px 30px rgba(0, 0, 0, 0.4);
}

.page-news__article-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-news__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news__article-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color, #FFD700);
}

.page-news__article-excerpt {
  font-size: 0.95em;
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-news__article-meta {
  font-size: 0.85em;
  color: #888888;
  margin-top: auto;
}

.page-news__guides-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  color: #333333;
}

.page-news__guides-section .page-news__section-title {
  color: var(--primary-color, #1A202C);
  text-shadow: none;
}

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

.page-news__guide-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news__guide-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color, #1A202C);
}

.page-news__guide-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-news__guide-link:hover {
  color: var(--secondary-color, #FFD700);
}

.page-news__guide-description {
  font-size: 0.95em;
  color: #555555;
}

.page-news__conclusion-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--primary-color, #1A202C);
  color: #ffffff;
}

.page-news__conclusion-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__content-wrapper {
    flex-direction: column;
  }
  .page-news__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-news {
    padding-top: 80px !important; /* Mobile fixed header spacing */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news__container {
    padding: 0 15px;
  }
  .page-news__hero-section,
  .page-news__introduction-section,
  .page-news__latest-articles-section,
  .page-news__guides-section,
  .page-news__conclusion-section {
    padding: 60px 15px;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-news__cta-button,
  .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: 12px 25px !important;
    font-size: 1em !important;
  }
  .page-news__inline-cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px !important;
    font-size: 0.9em !important;
  }
  .page-news__article-grid,
  .page-news__guide-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__guide-title {
    font-size: 1.1em;
  }
  /* Image responsive adjustments */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__image-wrapper,
  .page-news__article-image,
  .page-news__introduction-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  /* Video responsive adjustments (if any, though none included for this page) */
  .page-news video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}