/* style/blog-responsible-gambling-tips-with-phdream.css */

/* Variables for colors */
:root {
  --phdream-primary: #F2C14E;
  --phdream-secondary: #FFD36B;
  --phdream-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --phdream-card-bg: #111111;
  --phdream-background: #0A0A0A; /* This is body background, main content will adapt */
  --phdream-text-main: #FFF6D6;
  --phdream-border: #3A2A12;
  --phdream-glow: #FFD36B;
}

.page-blog-responsible-gambling-tips-with-phdream {
  font-family: Arial, sans-serif;
  color: var(--phdream-text-main); /* Light text for dark body background */
  line-height: 1.6;
  background-color: var(--phdream-background); /* Ensure consistent background, though body is set by shared */
  /* padding-top is handled by shared.css on body, no need here */
}

.page-blog-responsible-gambling-tips-with-phdream__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for the first section, overriding general top/bottom padding */
  text-align: center;
  background-color: var(--phdream-card-bg);
  border-bottom: 1px solid var(--phdream-border);
}

.page-blog-responsible-gambling-tips-with-phdream__hero-image {
  margin-bottom: 20px;
}

.page-blog-responsible-gambling-tips-with-phdream__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-responsible-gambling-tips-with-phdream__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Clamp for H1, not excessively large */
  color: var(--phdream-primary);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-responsible-gambling-tips-with-phdream__intro-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--phdream-text-main);
}

.page-blog-responsible-gambling-tips-with-phdream__cta-button {
  display: inline-block;
  background: var(--phdream-button-gradient);
  color: #000; /* Black text on gold button for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-responsible-gambling-tips-with-phdream__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-responsible-gambling-tips-with-phdream__content-area {
  max-width: 900px; /* Adjusted for better readability of long text */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-responsible-gambling-tips-with-phdream__article-wrapper {
  background-color: var(--phdream-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-responsible-gambling-tips-with-phdream__section-title {
  font-size: 2rem;
  color: var(--phdream-primary);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid var(--phdream-border);
  padding-bottom: 10px;
}

.page-blog-responsible-gambling-tips-with-phdream__sub-section-title {
  font-size: 1.5rem;
  color: var(--phdream-secondary);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-blog-responsible-gambling-tips-with-phdream__article-wrapper p {
  margin-bottom: 15px;
  color: var(--phdream-text-main);
}

.page-blog-responsible-gambling-tips-with-phdream__card-grid,
.page-blog-responsible-gambling-tips-with-phdream__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-responsible-gambling-tips-with-phdream__card,
.page-blog-responsible-gambling-tips-with-phdream__feature-card {
  background-color: var(--phdream-background); /* Darker background for cards */
  border: 1px solid var(--phdream-border);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.page-blog-responsible-gambling-tips-with-phdream__card:hover,
.page-blog-responsible-gambling-tips-with-phdream__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-responsible-gambling-tips-with-phdream__card img,
.page-blog-responsible-gambling-tips-with-phdream__feature-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-responsible-gambling-tips-with-phdream__card-title,
.page-blog-responsible-gambling-tips-with-phdream__feature-title {
  font-size: 1.3rem;
  color: var(--phdream-secondary);
  margin-bottom: 10px;
}

.page-blog-responsible-gambling-tips-with-phdream__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--phdream-text-main);
}

.page-blog-responsible-gambling-tips-with-phdream__list li {
  margin-bottom: 10px;
}

.page-blog-responsible-gambling-tips-with-phdream__feature-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--phdream-primary);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-responsible-gambling-tips-with-phdream__feature-link:hover {
  text-decoration: underline;
}

.page-blog-responsible-gambling-tips-with-phdream__cta-section {
  background-color: var(--phdream-background);
  border: 1px solid var(--phdream-border);
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-responsible-gambling-tips-with-phdream__cta-title {
  font-size: 2rem;
  color: var(--phdream-primary);
  margin-bottom: 15px;
}

.page-blog-responsible-gambling-tips-with-phdream__cta-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: var(--phdream-text-main);
}

.page-blog-responsible-gambling-tips-with-phdream__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-responsible-gambling-tips-with-phdream__cta-button--secondary {
  background: var(--phdream-background);
  color: var(--phdream-primary);
  border: 2px solid var(--phdream-primary);
  box-shadow: none;
}

.page-blog-responsible-gambling-tips-with-phdream__cta-button--secondary:hover {
  background-color: var(--phdream-primary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-responsible-gambling-tips-with-phdream__related-articles {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--phdream-card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-responsible-gambling-tips-with-phdream__aside-title {
  font-size: 1.8rem;
  color: var(--phdream-primary);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--phdream-border);
  padding-bottom: 10px;
}

.page-blog-responsible-gambling-tips-with-phdream__article-list {
  list-style-type: none;
  padding: 0;
}

.page-blog-responsible-gambling-tips-with-phdream__article-list li {
  margin-bottom: 10px;
}

.page-blog-responsible-gambling-tips-with-phdream__article-list li a {
  color: var(--phdream-text-main);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out;
}

.page-blog-responsible-gambling-tips-with-phdream__article-list li a:hover {
  color: var(--phdream-secondary);
  text-decoration: underline;
}

.page-blog-responsible-gambling-tips-with-phdream__back-to-blog {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-blog-responsible-gambling-tips-with-phdream__back-button {
  display: inline-block;
  background-color: var(--phdream-background);
  color: var(--phdream-text-main);
  border: 1px solid var(--phdream-border);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.page-blog-responsible-gambling-tips-with-phdream__back-button:hover {
  background-color: var(--phdream-primary);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-responsible-gambling-tips-with-phdream__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-blog-responsible-gambling-tips-with-phdream__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-blog-responsible-gambling-tips-with-phdream__intro-text {
    font-size: 1rem;
  }

  .page-blog-responsible-gambling-tips-with-phdream__cta-button {
    padding: 10px 20px;
  }

  .page-blog-responsible-gambling-tips-with-phdream__content-area {
    padding: 20px 15px;
  }

  .page-blog-responsible-gambling-tips-with-phdream__section-title {
    font-size: 1.7rem;
  }

  .page-blog-responsible-gambling-tips-with-phdream__sub-section-title {
    font-size: 1.3rem;
  }

  .page-blog-responsible-gambling-tips-with-phdream__card-grid,
  .page-blog-responsible-gambling-tips-with-phdream__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-responsible-gambling-tips-with-phdream__card img,
  .page-blog-responsible-gambling-tips-with-phdream__feature-card img {
    min-width: 200px; /* Enforce min-width for content images */
    width: 100%; /* Ensure images scale down */
    height: auto;
  }

  /* Mobile content image constraint for max-width */
  .page-blog-responsible-gambling-tips-with-phdream img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-responsible-gambling-tips-with-phdream__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }

  .page-blog-responsible-gambling-tips-with-phdream__button-group {
    flex-direction: column;
    gap: 15px;
  }
}