/* style/resources-kingph-casino-game-strategy-guide.css */
.page-resources-kingph-casino-game-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-kingph-casino-game-strategy-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-resources-kingph-casino-game-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Overlay to ensure text readability */
}

.page-resources-kingph-casino-game-strategy-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-kingph-casino-game-strategy-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-kingph-casino-game-strategy-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-kingph-casino-game-strategy-guide__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-kingph-casino-game-strategy-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  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-kingph-casino-game-strategy-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-kingph-casino-game-strategy-guide__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-resources-kingph-casino-game-strategy-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-kingph-casino-game-strategy-guide__back-link:hover {
  color: #FFD700;
}

.page-resources-kingph-casino-game-strategy-guide__section-title {
  font-size: 2.2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-kingph-casino-game-strategy-guide__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-resources-kingph-casino-game-strategy-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-kingph-casino-game-strategy-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-kingph-casino-game-strategy-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
  object-fit: cover;
}

.page-resources-kingph-casino-game-strategy-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-kingph-casino-game-strategy-guide__list li {
  margin-bottom: 10px;
}

.page-resources-kingph-casino-game-strategy-guide__blockquote {
  background-color: #f0f8ff;
  border-left: 5px solid #003366;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
  border-radius: 5px;
}

.page-resources-kingph-casino-game-strategy-guide__link-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-kingph-casino-game-strategy-guide__link-button:hover {
  background-color: #004488;
}

.page-resources-kingph-casino-game-strategy-guide__cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: center;
}

.page-resources-kingph-casino-game-strategy-guide__cta-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-kingph-casino-game-strategy-guide__cta-card:hover {
  transform: translateY(-5px);
}

.page-resources-kingph-casino-game-strategy-guide__cta-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-resources-kingph-casino-game-strategy-guide__cta-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
}

.page-resources-kingph-casino-game-strategy-guide__related-articles {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.page-resources-kingph-casino-game-strategy-guide__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-kingph-casino-game-strategy-guide__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-resources-kingph-casino-game-strategy-guide__article-card:hover {
  transform: translateY(-8px);
}

.page-resources-kingph-casino-game-strategy-guide__article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

.page-resources-kingph-casino-game-strategy-guide__article-title {
  font-size: 1.4em;
  color: #003366;
  margin: 15px 20px 10px;
}

.page-resources-kingph-casino-game-strategy-guide__article-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-resources-kingph-casino-game-strategy-guide__article-title a:hover {
  color: #FFD700;
}

.page-resources-kingph-casino-game-strategy-guide__article-excerpt {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-kingph-casino-game-strategy-guide__hero-section {
    padding: 60px 15px;
  }

  .page-resources-kingph-casino-game-strategy-guide__main-title {
    font-size: 2.5em;
  }

  .page-resources-kingph-casino-game-strategy-guide__intro-text {
    font-size: 1.1em;
  }

  .page-resources-kingph-casino-game-strategy-guide__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  .page-resources-kingph-casino-game-strategy-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-kingph-casino-game-strategy-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-kingph-casino-game-strategy-guide__paragraph,
  .page-resources-kingph-casino-game-strategy-guide__list {
    font-size: 1em;
  }

  .page-resources-kingph-casino-game-strategy-guide__image-wrapper img,
  .page-resources-kingph-casino-game-strategy-guide__article-card img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-kingph-casino-game-strategy-guide__cta-grid,
  .page-resources-kingph-casino-game-strategy-guide__articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-kingph-casino-game-strategy-guide__main-title {
    font-size: 2em;
  }

  .page-resources-kingph-casino-game-strategy-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}