/* style/blog-chien-thuat-tang-ty-le-thang-no-hu.css */

:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --card-bg-color: #D32F2F;
  --background-color: #B71C1C;
  --text-main-color: #FFF5E1;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red-color: #7A0E0E;
  --text-dark-contrast: #333333; /* For light backgrounds */
  --text-light-contrast: #ffffff; /* For dark backgrounds */
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu {
  color: var(--text-dark-contrast); /* Default for assumed light body background */
  background-color: var(--background-color); /* This will be overridden by shared.css body background, but here for context */
}

/* Adjust main content text color based on body background. Assuming body background is dark. */
.page-blog-chien-thuat-tang-ty-le-thang-no-hu .page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area {
  background-color: var(--text-light-contrast); /* Use white background for content area */
  color: var(--text-dark-contrast); /* Dark text on white background */
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__dark-bg {
  background-color: var(--card-bg-color); /* Dark red background */
  color: var(--text-light-contrast); /* White text on dark red */
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu h1,
.page-blog-chien-thuat-tang-ty-le-thang-no-hu h2,
.page-blog-chien-thuat-tang-ty-le-thang-no-hu h3,
.page-blog-chien-thuat-tang-ty-le-thang-no-hu h4 {
  color: var(--text-dark-contrast);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__dark-bg h2,
.page-blog-chien-thuat-tang-ty-le-thang-no-hu__dark-bg h3 {
  color: var(--text-light-contrast);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__highlight {
  color: var(--deep-red-color);
  font-weight: bold;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__dark-bg .page-blog-chien-thuat-tang-ty-le-thang-no-hu__highlight {
  color: var(--gold-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-section {
  padding-top: 10px; /* Specific top padding for non-homepage hero */
  padding-bottom: 60px;
  background-color: var(--background-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Image above text */
  gap: 40px;
  padding: 0 16px;
  align-items: center;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-image {
  order: 1; /* Image first in DOM order */
  flex-shrink: 0;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-illustration {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-content {
  order: 2; /* Content second in DOM order */
  flex-grow: 1;
  text-align: center;
  color: var(--text-light-contrast);
  padding: 20px 0;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-light-contrast);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-primary,
.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-primary {
  background: var(--button-gradient);
  color: var(--deep-red-color); /* Dark text on gold gradient */
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-secondary {
  background-color: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--deep-red-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-dark-contrast);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-dark-contrast);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Feature Grid for Factors */
.page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-item {
  text-align: center;
  background-color: var(--card-bg-color);
  color: var(--text-light-contrast);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold-color);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__icon-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light-contrast);
  margin-bottom: 15px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main-color);
}

/* FAQ Section */
.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light-contrast);
  background-color: var(--deep-red-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-item[open] .page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-question {
  background-color: var(--primary-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-item[open] .page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--card-bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-answer p {
  color: var(--text-main-color);
  margin-bottom: 0;
}

/* Related Articles Section */
.page-blog-chien-thuat-tang-ty-le-thang-no-hu__related-articles {
  padding: 80px 16px;
  text-align: center;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-content {
  padding: 25px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-title a {
  color: var(--text-light-contrast);
  text-decoration: none;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-title a:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-meta {
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.7);
  margin-bottom: 15px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-description {
  font-size: 1rem;
  color: var(--text-main-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--gold-color);
  color: var(--deep-red-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-chien-thuat-tang-ty-le-thang-no-hu__read-more:hover {
  background-color: var(--glow-color);
  transform: translateY(-2px);
}

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

/* Mobile specific styles (max-width: 768px) */
@media (max-width: 768px) {
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-section {
    padding-top: 10px !important; /* Fixed small top padding */
    padding-bottom: 40px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust H1 for mobile */
    margin-bottom: 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-primary,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__btn-secondary,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu a[class*="button"],
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu 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: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area {
    padding: 40px 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area p,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-area li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__content-image,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__hero-illustration,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-img,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important; /* Ensure images fit within padding */
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__feature-title {
    font-size: 1.2rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__related-articles {
    padding: 50px 15px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-img {
    
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-title {
    font-size: 1.15rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__article-description {
    font-size: 0.95rem;
  }

  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__read-more {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  /* General container adaptation for mobile */
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__section,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__card,
  .page-blog-chien-thuat-tang-ty-le-thang-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}