.page-resources {
  color: #333333; /* Dark text for light body background */
}

.page-resources__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-resources__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-resources__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for text */
  border-radius: 10px;
}

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-resources__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources__button--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-resources__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources__introduction-section,
.page-resources__deep-content-section,
.page-resources__cta-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-resources__featured-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.page-resources__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources__sub-section-title {
  font-size: 2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-resources__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

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

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

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

.page-resources__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-resources__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.page-resources__card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__card-title a:hover {
  color: #FCBC45;
}

.page-resources__card-category {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 10px;
}

.page-resources__card-summary {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__button--link {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 0.95em;
  align-self: flex-start;
}

.page-resources__button--link:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources__content-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Example max-width, ensure it's >= 200px */
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Section Specific */
.page-resources__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-resources__cta-section .page-resources__section-title {
  color: #FFFFFF;
}

.page-resources__cta-section .page-resources__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources__cta-section .page-resources__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-resources__cta-section .page-resources__button--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources__hero-title {
    font-size: 2.8em;
  }
  .page-resources__hero-description {
    font-size: 1.1em;
  }
  .page-resources__section-title {
    font-size: 2.2em;
  }
  .page-resources__sub-section-title {
    font-size: 1.7em;
  }
  .page-resources__article-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-section {
    padding-top: var(--header-offset, 100px);
  }
  .page-resources__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-resources__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-resources__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-resources__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-resources__introduction-section,
  .page-resources__deep-content-section,
  .page-resources__cta-section {
    padding: 40px 15px;
  }
  .page-resources__featured-section {
    padding: 50px 15px;
  }
  .page-resources__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources__sub-section-title {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-resources__section-text {
    font-size: 0.95em;
  }
  .page-resources__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-resources__card-title {
    font-size: 1.3em;
  }
  .page-resources__card-image {
    height: 180px;
  }
  .page-resources__content-image {
    max-width: 100%;
    height: auto; /* Ensure responsiveness */
  }
  .page-resources__cta-section .page-resources__section-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 1.6em;
  }
  .page-resources__hero-description {
    font-size: 0.9em;
  }
  .page-resources__button {
    width: 90%;
  }
  .page-resources__section-title {
    font-size: 1.5em;
  }
  .page-resources__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources__card-title {
    font-size: 1.1em;
  }
  .page-resources__card-image {
    height: 150px;
  }
}