:root {
    --main-color: #11A84E;
    --main-color-rgb: 17, 168, 78; /* For rgba usage */
    --secondary-color: #22C768;
    
    /* Custom Colors */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --bg-color: #08160F; /* Body background */
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --glow-color-rgb: 87, 227, 141; /* For rgba usage */
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* style/blog.css */
/* body đã padding-top: var(--header-offset); trang này không được viết lại biến đó */
.page-blog {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color, #F2FFF6); /* Màu chữ mặc định cho nội dung trang */
    background-color: var(--bg-color, #08160F); /* Nền trang từ shared */
}

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

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Hình ảnh ở trên, nội dung ở dưới */
    align-items: center;
    padding: 10px 0 60px 0; /* Khoảng đệm trên nhỏ, dưới nhiều hơn */
    background-color: var(--bg-color, #08160F);
    color: var(--text-main-color, #F2FFF6);
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Giới hạn chiều cao cho ảnh hero */
}