.blog-container {
    display: flex;
    gap: 3%; /* Space between blog content and sidebar */
    max-width: 100%;
    padding: 3% 0.5%;
}

.blog-main {
    flex: 2; /* Takes up more space */
    max-width: 60%;
}

.blog-sidebar1 {
    flex: 1; /* Takes up less space */
    max-width: 20%;
}

.blog-sidebar1 img {
    position: sticky;
    top: 0;
    align-self: center; /* Centers the image vertically when possible */
}

.blog-sidebar2 {
    flex: 3; /* Takes up less space */
    max-width: 20%;
}

.blog-cross-links {
    margin-top: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.blog-cross-links a {
    color: #0f172a;
    text-decoration: none;
}

.blog-cross-links a:hover,
.blog-cross-links a:focus {
    text-decoration: underline;
}




@media (max-width: 1000px) {
    .blog-sidebar2 {
        display: none;
    }

    .blog-main {
        max-width: 75%;
    }
    
    .blog-sidebar1 {
        max-width: 25%;
    }
}

@media (max-width: 600px) {
    .blog-sidebar1 {
        display: none;
    }

    .blog-main {
        max-width: 100%;
    }

    .blog-container {
        padding: 4% 2.5%;
    }
}

.warning-callout {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid #f0c36d;
    background: #fff7e6;
    color: #7a4d00;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.95rem;
}
