/* WP Media Gallery Pro - Block Editor Styles */

.wpmgp-block-wrapper {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.wpmgp-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.wpmgp-block-header .dashicons {
    color: #4a90d9;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.wpmgp-block-preview {
    display: grid;
    gap: 8px;
    padding: 15px;
}

.wpmgp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wpmgp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wpmgp-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wpmgp-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.wpmgp-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.wpmgp-block-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
}

.wpmgp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpmgp-block-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    aspect-ratio: 1;
}
