/* style/resources.css */
.page-resources {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-resources .section-padding {
  padding: 60px 0;
}

.page-resources .section-bg-light {
  background-color: #f8f9fa;
}

.page-resources .section-bg-dark {
  background-color: #007BFF;
  color: #fff;
}

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

/* Hero Section */
.page-resources__hero {
  position: relative;
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px; /* Ensure sufficient height */
  overflow: hidden;
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Highlight with secondary color */
  line-height: 1.2;
}

.page-resources__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
}

.page-resources__hero-btn {
  display: inline-block;
  background-color: #FFC107; /* Secondary color for CTA */
  color: #000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__hero-btn:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-3px);
}

/* General Section Styles */
.page-resources__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources__sub-section-title {
  font-size: 1.8em;
  color: #0056b3; /* Slightly darker primary color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources__text-block--cta {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #555;
}

.page-resources__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources__list li strong {
  color: #007BFF;
}

/* Article Grid */
.page-resources__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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 25px rgba(0, 0, 0, 0.15);
}

.page-resources__article-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources__article-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: #007BFF; /* Primary color */
  min-height: 60px; /* Ensure consistent title height */
}

.page-resources__article-title a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-resources__article-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-resources__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  text-align: center;
  margin: 0 20px 20px; /* Margin for buttons within cards */
}

.page-resources__btn--primary {
  background-color: #007BFF;
  color: #fff;
  border: 1px solid #007BFF;
}

.page-resources__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-resources__btn--secondary {
  background-color: #FFC107;
  color: #000;
  border: 1px solid #FFC107;
}

.page-resources__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

/* CTA Section */
.page-resources__cta-section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.page-resources__cta-content {
  position: relative;
  z-index: 2;
}

.page-resources__cta-title {
  color: #FFC107;
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-resources__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

/* Contact Section */
.page-resources__contact-content {
  text-align: center;
}

.page-resources__contact-content .page-resources__btn {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.8em;
  }
  .page-resources__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources__section-title {
    font-size: 2em;
  }
  .page-resources__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources__hero {
    padding: 80px 0;
  }
  .page-resources__hero-title {
    font-size: 2.2em;
  }
  .page-resources__hero-subtitle {
    font-size: 1em;
  }
  .page-resources__section-title {
    font-size: 1.8em;
  }
  .page-resources__text-block {
    font-size: 1em;
  }
  .page-resources__list li {
    font-size: 1em;
  }
  .page-resources__cta-title {
    font-size: 2.2em;
  }
  .page-resources__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-resources__hero {
    padding: 60px 0;
  }
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources__section-title {
    font-size: 1.5em;
  }
  .page-resources__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources__article-grid {
    grid-template-columns: 1fr;
  }
  .page-resources__btn {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .page-resources__article-card {
    margin-bottom: 20px;
  }
  .page-resources__cta-title {
    font-size: 1.8em;
  }
}