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

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

.page-resources__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0A2E50 0%, #1A4D80 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  font-weight: bold;
}

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

.page-resources__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2E50;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-resources__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: #0A2E50; /* Dark blue */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

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

.page-resources__articles {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-resources__article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px 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-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-resources__article-title a {
  color: #0A2E50; /* Dark blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #FFD700; /* Gold accent */
}

.page-resources__article-category {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
}

.page-resources__article-summary {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__article-button {
  display: inline-block;
  background-color: #0A2E50; /* Dark blue button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-resources__article-button:hover {
  background-color: #1A4D80;
}

.page-resources__deep-content {
  padding: 60px 0;
  background-color: #f4f7f6;
}

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

.page-resources__deep-content h2, 
.page-resources__deep-content h3 {
  color: #0A2E50; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources__deep-content h2 {
  font-size: 2.2em;
  text-align: center;
}

.page-resources__deep-content h3 {
  font-size: 1.8em;
  border-left: 5px solid #FFD700; /* Gold border */
  padding-left: 15px;
}

.page-resources__deep-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-resources__deep-content ul li {
  margin-bottom: 10px;
}

.page-resources__deep-content a {
  color: #0A2E50;
  text-decoration: underline;
  font-weight: bold;
}

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

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

.page-resources__cta {
  background-color: #0A2E50; /* Dark blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-resources__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
}

.page-resources__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-resources__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2E50;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-resources__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-resources__hero-title {
    font-size: 2.5em;
  }

  .page-resources__hero-description {
    font-size: 1.1em;
  }

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

  .page-resources__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

  .page-resources__cta-title {
    font-size: 2.2em;
  }

  .page-resources__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-resources__hero {
    padding: 50px 15px;
  }

  .page-resources__hero-title {
    font-size: 2em;
  }

  .page-resources__hero-description {
    font-size: 1em;
  }

  .page-resources__article-card {
    margin-bottom: 20px;
  }

  .page-resources__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-resources__deep-content h3 {
    font-size: 1.6em;
  }

  .page-resources__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 1.8em;
  }

  .page-resources__hero-description {
    font-size: 0.9em;
  }

  .page-resources__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources__article-title {
    font-size: 1.3em;
  }

  .page-resources__section-title {
    font-size: 1.6em;
    padding-top: 30px;
  }

  .page-resources__cta-title {
    font-size: 1.6em;
  }

  .page-resources__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}