.page-resources {
  padding-top: var(--header-offset, 120px);
  color: #ffffff; /* Light text on dark body background */
  background-color: #000; /* Ensure consistency with body background */
}

.page-resources__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 60px;
}

.page-resources__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-resources__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-resources__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-resources__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-resources__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark text */
  border: 2px solid #FFD700;
}

.page-resources__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

.page-resources__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources__articles-section {
  margin-bottom: 80px;
}

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

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

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

.page-resources__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

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

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

.page-resources__article-title a {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #e6c200;
}

.page-resources__article-abstract {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__btn--read-more {
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  text-align: center;
  align-self: flex-start;
  border: 2px solid #FFD700;
}

.page-resources__btn--read-more:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources__deep-content {
  line-height: 1.7;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources__deep-content h2,
.page-resources__deep-content h3,
.page-resources__deep-content h4 {
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources__sub-title {
  font-size: 2.2em;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources__mini-title {
  font-size: 1.8em;
  color: #f0f0f0;
}

.page-resources__deep-content p {
  margin-bottom: 20px;
}

.page-resources__deep-content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources__deep-content a:hover {
  color: #e6c200;
}

.page-resources__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources__conclusion-text {
  text-align: center;
  margin-top: 50px;
  font-size: 1.3em;
  color: #FFD700;
}

.page-resources__final-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* 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-title {
    font-size: 1.8em;
  }
  .page-resources__mini-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-section {
    padding: 40px 15px;
  }
  .page-resources__hero-title {
    font-size: 2.2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources__content-area {
    padding: 30px 15px;
  }
  .page-resources__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-resources__article-image {
    height: 200px;
  }
  .page-resources__article-title {
    font-size: 1.3em;
  }
  .page-resources__article-abstract {
    font-size: 0.95em;
  }
  .page-resources__deep-content {
    font-size: 1em;
  }
  .page-resources__deep-content h2 {
    font-size: 2em;
  }
  .page-resources__deep-content h3 {
    font-size: 1.6em;
  }
  .page-resources__deep-content h4 {
    font-size: 1.3em;
  }
  .page-resources__article-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content image responsiveness */
  .page-resources img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__hero-description {
    font-size: 0.9em;
  }
  .page-resources__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources__section-title {
    font-size: 1.6em;
  }
  .page-resources__article-title {
    font-size: 1.2em;
  }
  .page-resources__sub-title {
    font-size: 1.4em;
  }
  .page-resources__mini-title {
    font-size: 1.2em;
  }
}