:root {
    --page-blog-primary-color: #11A84E;
    --page-blog-secondary-color: #22C768;
    --page-blog-text-main: #F2FFF6;
    --page-blog-text-secondary: #A7D9B8;
    --page-blog-background: #08160F;
    --page-blog-card-bg: #11271B;
    --page-blog-border-color: #2E7A4E;
    --page-blog-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --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;
    color: var(--page-blog-text-main);
    background-color: var(--page-blog-background);
    line-height: 1.6;
    font-size: 16px;
}

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

.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: var(--page-blog-background);
    overflow: hidden;
}

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

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog__hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    color: var(--page-blog-text-main);
}

.page-blog__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-blog-gold-color);
    line-height: 1.2;
}

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