.page-blog {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif; /* Roboto气质 - Arial is a common sans-serif */
    line-height: 1.6;
}

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

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px; /* Space below hero content */
    display: flex;
    flex-direction: column; /* Ensure image is above content for mobile */
    align-items: center;
    justify-content: center;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 5; /* 1920x600 */
    max-height: 600px; /* Max height for desktop */
    margin-bottom: 20px; /* Space between image and content on mobile */
}

.page-blog__hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

.page-blog__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Using clamp for responsive H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF6D6; /* Main text color */
}

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

/* CTA Button */
.page-blog__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Darker text for contrast on yellow button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4); /* Glow color */
}

/* Latest Posts Section */
.page-blog__latest-posts {
    padding: 60px 0;
}

.page-blog__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 40px;
    color: #FFF6D6;
}

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

.page-blog__post-card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.2s ease;
}

.page-blog__post-card:hover {
    transform: translateY(-5px);
}

.page-blog__post-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* 800x450 */
    min-height: 200px; /* Ensure minimum display size */
}

.page-blog__post-info {
    padding: 20px;
}

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

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

.page-blog__post-title a:hover {
    color: #FFD36B; /* Glow color for hover */
}

.page-blog__post-meta {
    font-size: 0.9rem;
    color: #F2C14E; /* Main color for metadata */
    margin-bottom: 15px;
}

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

.page-blog__read-more {
    display: inline-block;
    color: #F2C14E; /* Main color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-blog__read-more:hover {
    color: #FFD36B; /* Glow color */
}

.page-blog__pagination {
    text-align: center;
}

.page-blog__view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

/* CTA Section at bottom */
.page-blog__cta-section {
    background-color: #111111; /* Card BG */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #3A2A12;
}

.page-blog__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFF6D6;
    margin-bottom: 20px;
}

.page-blog__cta-description {
    font-size: 1.1rem;
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-button--large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-blog__hero-section {
        padding-top: 10px; /* Small top padding */
        padding-bottom: 20px;
    }
    .page-blog__hero-image {
        aspect-ratio: 4 / 3; /* For mobile hero image */
        max-height: 400px;
        margin-bottom: 15px;
    }
    .page-blog__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog__cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    .page-blog__post-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 20px;
    }
    .page-blog__post-thumbnail {
        min-height: 200px; /* Ensure minimum display size */
        max-width: 100%;
        height: auto;
    }
    .page-blog__section-title,
    .page-blog__cta-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-blog__latest-posts,
    .page-blog__cta-section {
        padding: 40px 0;
    }
}

@media (max-width: 549px) {
    .page-blog__container {
        padding: 15px;
    }
    .page-blog__post-title {
        font-size: 1.2rem;
    }
    .page-blog__post-excerpt {
        font-size: 0.95rem;
    }
    .page-blog__cta-button--large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Ensure no images are smaller than 200px in content area */
.page-blog__post-grid img {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile responsive image constraint for all images in .page-blog */
@media (max-width: 768px) {
    .page-blog img {
        max-width: 100%;
        height: auto;
    }
}