.page-blog {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF1E8; /* Main text color on dark background */
    background-color: #140C0C; /* Overall page background */
}

.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles header-offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    background-color: #140C0C;
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px;
}

.page-blog__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto 0 auto;
}

.page-blog__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F3C54D; /* Gold color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog__hero-description {
    font-size: 1.15rem;
    color: #FFF1E8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
    min-width: 180px;
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    border: none;
}

.page-blog__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog__btn-secondary {
    background: transparent;
    color: #F3C54D;
    border: 2px solid #F3C54D;
}

.page-blog__btn-secondary:hover {
    background: #F3C54D;
    color: #140C0C;
}

.page-blog__section-title {
    font-size: 2.5rem;
    color: #F3C54D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 40px;
}

.page-blog__latest-posts-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-blog__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog__post-card {
    background-color: #2A1212; /* Card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    color: #FFF1E8; /* Text on card */
    border: 1px solid #6A1E1E; /* Border for card */
}

.page-blog__post-image-wrapper {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-blog__post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px;
}

.page-blog__post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog__post-date {
    font-size: 0.9rem;
    color: rgba(255, 241, 232, 0.7);
    margin-bottom: 10px;
}

.page-blog__post-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.page-blog__post-title a {
    color: #F3C54D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
    color: #FFB04A;
}

.page-blog__post-excerpt {
    font-size: 1rem;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog__read-more-btn {
    display: inline-block;
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.page-blog__read-more-btn:hover {
    background-color: #C61F1F;
}

.page-blog__view-all-posts {
    text-align: center;
    margin-top: 50px;
}

.page-blog__featured-topics-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-blog__topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-blog__topic-card {
    background-color: #2A1212;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #FFF1E8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E;
}

.page-blog__topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__topic-title {
    font-size: 1.5rem;
    color: #F3C54D;
    margin-bottom: 10px;
}

.page-blog__topic-description {
    font-size: 0.95rem;
    color: #FFF1E8;
}

.page-blog__cta-section {
    padding: 80px 0;
    background-color: #140C0C;
}

.page-blog__cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-blog__cta-content {
    flex: 1;
    min-width: 300px;
}

.page-blog__cta-title {
    font-size: 2.8rem;
    color: #F3C54D;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog__cta-description {
    font-size: 1.15rem;
    color: #FFF1E8;
    margin-bottom: 30px;
}

.page-blog__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog__cta-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog__cta-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure minimum image size */
    min-height: 200px;
}

.page-blog__about-us-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-blog__about-content {
    background-color: #2A1212;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E;
}

.page-blog__about-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #FFF1E8;
}

.page-blog__about-content p:last-of-type {
    margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog__section-title {
        font-size: 2rem;
    }
    .page-blog__cta-title {
        font-size: 2.2rem;
    }
    .page-blog__posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-blog__topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 30px;
    }
    .page-blog__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog__hero-content {
        padding: 15px;
        margin-top: 15px;
    }
    .page-blog__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-blog__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* 产品展示图区域 (General grid for posts/topics) */
    .page-blog__posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog__topics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 通用图片与容器 */
    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-blog__container,
    .page-blog__latest-posts-section,
    .page-blog__featured-topics-section,
    .page-blog__cta-section,
    .page-blog__about-us-section,
    .page-blog__post-card,
    .page-blog__topic-card,
    .page-blog__cta-content,
    .page-blog__cta-image-wrapper,
    .page-blog__about-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }
    .page-blog__post-image-wrapper {
        height: auto; /* Allow height to adjust */
    }

    /* 按钮与按钮容器 */
    .page-blog__btn-primary,
    .page-blog__btn-secondary,
    .page-blog a[class*="button"],
    .page-blog 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 !important;
        padding-right: 15px !important;
    }
    .page-blog__hero-actions,
    .page-blog__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex-direction: column !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    /* 其他内容模块 */
    .page-blog__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-blog__cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-blog__cta-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog__cta-section .page-blog__container {
        flex-direction: column;
    }
    .page-blog__cta-image-wrapper {
        order: -1; /* Image above text on mobile */
        margin-bottom: 20px;
    }
    .page-blog__about-content {
        padding: 25px;
    }
    .page-blog__about-content p {
        font-size: 0.95rem;
    }
}