/* style/blog-popular-game-strategies.css */

/* Base styles for the page content */
.page-blog-popular-game-strategies {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  line-height: 1.6;
  background-color: #0D0E12; /* Background */
}

/* Section padding and container for content */
.page-blog-popular-game-strategies__section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.page-blog-popular-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-popular-game-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0D0E12; /* Match overall background */
  overflow: hidden;
}

.page-blog-popular-game-strategies__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-popular-game-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-popular-game-strategies__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-popular-game-strategies__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFB04D; /* Glow color for main title */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.6);
}

.page-blog-popular-game-strategies__hero-description {
  font-size: 1.2rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

/* General Titles */
.page-blog-popular-game-strategies__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFB04D; /* Glow color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.4);
}

.page-blog-popular-game-strategies__card-title,
.page-blog-popular-game-strategies__item-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #FFA53A; /* Auxiliary color for card/item titles */
  margin-bottom: 15px;
  font-weight: 600;
}