#top-banners {
margin: 40px 0;
}
#top-banners .top-banner-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 0;
padding: 0;
list-style: none;
}
#top-banners .top-banner-list li {
flex: 1 1 0;
min-width: 0;
}
#top-banners .top-banner-list a {
display: block;
transition: opacity 0.3s ease;
}
#top-banners .top-banner-list a:hover {
opacity: 0.75;
}
#top-banners .top-banner-list img {
display: block;
width: 100%;
height: auto;
} @media screen and (max-width: 767px) {
#top-banners {
margin: 25px 15px;
}
#top-banners .top-banner-list {
display: block;
}
#top-banners .top-banner-list li {
margin-bottom: 15px;
}
#top-banners .top-banner-list li:last-child {
margin-bottom: 0;
}
}