.page-blog-kinh-nghiem-thang-lon-tai-nohu52 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for the page, assuming dark body bg */
    background-color: var(--background-color, #08160F); /* Default body bg, though shared.css handles this */
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, relying on shared.css for body padding-top */
    padding-bottom: 40px;
    background-color: var(--background-color, #08160F);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-image img {
    width: 100%;
    height: 675px; /* Fixed height for desktop to maintain aspect ratio */
    object-fit: cover;
    display: block;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-main, #F2FFF6);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold, #F2C14E);
    line-height: 1.2;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary,
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box; /* Ensure padding doesn't increase total width beyond max-width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary {
    background: transparent;
    color: var(--glow, #57E38D);
    border: 2px solid var(--glow, #57E38D);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary:hover {
    background: var(--glow, #57E38D);
    color: var(--background-color, #08160F);
    transform: translateY(-3px);
}

/* General Content Sections */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__content-section {
    padding: 60px 0;
    border-top: 1px solid var(--divider, #1E3A2A);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__dark-bg {
    background-color: var(--card-b-g, #11271B);
    color: var(--text-main, #F2FFF6);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__dark-bg .page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title {
    color: var(--gold, #F2C14E);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__dark-bg .page-blog-kinh-nghiem-thang-lon-tai-nohu52__subsection-title {
    color: var(--glow, #57E38D);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold, #F2C14E); /* Default for light bg sections */
    position: relative;
    padding-bottom: 15px;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--glow, #57E38D);
    border-radius: 2px;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__subsection-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--glow, #57E38D); /* Default for light bg sections */
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52 p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52 strong {
    color: var(--text-main, #F2FFF6);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__article-figure {
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mistake List */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__mistake-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__mistake-list li {
    background-color: var(--deep-green, #0A4B2C);
    border-left: 5px solid var(--gold, #F2C14E);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05rem;
    color: var(--text-main, #F2FFF6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kinh-nghiem-thang-lon-tai-nohu52__mistake-list li strong {
    color: var(--gold, #F2C14E);
}

/* FAQ Section */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-list {
    margin-top: 40px;
}

details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border, #2E7A4E);
  overflow: hidden;
  background: var(--card-b-g, #11271B);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item summary.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main, #F2FFF6);
  font-weight: 600;
}
details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item summary.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item summary.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-question:hover {
  background: var(--deep-green, #0A4B2C);
}
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main, #F2FFF6);
}
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--glow, #57E38D);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item .page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-green, #0A4B2C);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-answer p {
    margin-bottom: 0;
}

/* Bottom CTA buttons */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
}
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary,
.page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary {
    width: 100%;
    max-width: 350px; /* Limit width for larger screens */
    margin: 0 auto;
}

/* Global image settings for content area */
.page-blog-kinh-nghiem-thang-lon-tai-nohu52 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */

/* Desktop to Tablet (max-width: 1024px) - General adjustments */
@media (max-width: 1024px) {
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-image img {
        height: 500px; /* Adjust hero image height */
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-description {
        font-size: 1.1rem;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__subsection-title {
        font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__container {
        padding: 20px 30px;
    }
}


/* Tablet to Mobile (max-width: 768px) - Strict requirements */
@media (max-width: 768px) {
    /* General page content adjustments */
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52 p,
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52 li,
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-answer p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO 主图区域 */
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-image img {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        height: auto !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* 按钮与按钮容器 */
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary,
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: 1rem;
        padding: 12px 20px;
        min-width: unset;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-primary,
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__cta-buttons--bottom .page-blog-kinh-nghiem-thang-lon-tai-nohu52__btn-secondary {
        max-width: 100% !important;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
        text-align: center;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__subsection-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__article-figure {
        max-width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__content-section {
        padding: 40px 0;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__mistake-list li {
        padding: 12px 15px;
        font-size: 1rem;
    }

    /* 通用图片与容器 */
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__hero-content,
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__content-section .page-blog-kinh-nghiem-thang-lon-tai-nohu52__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* FAQ Section */
    details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item summary.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-question {
        padding: 15px !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-qtext {
        font-size: 15px !important;
    }
    details.page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-item .page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-answer {
        padding: 0 15px 15px !important;
    }
    .page-blog-kinh-nghiem-thang-lon-tai-nohu52__faq-toggle {
        font-size: 20px !important;
        width: 24px !important;
        height: 24px !important;
        margin-left: 10px !important;
    }
}