/* style/blog.css */

/* Custom Colors */
:root {
    --page-blog-primary-color: #11A84E;
    --page-blog-secondary-color: #22C768;
    --page-blog-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-blog-card-bg: #11271B;
    --page-blog-background: #08160F;
    --page-blog-text-main: #F2FFF6;
    --page-blog-text-secondary: #A7D9B8;
    --page-blog-border-color: #2E7A4E;
    --page-blog-glow-color: #57E38D;
    --page-blog-gold-color: #F2C14E;
    --page-blog-divider-color: #1E3A2A;
    --page-blog-deep-green: #0A4B2C;
}

.page-blog {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-blog-text-main); /* Light text for dark body background */
    background-color: var(--page-blog-background); /* Explicitly set page background for safety, though body handles it */
}

/* Hero Section */
.page-blog__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px 0 60px; /* Small top padding, more bottom */
    background-color: var(--page-blog-deep-green); /* Fallback background for hero */
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7; /* Slightly dim image to make text pop if needed, but not required by prompt */
}

.page-blog__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 10;
    background: var(--page-blog-background); /* Dark background for text block */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 */
    color: var(--page-blog-gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog__hero-description {
    font-size: 1.15rem;
    color: var(--page-blog-text-secondary);
    margin-bottom: 30px;
}