/* Termbox banner iframes — responsive layout */
.banners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.banners-container iframe {
    flex: 1 1 30%;
    margin: 10px;
    max-width: 300px;
}

.kod_sidebar iframe {
    display: block;
    margin-bottom: 15px;
}

.kod_sidebar iframe:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .banners-container {
        justify-content: center;
    }
    .banners-container iframe {
        margin: 10px 0;
        flex: 1 1 45%;
        max-width: 100%;
    }
    .banner-rotation {
        display: none;
    }
}

@media (max-width: 480px) {
    .banners-container {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }
    .banners-container iframe {
        margin-bottom: 10px;
        margin-right: 0;
        flex: 0 0 auto;
    }
}
