/* style/expert-insights-new-game-review.css */
.page-expert-insights-new-game-review {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-expert-insights-new-game-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-expert-insights-new-game-review__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Darker blue to lighter blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-insights-new-game-review__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,subtle_dark]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-expert-insights-new-game-review__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-insights-new-game-review__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-expert-insights-new-game-review__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-expert-insights-new-game-review__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-expert-insights-new-game-review__content-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-expert-insights-new-game-review__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-insights-new-game-review__heading {
  font-size: 2em;
  color: #0A2463; /* Dark blue for headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-expert-insights-new-game-review__subheading {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-expert-insights-new-game-review__article p {
  margin-bottom: 15px;
  color: #444;
}

.page-expert-insights-new-game-review__article a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-expert-insights-new-game-review__article a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-expert-insights-new-game-review__list,
.page-expert-insights-new-game-review__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-expert-insights-new-game-review__ordered-list {
  list-style-type: decimal;
}

.page-expert-insights-new-game-review__list li,
.page-expert-insights-new-game-review__ordered-list li {
  margin-bottom: 10px;
}

.page-expert-insights-new-game-review__game-review-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-expert-insights-new-game-review__game-review-card:hover {
  transform: translateY(-5px);
}

.page-expert-insights-new-game-review__game-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-expert-insights-new-game-review__game-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-expert-insights-new-game-review__game-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-expert-insights-new-game-review__game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-insights-new-game-review__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.page-expert-insights-new-game-review__cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-expert-insights-new-game-review__cta-button--primary {
  background-color: #0A2463;
  color: #fff;
}

.page-expert-insights-new-game-review__cta-button--primary:hover {
  background-color: #1A3E7C;
}

.page-expert-insights-new-game-review__cta-button--secondary {
  background-color: #FFD700;
  color: #0A2463;
  border: 1px solid #FFD700;
}

.page-expert-insights-new-game-review__cta-button--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

  .page-expert-insights-new-game-review__hero-subtitle {
    font-size: 1em;
  }

  .page-expert-insights-new-game-review__heading {
    font-size: 1.6em;
  }

  .page-expert-insights-new-game-review__subheading {
    font-size: 1.3em;
  }

  .page-expert-insights-new-game-review__article {
    padding: 20px;
  }

  .page-expert-insights-new-game-review__game-review-card {
    padding: 20px;
  }

  .page-expert-insights-new-game-review__cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .page-expert-insights-new-game-review__cta-button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-expert-insights-new-game-review__hero-title {
    font-size: 1.8em;
  }

  .page-expert-insights-new-game-review__heading {
    font-size: 1.4em;
  }

  .page-expert-insights-new-game-review__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}