/**
 * Home Banner Styles
 * Path: /modules/homebanner/views/css/homebanner.css
 */

.homebanner-container {
    width: 100%;
    margin: 1rem 0 4rem;
    overflow: hidden;
    border-radius: 1.4rem;
}

.homebanner-link {
    display: block;
    transition: transform 0.3s ease;
}

.homebanner-link:hover {
    transform: scale(1.02);
}

.homebanner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .homebanner-container {
        margin: 15px 0;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .homebanner-container {
        margin: 10px 0;
        border-radius: 0;
    }
}