/* style/blog-choosing-best-cockfighting-platform.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-choosing-best-cockfighting-platform {
  background-color: #000; /* Inherited from body, but explicitly set for context */
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-choosing-best-cockfighting-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-choosing-best-cockfighting-platform__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-choosing-best-cockfighting-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-choosing-best-cockfighting-platform__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff; /* Ensure text is white on hero */
}

.page-blog-choosing-best-cockfighting-platform__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for main title */
}

.page-blog-choosing-best-cockfighting-platform__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Call to Action Button - Primary */
.page-blog-choosing-best-cockfighting-platform__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-blog-choosing-best-cockfighting-platform__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-choosing-best-cockfighting-platform__btn-primary:hover {
  background-color: #1e87b6;
  transform: translateY(-2px);
}

/* Call to Action Button - Secondary */
.page-blog-choosing-best-cockfighting-platform__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Primary brand color for text */
  border: 2px solid #26A9E0;
}

.page-blog-choosing-best-cockfighting-platform__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-blog-choosing-best-cockfighting-platform__center-button {
  margin: 20px auto;
  display: block;
  max-width: fit-content;
}

/* Main Content Area */
.page-blog-choosing-best-cockfighting-platform__content-area {
  background-color: #ffffff; /* White background for main content for readability */
  color: #333333; /* Dark text on white background */
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-blog-choosing-best-cockfighting-platform__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-choosing-best-cockfighting-platform__article {
  padding: 20px 0;
}

.page-blog-choosing-best-cockfighting-platform__meta {
  font-size: 0.9em;
  color: #666666;
  text-align: right;
  margin-bottom: 20px;
}

.page-blog-choosing-best-cockfighting-platform__heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0; /* Brand color for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-choosing-best-cockfighting-platform__text-block {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-blog-choosing-best-cockfighting-platform__highlight {
  font-weight: bold;
  color: #26A9E0; /* Highlight important keywords with brand color */
}

.page-blog-choosing-best-cockfighting-platform__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-choosing-best-cockfighting-platform__link:hover {
  color: #1e87b6;
}

/* Images within content */
.page-blog-choosing-best-cockfighting-platform__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* Lists */
.page-blog-choosing-best-cockfighting-platform__list,
.page-blog-choosing-best-cockfighting-platform__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-choosing-best-cockfighting-platform__ordered-list {
  list-style-type: decimal;
}

.page-blog-choosing-best-cockfighting-platform__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Card Grid */
.page-blog-choosing-best-cockfighting-platform__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-choosing-best-cockfighting-platform__card {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-blog-choosing-best-cockfighting-platform__card:hover {
  transform: translateY(-5px);
}

.page-blog-choosing-best-cockfighting-platform__card-title {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-choosing-best-cockfighting-platform__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-choosing-best-cockfighting-platform__card-title a:hover {
  text-decoration: underline;
}

.page-blog-choosing-best-cockfighting-platform__card-description {
  font-size: 0.95em;
  color: #555555;
}

/* FAQ Section */
.page-blog-choosing-best-cockfighting-platform__faq-section {
  margin-top: 40px;
}

.page-blog-choosing-best-cockfighting-platform__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-choosing-best-cockfighting-platform__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #333333;
  font-size: 1.1em;
  background-color: #eaf6fc; /* Lighter background for summary */
  transition: background-color 0.3s ease;
}

.page-blog-choosing-best-cockfighting-platform__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-choosing-best-cockfighting-platform__faq-item summary:hover {
  background-color: #dbeff9;
}

.page-blog-choosing-best-cockfighting-platform__faq-qtext {
  flex-grow: 1;
  color: #26A9E0; /* Brand color for FAQ questions */
}

.page-blog-choosing-best-cockfighting-platform__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-choosing-best-cockfighting-platform__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-choosing-best-cockfighting-platform__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-choosing-best-cockfighting-platform__hero-content {
    padding: 0 15px;
  }

  .page-blog-choosing-best-cockfighting-platform__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-choosing-best-cockfighting-platform__description {
    font-size: 1em;
  }

  .page-blog-choosing-best-cockfighting-platform__content-area {
    padding: 20px 15px;
  }

  .page-blog-choosing-best-cockfighting-platform__heading {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-choosing-best-cockfighting-platform__card-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-choosing-best-cockfighting-platform__cta-button,
  .page-blog-choosing-best-cockfighting-platform__btn-primary,
  .page-blog-choosing-best-cockfighting-platform__btn-secondary,
  .page-blog-choosing-best-cockfighting-platform a[class*="button"],
  .page-blog-choosing-best-cockfighting-platform a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center; /* Center button text on mobile */
  }

  .page-blog-choosing-best-cockfighting-platform__center-button {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Ensure images are fully responsive */
  .page-blog-choosing-best-cockfighting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset; /* Override min-width for mobile */
    min-height: unset; /* Override min-height for mobile */
  }
  
  .page-blog-choosing-best-cockfighting-platform__section,
  .page-blog-choosing-best-cockfighting-platform__card,
  .page-blog-choosing-best-cockfighting-platform__container,
  .page-blog-choosing-best-cockfighting-platform__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-choosing-best-cockfighting-platform__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-choosing-best-cockfighting-platform__faq-answer {
    padding: 10px 20px 15px;
  }
}