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

.page-resources-game-strategy__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3f478a 100%); /* Dark blue-purple gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-game-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Bright golden yellow for emphasis */
}

.page-resources-game-strategy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-game-strategy__cta-button {
  display: inline-block;
  background-color: #FFC107; /* Bright golden yellow */
  color: #1A237E; /* Dark blue-purple */
  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;
  border: none;
  cursor: pointer;
}

.page-resources-game-strategy__cta-button:hover {
  background-color: #e5ac07; /* Slightly darker yellow on hover */
  transform: translateY(-2px);
}

.page-resources-game-strategy__cta-button--secondary {
  background-color: #5f65a5; /* Lighter shade of main color */
  color: #ffffff;
  margin-left: 15px;
}

.page-resources-game-strategy__cta-button--secondary:hover {
  background-color: #4b508f;
}

.page-resources-game-strategy__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-game-strategy__ml-2 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .page-resources-game-strategy__ml-2 {
    margin-left: 15px;
  }
}

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

.page-resources-game-strategy__content-wrapper {
  padding: 40px 0;
}

.page-resources-game-strategy__article-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .page-resources-game-strategy__article-container {
    flex-direction: row;
  }
}

.page-resources-game-strategy__sidebar {
  flex: 0 0 280px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: sticky;
  top: 20px; /* Adjust as needed for sticky behavior */
}

@media (max-width: 991px) {
  .page-resources-game-strategy__sidebar {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

.page-resources-game-strategy__sidebar-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 10px;
}

.page-resources-game-strategy__table-of-contents {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-game-strategy__table-of-contents li a {
  display: block;
  padding: 8px 0;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-resources-game-strategy__table-of-contents li a:hover,
.page-resources-game-strategy__table-of-contents li a.active {
  color: #1A237E;
  padding-left: 5px;
  font-weight: bold;
}

.page-resources-game-strategy__sidebar-promo {
  background-color: #fffde7; /* Very light yellow, almost white */
  border: 1px solid #FFC107;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.page-resources-game-strategy__promo-title {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-resources-game-strategy__promo-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-game-strategy__promo-button:hover {
  background-color: #e5ac07;
  transform: translateY(-2px);
}

.page-resources-game-strategy__article-content {
  flex: 1;
  max-width: 800px; /* Optimal reading width */
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-game-strategy__article-content h2 {
  font-size: 2em;
  color: #1A237E;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.page-resources-game-strategy__article-content h3 {
  font-size: 1.5em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-strategy__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
}

.page-resources-game-strategy__article-content ul,
.page-resources-game-strategy__article-content ol {
  margin-bottom: 1em;
  padding-left: 25px;
}

.page-resources-game-strategy__article-content li {
  margin-bottom: 0.5em;
}

.page-resources-game-strategy__blockquote {
  background-color: #f0f4f7; /* Light blue-grey */
  border-left: 5px solid #1A237E;
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #444;
}

.page-resources-game-strategy__blockquote p {
  margin: 0;
}

.page-resources-game-strategy__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategy__callout-promo {
  background-color: #e8eaf6; /* Light purple-blue */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-game-strategy__callout-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-resources-game-strategy__callout-promo p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333;
}

.page-resources-game-strategy__back-link {
  display: inline-block;
  margin-top: 40px;
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-game-strategy__back-link:hover {
  color: #FFC107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-game-strategy__hero-title {
    font-size: 2em;
  }

  .page-resources-game-strategy__hero-description {
    font-size: 1em;
  }

  .page-resources-game-strategy__article-content {
    padding: 20px;
  }

  .page-resources-game-strategy__article-content h2 {
    font-size: 1.8em;
  }

  .page-resources-game-strategy__article-content h3 {
    font-size: 1.3em;
  }

  .page-resources-game-strategy__cta-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-resources-game-strategy__cta-button--secondary {
    margin-left: 0;
  }
}