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

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

.page-resources__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_gaming_pattern,red_gold,dynamic]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-resources__hero-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-resources__btn--primary {
  background-color: #FFD700;
  color: #CC0000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources__articles-section,
.page-resources__deep-dive-section,
.page-resources__why-choose-us,
.page-resources__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-resources__section-title {
  font-size: 2.2em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources__section-description {
  font-size: 1.05em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-resources__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.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;
  line-height: 1.4;
}

.page-resources__article-title a {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources__article-title a:hover {
  text-decoration: underline;
}

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

.page-resources__btn--link {
  color: #FFD700;
  background-color: #CC0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  align-self: flex-start;
}

.page-resources__btn--link:hover {
  background-color: #990000;
  color: #FFD700;
}

.page-resources__deep-dive-section {
  background-color: #fff;
}

.page-resources__content-block {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__content-block h3 {
  font-size: 1.8em;
  color: #CC0000;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources__content-block p {
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

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

.page-resources__why-choose-us {
  background-color: #f0f0f0;
}

.page-resources__why-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-resources__why-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #444;
}

.page-resources__why-list li strong {
  color: #CC0000;
  font-size: 1.1em;
}

.page-resources__why-conclusion {
  text-align: center;
  font-size: 1.1em;
  color: #333;
  margin-top: 30px;
  font-weight: bold;
}

.page-resources__cta-section {
  background: linear-gradient(135deg, #CC0000, #990000);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-resources__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-resources__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-resources__btn--large {
  padding: 15px 40px;
  font-size: 1.1em;
  min-width: 200px;
}

.page-resources__btn--download {
  background-color: #FFD700;
  color: #CC0000;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .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--large {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-resources__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

  .page-resources__content-block h3 {
    font-size: 1.5em;
  }

  .page-resources__hero-section,
  .page-resources__articles-section,
  .page-resources__deep-dive-section,
  .page-resources__why-choose-us,
  .page-resources__cta-section {
    padding: 40px 0;
  }
}