.blog-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

    .blog__content {
    padding: 3em 0;
}

.hero-content {
    position: relative;
    z-index: 2;              
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    
}


.blog-title {
    color: #eaaa00 !important;
    font-size: 3.2em;
    font-weight: 500;
    margin: 0 0 10px 0 !important;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-date {
    color: #f5f5f5;
    font-size: 1.3em;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.blog-lead {
    background: #fff;
    border-left: 5px solid #eaaa00;
    padding: 30px;
    margin: 40px 0;
    font-size: 1.3em;
    color: #43695b;
    font-style: italic;
    border-radius: 6px;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.back-button {
    display: inline-block;
    padding: 15px 35px;
    background: #43695b;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1em;
    margin-top: 40px;
}

.back-button:hover {
    background: #eaaa00;
}


h1, h2, h3, h4, h5, h6 {
    color: white !important;
    font-weight: 500;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    padding: 0;
}

h1 {
    font-size: 3.2em;
    margin: 40px 0 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.4em;
    margin: 35px 0 18px;
    line-height: 1.3;
}

h3 {
    font-size: 2.0em;
    margin: 30px 0 16px;
    line-height: 1.3;
}

h4 {
    font-size: 1.7em;
    margin: 28px 0 14px;
    line-height: 1.4;
}

h5 {
    font-size: 1.5em;
    margin: 25px 0 12px;
    line-height: 1.4;
}

h6 {
    font-size: 1.3em;
    margin: 22px 0 10px;
    line-height: 1.4;
}


p {
    font-size: 1.15em !important;
    color: white !important;
    text-align: justify !important;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0;
}


ul, ol {
    padding-left: 1.4em !important;
    margin: 0.5em 0 !important;
    color: white !important;
    padding: 0;
}

ul li, ol li {
    color: white !important;
    margin-bottom: 0.3em !important;
    font-size: 1.15em;
}

ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
}

ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;
}

@media (max-width: 768px) {
    .blog-hero { 
        height: 50vh; 
        min-height: 400px; 
    }
    .blog-title { 
        font-size: 2.2em; 
    }
    .blog-date { 
        font-size: 1.1em; 
    }
    
    h1 { font-size: 2.4em; }
    h2 { font-size: 2.0em; }
    h3 { font-size: 1.7em; }
    h4 { font-size: 1.5em; }
    h5 { font-size: 1.3em; }
    h6 { font-size: 1.2em; }
    
    
    ul, ol {
        padding-left: 1em !important;
    }
    
    p {
        font-size: 1.05em !important;
    }
}

.table-of-contents-wrapper .toc-list li a {
    color: #fff;
}

.table-of-contents-wrapper .toc-list li a:hover {
    color: #eaaa00;
}

.blog__content a:hover{
    color: #af8101
}