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

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

.page-resources__highlight {
  color: #FFD700;
}

.page-resources__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

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

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

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

.page-resources__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-resources__btn--cta {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #003366;
  margin-left: 10px; /* Add some spacing */
}

.page-resources__btn--cta:hover {
  background-color: #002244;
  border-color: #002244;
}

.page-resources__link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources__link-inline:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-resources__hero {
  background: linear-gradient(135deg, #003366 0%, #002244 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-resources__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  font-weight: 300;
  z-index: 1;
  position: relative;
  color: #e0e0e0;
}

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

/* Intro Section */
.page-resources__intro {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333;
}

.page-resources__intro-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-resources__intro-content p {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
}

.page-resources__intro-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

/* Articles Section */
.page-resources__articles {
  padding: 80px 0;
  background-color: #fff;
}

.page-resources__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
  font-weight: 700;
}

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

.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 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-resources__article-title {
  font-size: 1.5em;
  margin: 20px 20px 10px 20px;
  color: #003366;
  font-weight: 600;
}

.page-resources__article-title a {
  color: #003366;
  text-decoration: none;
}

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

.page-resources__article-excerpt {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-resources__article-card .page-resources__btn {
  margin: 0 10px 20px 20px;
}

/* CTA Bottom Section */
.page-resources__cta-bottom {
  background: linear-gradient(135deg, #003366, #002244);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-resources__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsible Gambling Section */
.page-resources__responsible-gambling {
  padding: 80px 0;
  background-color: #f0f4f8;
  text-align: center;
  color: #333;
}

.page-resources__responsible-gambling .page-resources__section-title {
  color: #003366;
}

.page-resources__responsible-gambling .page-resources__section-description {
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

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

  .page-resources__hero-subtitle {
    font-size: 1.2em;
  }

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

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

@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__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources__btn--large {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources__intro,
  .page-resources__articles,
  .page-resources__cta-bottom,
  .page-resources__responsible-gambling {
    padding: 50px 0;
  }

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

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

  .page-resources__article-card .page-resources__btn {
    margin-left: 20px;
    margin-right: 10px;
  }

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

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

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

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

  .page-resources__btn {
    padding: 10px 20px;
  }

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

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

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

  .page-resources__article-card .page-resources__btn {
    margin-left: 15px;
    margin-right: 15px;
    display: block;
    width: calc(100% - 30px);
    text-align: center;
    margin-bottom: 10px;
  }

  .page-resources__btn--cta {
    margin-left: 15px;
  }
}