/*
Theme Name: Royal Elementor Kit Child
Description: Дочерняя тема для Royal Elementor Kit
Author: Murad
Template: royal-elementor-kit
Version: 1.0.0
*/

.custom-banners-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.single-banner {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.single-banner a {
    text-decoration: none;
    display: block;
}

.single-banner img {
    width: 100%;
    height: auto;
    display: block;
}