/* style/resources-13win12-game-strategy.css */
.page-resources-13win12-game-strategy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-resources-13win12-game-strategy h1,
.page-resources-13win12-game-strategy h2,
.page-resources-13win12-game-strategy h3 {
  color: #007bff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-resources-13win12-game-strategy h1 {
  font-size: 2.8rem;
  text-align: center;
}

.page-resources-13win12-game-strategy h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.page-resources-13win12-game-strategy h3 {
  font-size: 1.8rem;
  color: #0056b3; /* Darker shade of primary for good contrast */
}

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

.page-resources-13win12-game-strategy__hero {
  background: linear-gradient(135deg, #007bff 0%, #4da3ff 100%); /* Lighter variant for gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.page-resources-13win12-game-strategy__hero-content {
  max-width: 700px;
  flex: 1 1 50%;
  padding: 20px;
}

.page-resources-13win12-game-strategy__hero-content h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-resources-13win12-game-strategy__hero-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.page-resources-13win12-game-strategy__hero-image {
  flex: 1 1 40%;
  max-width: 500px;
}

.page-resources-13win12-game-strategy__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-13win12-game-strategy__cta-group {
  margin-top: 2rem;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-13win12-game-strategy__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-13win12-game-strategy__btn--primary {
  background-color: #ffc107;
  color: #333; /* Dark text for auxiliary color background */
  border-color: #ffc107;
}

.page-resources-13win12-game-strategy__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-resources-13win12-game-strategy__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-resources-13win12-game-strategy__btn--secondary:hover {
  background-color: #fff;
  color: #007bff;
}

.page-resources-13win12-game-strategy__section {
  padding: 60px 0;
}

.page-resources-13win12-game-strategy__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-resources-13win12-game-strategy__section--why-strategy img,
.page-resources-13win12-game-strategy__section--basic-principles img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-13win12-game-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.page-resources-13win12-game-strategy__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-resources-13win12-game-strategy__grid-item:hover {
  transform: translateY(-5px);
}

.page-resources-13win12-game-strategy__grid-item h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.page-resources-13win12-game-strategy__game-strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.page-resources-13win12-game-strategy__game-strategy-item h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-13win12-game-strategy__game-strategy-item ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-13win12-game-strategy__game-strategy-item li {
  margin-bottom: 8px;
}

.page-resources-13win12-game-strategy__game-strategy-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-13win12-game-strategy__cta-content {
  text-align: center;
}

.page-resources-13win12-game-strategy__grid-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.page-resources-13win12-game-strategy__cta-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.page-resources-13win12-game-strategy__cta-card h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-13win12-game-strategy__cta-card p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-13win12-game-strategy__btn--block {
  width: 100%;
  max-width: 250px;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-13win12-game-strategy__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-resources-13win12-game-strategy__feature-list li {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  color: #333;
}

.page-resources-13win12-game-strategy__feature-list li img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-resources-13win12-game-strategy__final-cta {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-13win12-game-strategy__final-cta p {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.page-resources-13win12-game-strategy__btn--large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.page-resources-13win12-game-strategy__link-in-text {
  color: #ffc107; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-13win12-game-strategy__link-in-text:hover {
  text-decoration: underline;
  color: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-13win12-game-strategy__hero {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-resources-13win12-game-strategy__hero-content h1 {
    font-size: 2.8rem;
  }
  .page-resources-13win12-game-strategy__hero-image {
    flex: 1 1 100%;
    max-width: 600px;
    margin-top: 30px;
  }
  .page-resources-13win12-game-strategy h1 {
    font-size: 2.2rem;
  }
  .page-resources-13win12-game-strategy h2 {
    font-size: 1.8rem;
  }
  .page-resources-13win12-game-strategy h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-resources-13win12-game-strategy__hero-content h1 {
    font-size: 2.2rem;
  }
  .page-resources-13win12-game-strategy__hero-content p {
    font-size: 1rem;
  }
  .page-resources-13win12-game-strategy__cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-resources-13win12-game-strategy__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-resources-13win12-game-strategy__grid,
  .page-resources-13win12-game-strategy__grid-cta {
    grid-template-columns: 1fr;
  }
  .page-resources-13win12-game-strategy__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-13win12-game-strategy__hero-content h1 {
    font-size: 1.8rem;
  }
  .page-resources-13win12-game-strategy h1 {
    font-size: 1.8rem;
  }
  .page-resources-13win12-game-strategy h2 {
    font-size: 1.5rem;
  }
  .page-resources-13win12-game-strategy h3 {
    font-size: 1.3rem;
  }
  .page-resources-13win12-game-strategy__btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  .page-resources-13win12-game-strategy__final-cta p {
    font-size: 1.2rem;
  }
  .page-resources-13win12-game-strategy__btn--large {
    font-size: 1rem;
    padding: 12px 30px;
  }
}