.page-resources-latest-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-latest-trends__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-resources-latest-trends__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: bold;
}

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

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

.page-resources-latest-trends__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  min-width: 180px;
}

.page-resources-latest-trends__btn-primary {
  background: #FFD700; /* Main brand color */
  color: #8B0000; /* Dark red for contrast */
}

.page-resources-latest-trends__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-trends__btn-secondary {
  background: #8B0000; /* Secondary brand color */
  color: #FFD700; /* Gold for contrast */
  border: 2px solid #FFD700;
}

.page-resources-latest-trends__btn-secondary:hover {
  background: #6f0000;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-trends__content-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #e0e0e0;
}

.page-resources-latest-trends__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-trends__article-heading {
  font-size: 2em;
  color: #FFD700; /* Gold for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-trends p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-latest-trends__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-latest-trends__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(45deg, #FFD700 0%, #8B0000 100%);
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.page-resources-latest-trends__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-trends__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-latest-trends__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-trends__main-title {
    font-size: 2.2em;
  }

  .page-resources-latest-trends__description {
    font-size: 1em;
  }

  .page-resources-latest-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-trends__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-latest-trends__content-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-trends__article {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }

  .page-resources-latest-trends__article-heading {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-latest-trends p {
    font-size: 0.95em;
  }

  .page-resources-latest-trends__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-latest-trends__cta-bottom {
    padding: 40px 15px;
    margin-top: 40px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-trends__cta-title {
    font-size: 1.8em;
  }

  .page-resources-latest-trends__cta-description {
    font-size: 1em;
  }
}