/* Blog modal overlay and content styles */
.blog-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.blog-modal-backdrop.is-open {
    display: flex;
}
.blog-modal {
    background: #111;
    color: #fff;
    border-radius: 10px;
    width: min(90vw, 900px);
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.blog-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.blog-modal-body {
    margin-top: 0.5rem;
}
.blog-article-title {
    margin: 0 0 0.5rem 0;
}
.blog-article-date {
    margin: 0 0 1rem 0;
    color: #ccc;
}

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
