/* style/blog-latest-card-game-strategies.css */
.page-blog-latest-card-game-strategies {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-card-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-latest-card-game-strategies__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, not var(--header-offset) */
  padding-bottom: 40px;
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.page-blog-latest-card-game-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

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

.page-blog-latest-card-game-strategies__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-latest-card-game-strategies__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Primary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-card-game-strategies__subtitle {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-latest-card-game-strategies__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-card-game-strategies__btn-primary,
.page-blog-latest-card-game-strategies__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-latest-card-game-strategies__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-latest-card-game-strategies__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-latest-card-game-strategies__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Primary color border */
}

.page-blog-latest-card-game-strategies__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-blog-latest-card-game-strategies__section-title {
  font-size: 2.2em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-card-game-strategies__text-block {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-card-game-strategies__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-latest-card-game-strategies__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-card-game-strategies__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-card-game-strategies__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-card-game-strategies__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow */
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-blog-latest-card-game-strategies__card-text {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-latest-card-game-strategies__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}