/* style/resources.css */
.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for text on dark background */
  background-color: #0A1931; /* Main brand color for overall background */
}

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

.page-resources a:hover {
  color: #e6c200; /* Slightly darker gold on hover */
}

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

/* Hero Section */
.page-resources__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-resources__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.page-resources__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-resources__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text */
}

.page-resources__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #000000;
}

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

.page-resources__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-resources__btn--link {
  background-color: transparent;
  color: #FFD700;
  padding: 8px 0;
  text-transform: none;
  font-weight: normal;
}

.page-resources__btn--link:hover {
  text-decoration: underline;
}

.page-resources__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Section Titles */
.page-resources__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-resources__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #b0b0b0;
}

/* Article Grid */
.page-resources__articles-section {
  padding: 60px 0;
  background-color: #0A1931;
}

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

.page-resources__article-card {
  background-color: #1a2a47; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  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.5);
}

.page-resources__article-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-resources__article-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for article titles */
  line-height: 1.3;
}

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

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

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

/* Pagination */
.page-resources__pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.page-resources__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a2a47;
  color: #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources__pagination-link:hover,
.page-resources__pagination-link--active {
  background-color: #FFD700;
  color: #0A1931;
}

/* CTA Banner */
.page-resources__cta-banner {
  background: linear-gradient(90deg, #FFD700, #e6c200); /* Gold gradient */
  padding: 60px 0;
  text-align: center;
  color: #0A1931;
  margin-top: 60px;
}

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

.page-resources__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #333;
}

/* Deep Content Section */
.page-resources__deep-content {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-resources__deep-content h2,
.page-resources__deep-content h3,
.page-resources__deep-content h4 {
  color: #FFD700;
  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-bottom: 2px solid #1a2a47;
  padding-bottom: 10px;
}

.page-resources__deep-content h4 {
  font-size: 1.4em;
}

.page-resources__deep-content p {
  margin-bottom: 15px;
  color: #e0e0e0;
  line-height: 1.7;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

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

  .page-resources__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-resources__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-resources__articles-section {
    padding: 40px 0;
  }

  .page-resources__article-content {
    padding: 20px;
  }

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

  .page-resources__cta-banner {
    padding: 40px 0;
    margin-top: 40px;
  }

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

  .page-resources__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources__deep-content {
    padding: 60px 0;
  }

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

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

@media (max-width: 480px) {
  .page-resources__container {
    padding: 0 15px;
  }

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

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

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

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