.ads-block-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: stretch;
}

/* Главный баннер */
.ads-big {
    flex: 0 0 55%;
    max-width: 55%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
}
.ads-big:hover { transform: scale(1.02); }

.ads-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ads-smalls {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 320px;
}

.ads-small {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.ads-small:hover { transform: scale(1.02); }

.ads-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ads-label {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
}

.ads-big.grabbing {
    cursor: grabbing;
}

/* Адаптив */
@media (max-width: 1000px) {
    .ads-smalls { display: none; }
    .ads-big { flex: 1; max-width: 100%; height: 280px; }
}

@media (max-width: 700px) {
    .ads-block-container { flex-direction: column; gap: 10px; }
    .ads-big { height: 220px; }
    .ads-smalls { flex-direction: row; height: 140px; max-width: 100%; }
    .ads-small { height: 140px; }
}
