/* Static Pages Styles */

/* EditorJS Image Styles */
.editorjs-image {
    margin: 1.5rem 0;
    text-align: center;
}

.editorjs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.editorjs-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* EditorJS Filer Image Styles */
.editorjs-filer-image {
    margin: 1.5rem 0;
    text-align: center;
}

.editorjs-filer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.editorjs-filer-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Filer Image Block Editor Styles */
.filer-image-block {
    padding: 1rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    margin: 1rem 0;
    background-color: #f9f9f9;
}

.filer-image-block:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

/* Quote block styles */
blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .editorjs-image,
    .editorjs-filer-image {
        margin: 1rem 0;
    }
    
    .editorjs-image img,
    .editorjs-filer-image img {
        border-radius: 4px;
    }
} 