.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-resources__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3B60 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-resources__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #D0D0D0;
}

.page-resources__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-resources__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  margin-top: 20px;
}

.page-resources__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-resources__btn--secondary {
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources__btn--secondary:hover {
  background-color: #1A3B60; /* Slightly lighter dark blue */
  transform: translateY(-2px);
}

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

.page-resources__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources__section-title--small {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources__filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources__categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-resources__category-btn {
  background-color: #1A3B60; /* Lighter dark blue */
  color: #FFD700; /* Gold */
  border: 1px solid #FFD700;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources__category-btn:hover,
.page-resources__category-btn--active {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

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

.page-resources__article-card {
  background-color: #1A3B60; /* Lighter dark blue */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 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.4);
}

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

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

.page-resources__article-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-resources__article-title a:hover {
  color: #E6C200; /* Slightly darker gold */
}

.page-resources__article-category {
  display: inline-block;
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold */
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.85em;
  margin-bottom: 15px;
}

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

.page-resources__pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.page-resources__pagination-link {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #FFD700; /* Gold */
  background-color: #1A3B60; /* Lighter dark blue */
  border: 1px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources__pagination-link:hover:not(.page-resources__pagination-link--disabled),
.page-resources__pagination-link--active {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

.page-resources__pagination-link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-resources__deep-content {
  padding: 60px 0;
  background-color: #0A2342; /* Main dark blue */
  color: #E0E0E0;
}

.page-resources__deep-content h2 {
  color: #FFD700;
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources__deep-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources__deep-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-resources__deep-content ul,
.page-resources__deep-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources__deep-content li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #D0D0D0;
}

.page-resources__deep-content li::marker {
  color: #FFD700;
}

.page-resources__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

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

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

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

  .page-resources__section-title--small {
    font-size: 1.5em;
    text-align: center;
  }

  .page-resources__filter-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .page-resources__categories {
    justify-content: center;
  }

  .page-resources__article-grid {
    grid-template-columns: 1fr;
  }

  .page-resources__deep-content h2 {
    font-size: 2em;
  }

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

  .page-resources__cta-bottom {
    flex-direction: column;
    align-items: center;
  }

  .page-resources__btn {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-resources__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-resources__article-summary {
    font-size: 0.9em;
  }
}