/* style/blog-meo-choi-the-thao-79-king.css */
.page-blog-meo-choi-the-thao-79-king {
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background is handled by shared.css var(--deep-navy-color) */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-meo-choi-the-thao-79-king__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-blog-meo-choi-the-thao-79-king__hero-banner {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: transparent;
}

.page-blog-meo-choi-the-thao-79-king__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-meo-choi-the-thao-79-king__description {
  font-size: 1.1rem;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-meo-choi-the-thao-79-king__content-section {
  padding: 40px 0;
  background-color: transparent;
}

.page-blog-meo-choi-the-thao-79-king__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-blog-meo-choi-the-thao-79-king p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #F3F8FF; /* Text Main */
}

.page-blog-meo-choi-the-thao-79-king strong {
  color: #F2C14E; /* Gold */
}

.page-blog-meo-choi-the-thao-79-king__featured-image,
.page-blog-meo-choi-the-thao-79-king__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-meo-choi-the-thao-79-king__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
}

.page-blog-meo-choi-the-thao-79-king__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-meo-choi-the-thao-79-king__list strong {
  color: #F2C14E; /* Gold */
}

.page-blog-meo-choi-the-thao-79-king a {
  color: #1D5FD1; /* Auxiliary color for links */
  text-decoration: none;
}

.page-blog-meo-choi-the-thao-79-king a:hover {
  text-decoration: underline;
}

.page-blog-meo-choi-the-thao-79-king__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-meo-choi-the-thao-79-king__btn-primary,
.page-blog-meo-choi-the-thao-79-king__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  max-width: 300px; /* Limit individual button width */
  min-width: 200px;
}

.page-blog-meo-choi-the-thao-79-king__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-meo-choi-the-thao-79-king__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-meo-choi-the-thao-79-king__btn-secondary {
  background-color: transparent;
  color: #1D5FD1; /* Auxiliary color */
  border: 2px solid #1D5FD1;
}

.page-blog-meo-choi-the-thao-79-king__btn-secondary:hover {
  background-color: #1D5FD1;
  color: #ffffff;
}

.page-blog-meo-choi-the-thao-79-king__related-articles {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
}

.page-blog-meo-choi-the-thao-79-king__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-meo-choi-the-thao-79-king__article-card {
  background-color: #08162B; /* Deep Navy */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-meo-choi-the-thao-79-king__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-meo-choi-the-thao-79-king__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-meo-choi-the-thao-79-king__article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  padding: 15px 20px 10px;
  margin: 0;
}

.page-blog-meo-choi-the-thao-79-king__article-excerpt {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 20px 20px;
  margin: 0;
  flex-grow: 1;
}

/* --- Responsive Styles --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-blog-meo-choi-the-thao-79-king__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-meo-choi-the-thao-79-king__section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .page-blog-meo-choi-the-thao-79-king__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Mobile (max-width: 768px) - MUST INCLUDE ALL MANDATORY SECTIONS */
@media (max-width: 768px) {
  /* HERO Section */
  .page-blog-meo-choi-the-thao-79-king__hero-banner {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 20px;
  }

  .page-blog-meo-choi-the-thao-79-king__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-meo-choi-the-thao-79-king__description {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  /* Content Section */
  .page-blog-meo-choi-the-thao-79-king__content-section {
    padding: 20px 0;
  }

  .page-blog-meo-choi-the-thao-79-king__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .page-blog-meo-choi-the-thao-79-king p,
  .page-blog-meo-choi-the-thao-79-king__list li {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .page-blog-meo-choi-the-thao-79-king__list {
    margin-left: 35px; /* Adjust for padding + list-style */
    padding-right: 15px;
  }

  /* Universal Image Adaption */
  .page-blog-meo-choi-the-thao-79-king img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
  }

  .page-blog-meo-choi-the-thao-79-king__container,
  .page-blog-meo-choi-the-thao-79-king__content-section > .page-blog-meo-choi-the-thao-79-king__container,
  .page-blog-meo-choi-the-thao-79-king__related-articles > .page-blog-meo-choi-the-thao-79-king__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button & Button Container Adaption */
  .page-blog-meo-choi-the-thao-79-king__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-blog-meo-choi-the-thao-79-king__btn-primary,
  .page-blog-meo-choi-the-thao-79-king__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px; /* Adjust padding for smaller screens */
    font-size: 1rem;
  }

  /* Related Articles Grid Adaption */
  .page-blog-meo-choi-the-thao-79-king__related-articles {
    padding: 30px 0;
  }

  .page-blog-meo-choi-the-thao-79-king__articles-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
    margin-top: 20px;
  }

  .page-blog-meo-choi-the-thao-79-king__article-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-blog-meo-choi-the-thao-79-king__article-title,
  .page-blog-meo-choi-the-thao-79-king__article-excerpt {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure no small icons rule is met - all images >= 200px */
  /* This page does not use icon-box-media or game-tabs, so specific rules for those are not needed. */
  /* All content images are already set to be large enough. */
}

/* No module1 three column feature section, no game tabs, no specific FAQ JS needed for this page type. */
/* The page structure does not include a dedicated hero image with hero_main ID. */
/* No gameshow type used. */
/* No strict keyword used. */