/* style/expert-reviews-blog-latest-games.css */
.page-expert-reviews-blog-latest-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-expert-reviews-blog-latest-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-reviews-blog-latest-games__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Adjusted for better contrast with text */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-reviews-blog-latest-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:aw8,abstract,geometric,background]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-expert-reviews-blog-latest-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-expert-reviews-blog-latest-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-expert-reviews-blog-latest-games__content-section {
  padding: 60px 0;
}

.page-expert-reviews-blog-latest-games__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .page-expert-reviews-blog-latest-games__content-grid {
    grid-template-columns: 1fr;
  }
}

.page-expert-reviews-blog-latest-games__main-article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-expert-reviews-blog-latest-games__main-article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #495057;
}

.page-expert-reviews-blog-latest-games__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFC107; /* Accent color for underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-expert-reviews-blog-latest-games__subsection-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary for contrast */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-expert-reviews-blog-latest-games__sub-subsection-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-expert-reviews-blog-latest-games__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-expert-reviews-blog-latest-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-expert-reviews-blog-latest-games__btn--primary {
  background-color: #007BFF; /* Primary brand color */
  color: #fff;
  margin: 0 10px;
}

.page-expert-reviews-blog-latest-games__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.page-expert-reviews-blog-latest-games__btn--secondary {
  background-color: #FFC107; /* Accent brand color */
  color: #333;
  margin: 0 10px;
}

.page-expert-reviews-blog-latest-games__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

.page-expert-reviews-blog-latest-games__btn--full-width {
  width: 100%;
  margin: 15px 0;
}

.page-expert-reviews-blog-latest-games__cta-buttons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-expert-reviews-blog-latest-games__sidebar {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-expert-reviews-blog-latest-games__sidebar-widget {
  margin-bottom: 30px;
}

.page-expert-reviews-blog-latest-games__widget-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 8px;
}

.page-expert-reviews-blog-latest-games__link-list,
.page-expert-reviews-blog-latest-games__post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-expert-reviews-blog-latest-games__link-list li,
.page-expert-reviews-blog-latest-games__post-list li {
  margin-bottom: 10px;
}

.page-expert-reviews-blog-latest-games__link-list a {
  color: #0056b3;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.2s ease;
}

.page-expert-reviews-blog-latest-games__link-list a:hover {
  color: #007BFF;
  text-decoration: underline;
}

.page-expert-reviews-blog-latest-games__post-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.page-expert-reviews-blog-latest-games__post-list a:hover {
  color: #007BFF;
}

.page-expert-reviews-blog-latest-games__post-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-expert-reviews-blog-latest-games__post-title {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
}

.page-expert-reviews-blog-latest-games__cta-card {
  background-color: #e3f2fd; /* Light blue background for CTA */
  border: 1px solid #bbdefb;
  padding: 25px;
  text-align: center;
}

.page-expert-reviews-blog-latest-games__cta-card .page-expert-reviews-blog-latest-games__widget-title {
  color: #007BFF;
  border-bottom: none;
  margin-bottom: 15px;
}

.page-expert-reviews-blog-latest-games__cta-card p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-expert-reviews-blog-latest-games__faq {
  margin-top: 30px;
}

.page-expert-reviews-blog-latest-games__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #d0e8ff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-expert-reviews-blog-latest-games__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-expert-reviews-blog-latest-games__faq-answer {
  color: #495057;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-reviews-blog-latest-games__hero-title {
    font-size: 2.5em;
  }

  .page-expert-reviews-blog-latest-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-expert-reviews-blog-latest-games__section-title {
    font-size: 2em;
  }

  .page-expert-reviews-blog-latest-games__subsection-title {
    font-size: 1.5em;
  }

  .page-expert-reviews-blog-latest-games__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
  }

  .page-expert-reviews-blog-latest-games__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}