/* style/blog-choosing-the-best-table-games.css */
.page-blog-choosing-the-best-table-games {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-blog-choosing-the-best-table-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-choosing-the-best-table-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height to prevent overly tall hero */
  overflow: hidden;
}

.page-blog-choosing-the-best-table-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-choosing-the-best-table-games__hero-content {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-choosing-the-best-table-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-blog-choosing-the-best-table-games__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-choosing-the-best-table-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-choosing-the-best-table-games__btn-primary,
.page-blog-choosing-the-best-table-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-choosing-the-best-table-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-blog-choosing-the-best-table-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B02A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-choosing-the-best-table-games__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #F2C14E; /* Main color */
}

.page-blog-choosing-the-best-table-games__btn-secondary:hover {
  background: #222222;
  color: #FFF6D6; /* Text Main */
  border-color: #FFD36B;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

.page-blog-choosing-the-best-table-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-blog-choosing-the-best-table-games__article {
  line-height: 1.7;
}

.page-blog-choosing-the-best-table-games__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E; /* Main color */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-blog-choosing-the-best-table-games__sub-heading {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #FFD36B; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-choosing-the-best-table-games__paragraph {
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-choosing-the-best-table-games__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-choosing-the-best-table-games__list-item {
  margin-bottom: 10px;
}

.page-blog-choosing-the-best-table-games__list-item strong {
  color: #F2C14E;
}

.page-blog-choosing-the-best-table-games__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
  object-fit: cover;
}

.page-blog-choosing-the-best-table-games__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

/* FAQ Section */
.page-blog-choosing-the-best-table-games__faq-section {
  padding: 60px 20px;
  margin-top: 40px;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-blog-choosing-the-best-table-games__faq-section .page-blog-choosing-the-best-table-games__heading {
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-choosing-the-best-table-games__faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-choosing-the-best-table-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #1A1A1A;
  color: #FFF6D6;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-choosing-the-best-table-games__faq-question:hover {
  background-color: #2A2A2A;
}

.page-blog-choosing-the-best-table-games__faq-question h3 {
  margin: 0;
  color: #FFF6D6;
  font-size: 1.1rem;
}

.page-blog-choosing-the-best-table-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

.page-blog-choosing-the-best-table-games__faq-item.active .page-blog-choosing-the-best-table-games__faq-toggle {
  transform: rotate(45deg);
  color: #FFD36B;
}

.page-blog-choosing-the-best-table-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #111111;
  color: #FFF6D6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-blog-choosing-the-best-table-games__faq-item.active .page-blog-choosing-the-best-table-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-blog-choosing-the-best-table-games__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* CTA Banner Section */
.page-blog-choosing-the-best-table-games__cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #F2C14E; /* Main color */
  color: #111111; /* Dark text for contrast */
  text-align: center;
  margin-top: 60px;
  box-sizing: border-box;
}

.page-blog-choosing-the-best-table-games__cta-banner-content {
  max-width: 800px;
  width: 100%;
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__heading {
  color: #111111;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__paragraph {
  color: #111111;
  margin-bottom: 30px;
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__btn-primary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #111111;
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__btn-primary:hover {
  background: #222222;
  color: #FFD36B;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__btn-secondary {
  background: transparent;
  color: #111111;
  border: 2px solid #111111;
}

.page-blog-choosing-the-best-table-games__cta-banner .page-blog-choosing-the-best-table-games__btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #111111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-choosing-the-best-table-games__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-choosing-the-best-table-games__hero-content {
    padding: 30px 20px;
  }
  .page-blog-choosing-the-best-table-games__content-area,
  .page-blog-choosing-the-best-table-games__faq-section,
  .page-blog-choosing-the-best-table-games__cta-banner {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-choosing-the-best-table-games__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-choosing-the-best-table-games__main-title {
    font-size: 2rem;
  }
  .page-blog-choosing-the-best-table-games__description {
    font-size: 1rem;
  }
  .page-blog-choosing-the-best-table-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-choosing-the-best-table-games__btn-primary,
  .page-blog-choosing-the-best-table-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-blog-choosing-the-best-table-games__heading {
    font-size: 1.8rem;
  }
  .page-blog-choosing-the-best-table-games__sub-heading {
    font-size: 1.2rem;
  }
  .page-blog-choosing-the-best-table-games__paragraph,
  .page-blog-choosing-the-best-table-games__list-item {
    font-size: 0.95rem;
  }
  .page-blog-choosing-the-best-table-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset;
    min-height: unset;
  }
  .page-blog-choosing-the-best-table-games__section,
  .page-blog-choosing-the-best-table-games__card,
  .page-blog-choosing-the-best-table-games__container,
  .page-blog-choosing-the-best-table-games__faq-section,
  .page-blog-choosing-the-best-table-games__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-choosing-the-best-table-games__faq-question h3 {
    font-size: 1rem;
  }
  .page-blog-choosing-the-best-table-games__faq-answer p {
    font-size: 0.9rem;
  }
  .page-blog-choosing-the-best-table-games__cta-banner {
    flex-direction: column;
  }
  .page-blog-choosing-the-best-table-games__cta-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-blog-choosing-the-best-table-games__main-title {
    font-size: 1.8rem;
  }
  .page-blog-choosing-the-best-table-games__heading {
    font-size: 1.5rem;
  }
  .page-blog-choosing-the-best-table-games__sub-heading {
    font-size: 1.1rem;
  }
  .page-blog-choosing-the-best-table-games__hero-content {
    padding: 20px 10px;
  }
  .page-blog-choosing-the-best-table-games__content-area,
  .page-blog-choosing-the-best-table-games__faq-section,
  .page-blog-choosing-the-best-table-games__cta-banner {
    padding: 30px 10px;
  }
  .page-blog-choosing-the-best-table-games__faq-question {
    padding: 15px 15px;
  }
  .page-blog-choosing-the-best-table-games__faq-answer {
    padding: 0 15px;
  }
  .page-blog-choosing-the-best-table-games__faq-item.active .page-blog-choosing-the-best-table-games__faq-answer {
    padding: 15px;
  }
}