/* style/resources-latest-game-guide.css */
.page-resources-latest-game-guide {
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-latest-game-guide__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-resources-latest-game-guide__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-latest-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 70vh; /* Limit height for aesthetic */
}

.page-resources-latest-game-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-latest-game-guide__hero-title {
  font-size: 3.2em;
  color: #E94560; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-latest-game-guide__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-game-guide__hero-button,
.page-resources-latest-game-guide__cta-button {
  display: inline-block;
  background-color: #E94560; /* Accent color for buttons */
  color: #ffffff;
  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;
  border: none;
  cursor: pointer;
}

.page-resources-latest-game-guide__hero-button:hover,
.page-resources-latest-game-guide__cta-button:hover {
  background-color: #a33043; /* Darker shade on hover */
  transform: translateY(-2px);
}

.page-resources-latest-game-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-latest-game-guide__article-wrapper {
  background-color: #1A1A2E; /* Main color for article background */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-game-guide__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-latest-game-guide__section-title {
  font-size: 2em;
  color: #E94560; /* Accent color for main section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #E94560;
  padding-bottom: 10px;
}

.page-resources-latest-game-guide__sub-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-latest-game-guide__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.page-resources-latest-game-guide__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-resources-latest-game-guide__inline-link {
  color: #E94560; /* Accent color for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-game-guide__inline-link:hover {
  color: #f07d90; /* Lighter shade on hover */
  text-decoration: underline;
}

.page-resources-latest-game-guide__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-resources-latest-game-guide__cta-button--secondary {
  background-color: #5f5f6d; /* Secondary button color */
}

.page-resources-latest-game-guide__cta-button--secondary:hover {
  background-color: #767682;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-resources-latest-game-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-latest-game-guide__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-game-guide {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-resources-latest-game-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-latest-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-game-guide__hero-button,
  .page-resources-latest-game-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-latest-game-guide__article-wrapper {
    padding: 25px;
  }
  .page-resources-latest-game-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-game-guide__sub-title {
    font-size: 1.3em;
  }
  .page-resources-latest-game-guide__paragraph,
  .page-resources-latest-game-guide__intro-paragraph {
    font-size: 0.95em;
  }
  .page-resources-latest-game-guide__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-latest-game-guide__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-game-guide__hero-title {
    font-size: 1.6em;
  }
  .page-resources-latest-game-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-latest-game-guide__article-wrapper {
    padding: 15px;
  }
  .page-resources-latest-game-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-latest-game-guide__hero-content {
    width: 90%;
  }
}

/* Ensure content images are not smaller than 200px and no filters */
.page-resources-latest-game-guide img {
  min-width: 200px;
  min-height: 200px;
  width: auto; /* Allow natural width or max-width: 100% to control */
  height: auto; /* Allow natural height */
  filter: none; /* Ensure no CSS filters are applied to images */
}

/* Override specific image sizes if needed, but ensure they are >= 200px */
.page-resources-latest-game-guide__article-image {
  width: 100%; /* Occupy full content width */
  height: auto;
  max-width: 800px; /* Limit max width to article content width */
}