.mpl-collections {
    max-width: 1200px;
    margin: 0 auto;
}

.mpl-collection {
    margin-bottom: 40px;
}

.mpl-collection-title {
    font-size: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.mpl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.mpl-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.mpl-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mpl-thumb {
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.mpl-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mpl-name {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.mpl-download-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.mpl-download-btn:hover {
    background-color: #005177;
    color: #fff;
}
