.page-blog {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #B71C1C; /* Background color */
    color: #FFF5E1; /* Main text color */
    font-family: Arial, sans-serif; /* Roboto-like sans-serif */
}

.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 40px;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px; /* Max height for hero image */
    object-fit: cover;
    display: block;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog__hero-content {
    max-width: 960px;
    width: 100%;
    padding: 0 20px;
}

.page-blog__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF5E1; /* Main text color */
}

.page-blog__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF5E1; /* Main text color */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-blog__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: #FFF5E1; /* Text Main */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for contrast */
}

.page-blog__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__btn--secondary {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border color */
}

.page-blog__btn--secondary:hover {
    background-color: #7A0E0E; /* Deep Red */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__posts-section {
    padding: 40px 0 60px;
}

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

.page-blog__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF5E1; /* Main text color */
    /* text-gradient for H2 as per WOW88 style */
    background: linear-gradient(to right, #F4D34D, #FFD86A); /* Gold to yellow for gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.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: #D32F2F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-blog__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog__post-image {
    width: 100%;
    height: 220px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
}

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

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

.page-blog__post-title a {
    color: #FFF5E1; /* Main text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
    color: #FFD86A; /* Gold hover */
}

.page-blog__post-meta {
    font-size: 0.9rem;
    color: #F4D34D; /* Gold */
    margin-bottom: 15px;
}

.page-blog__post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1; /* Main text color */
    margin-bottom: 20px;
}

.page-blog__read-more-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #E53935; /* Auxiliary color */
    color: #FFF5E1; /* Main text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-blog__read-more-btn:hover {
    background-color: #C91F17; /* Primary color */
}

.page-blog__view-all {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog__post-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog {
        padding-top: 10px; /* Ensure small top padding for mobile */
    }
    .page-blog__hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .page-blog__hero-description {
        font-size: 1rem;
    }
    .page-blog__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-blog__post-grid {
        grid-template-columns: 1fr;
    }
    .page-blog__post-image {
        height: 200px; /* Adjust height for smaller screens */
    }
    /* Mobile overflow prevention */
    .page-blog img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog__hero-section {
        padding: 15px 0 30px;
    }
    .page-blog__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog__hero-description {
        font-size: 0.95rem;
    }
    .page-blog__posts-section {
        padding: 30px 0 40px;
    }
    .page-blog__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 30px;
    }
    .page-blog__post-content {
        padding: 15px;
    }
    .page-blog__post-title {
        font-size: 1.2rem;
    }
    .page-blog__post-meta,
    .page-blog__post-excerpt {
        font-size: 0.9rem;
    }
}