.sA56 {
    position: relative;
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 1rem;
    font-family: "Samsung Sharp Sans", sans-serif;
    align-items: center;

}

.sA56 > div {
    min-width: 10px;
}

.sA56__logo {
    position: absolute;
    left: 1rem;
    top: 1rem;
}

.sA56__images {
    background-color: #f7f7f7;
    padding: 2.5rem 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.sA56__content {
    text-align: center;
}

.sA56__title {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 700;
    max-width: 12ch;
    margin-inline: auto;
}

.sA56__link {
    font-size: 1.875rem;
    font-weight: 700;
    text-decoration: underline;
}

.sA56__link:hover,
.sA56__link:focus-visible {
    text-decoration: none;
}

.sA56 .drops {
    font-family: "Graphik Compact", sans-serif;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem auto;
    justify-content: center;
}

.sA56 .drops .drop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 134px;
    height: 134px;
    font-size: 17px;
    border: 3px solid #fff;
}

@media (max-width: 1300px) {
    .sA56 .drops .drop {
        width: 100px;
        height: 100px;
        font-size: 13px;
    }
}

.sA56 .drops .drop--violet {
    border-radius: 0% 50% 50% 50%;
    z-index: 3;
}

.sA56 .drops .drop--green {
    border-radius: 50% 0 50% 50%;
    z-index: 1;
}

.sA56 .drops .drop--orange {
    border-radius: 50% 50% 0 50%;
    z-index: 2;
    margin-inline: -.75rem;
}

@media (max-width: 980px) {
    .sA56 {
        grid-template-columns: 1fr 1fr;
    }

    .sA56__logo {
        width: 120px;
    }

    .sA56__images {
        padding-block: 3.5rem 1.5rem;
    }

    .sA56__title {
        font-size: 1.75rem;
    }

    .sA56__link {
        font-size: 1.25rem;
    }
}

@media (max-width: 660px) {
    .sA56 {
        grid-template-columns: 1fr;
        padding-block-end: 2rem;
        gap: 2.5rem;
    }

    .sA56 .drops {
        margin-block: 1.5rem;
    }
}