.banners-home {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.banner-item {
    position: relative;
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner-item:hover .banner-img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
    pointer-events: none;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-link {
    pointer-events: auto;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.banner-link:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 767px) {
    .banners-row {
        flex-direction: column;
    }
    .banner-item {
        flex: 1 1 100%;
    }
    .banner-title {
        font-size: 1.5rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
    .banner-content {
        left: 5%;
    }
}
