/* style/resources-68wim-game-strategies.css */
.page-resources-68wim-game-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for general text on light backgrounds */
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-resources-68wim-game-strategies__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-68wim-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-68wim-game-strategies__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Call to Action Button */
.page-resources-68wim-game-strategies__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for buttons */
  color: #003366; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-68wim-game-strategies__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-68wim-game-strategies__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

/* General Section Styling */
.page-resources-68wim-game-strategies__introduction,
.page-resources-68wim-game-strategies__game-strategies,
.page-resources-68wim-game-strategies__management,
.page-resources-68wim-game-strategies__cta-section,
.page-resources-68wim-game-strategies__support,
.page-resources-68wim-game-strategies__conclusion {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-68wim-game-strategies__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-68wim-game-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color for title underline */
  border-radius: 2px;
}

.page-resources-68wim-game-strategies__game-article {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-68wim-game-strategies__game-article:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text layout */
}

.page-resources-68wim-game-strategies__game-article h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
  width: 100%;
}

.page-resources-68wim-game-strategies__game-article p {
  margin-bottom: 15px;
  color: #555555;
}

.page-resources-68wim-game-strategies__game-article ul,
.page-resources-68wim-game-strategies__game-article ol {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555555;
}

.page-resources-68wim-game-strategies__game-article ul li,
.page-resources-68wim-game-strategies__game-article ol li {
  margin-bottom: 8px;
}

.page-resources-68wim-game-strategies__game-article h4 {
  font-size: 1.4em;
  color: #004d99; /* Slightly lighter blue for sub-subtitles */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-68wim-game-strategies__image-left,
.page-resources-68wim-game-strategies__image-right {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-68wim-game-strategies__image-left {
  margin-right: 5%;
}

.page-resources-68wim-game-strategies__image-right {
  margin-left: 5%;
}

.page-resources-68wim-game-strategies__game-article > *:not(h3):not(img) {
  width: 55%;
}

.page-resources-68wim-game-strategies__image-full {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-68wim-game-strategies__management ul,
.page-resources-68wim-game-strategies__support ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-resources-68wim-game-strategies__management ul li,
.page-resources-68wim-game-strategies__support ul li {
  margin-bottom: 10px;
}

.page-resources-68wim-game-strategies__steps {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #555555;
  font-size: 1.1em;
}

.page-resources-68wim-game-strategies__steps li {
  margin-bottom: 15px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-68wim-game-strategies__hero-title {
    font-size: 2.8em;
  }
  .page-resources-68wim-game-strategies__hero-subtitle {
    font-size: 1.3em;
  }
  .page-resources-68wim-game-strategies__section-title {
    font-size: 2em;
  }
  .page-resources-68wim-game-strategies__game-article {
    flex-direction: column !important;
    align-items: center;
    padding: 20px;
  }
  .page-resources-68wim-game-strategies__image-left,
  .page-resources-68wim-game-strategies__image-right {
    width: 80%;
    margin: 20px 0 !important;
  }
  .page-resources-68wim-game-strategies__game-article > *:not(h3):not(img) {
    width: 100%;
  }
  .page-resources-68wim-game-strategies__game-article h3 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-resources-68wim-game-strategies__hero-section {
    padding: 80px 0;
  }
  .page-resources-68wim-game-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-resources-68wim-game-strategies__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-68wim-game-strategies__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-resources-68wim-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-resources-68wim-game-strategies__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-68wim-game-strategies__hero-section {
    padding: 60px 0;
  }
  .page-resources-68wim-game-strategies__hero-title {
    font-size: 1.8em;
  }
  .page-resources-68wim-game-strategies__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-68wim-game-strategies__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-resources-68wim-game-strategies__section-title {
    font-size: 1.5em;
  }
  .page-resources-68wim-game-strategies__game-article h3 {
    font-size: 1.5em;
  }
  .page-resources-68wim-game-strategies__image-left,
  .page-resources-68wim-game-strategies__image-right {
    width: 95%;
  }
  .page-resources-68wim-game-strategies__cta-button--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}