/* Supplementary sidebar used exclusively by the ADS article template. */
.ads-sidebar {
    width: 100%;
}

.ads-sidebar__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ads-sidebar__feature {
    border: 1px solid #e1e1e1;
    padding: 22px 20px;
    background: #fff;
}

.ads-sidebar__feature .feature-content-icon {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 16px;
    border-bottom: 1px solid #dedede;
}

.ads-sidebar__feature .feature-box-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #15b6c7;
    border-radius: 2px;
    font-size: 27px;
}

.ads-sidebar__feature .feature-box-title h2 {
    margin: 0;
    color: #303030;
    font-size: 22px;
    line-height: 1.15;
}

.ads-sidebar__feature .feature-box-desc p {
    margin: 0;
    color: #454545;
    font-size: 15px;
    line-height: 1.5;
}

.ads-sidebar__partners {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    margin-top: 20px;
    padding: 24px 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 14px rgb(0 0 0 / 10%);
}

.ads-sidebar__partner {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.ads-sidebar__partner img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .ads-sidebar__features {
        display: none;
    }

    .ads-sidebar__partners {
        margin: 20px 0 0;
        border-radius: 12px;
    }

    .ads-sidebar__partner img {
        max-height: 65px;
    }
}
