.simple-image-widget {
    position: relative;
    max-width: 946px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.simple-image-widget img.selected-image {
    border-radius: 12px;
    pointer-events: none;
}

.simple-image-widget p {
    color: var(--Gray-Gray-600, #999);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.simple-image-widget .social-icons {
    position: absolute;
    right: calc(-54px - 20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.simple-image-widget .social-icons a {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--Gray-Gray-100, #161616);
    transition: 0.3s;
}

.simple-image-widget .social-icons a:hover {
    background-color: var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    transition: 0.3s;
}

.simple-image-widget .social-icons a img {
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

.simple-image-widget .social-icons a:hover img {
    filter: contrast(5);
}

@media (max-width: 768px) {
    .simple-image-widget {
        width: 100%;
        gap: 12px;
    }
    .simple-image-widget img.selected-image {
        border-radius: 6px;
    }
    .simple-image-widget .social-icons {
        position: relative;
        right: auto;
        flex-direction: row;
        gap: 12px;
    }
    .simple-image-widget .social-icons a {
        width: 40px;
        height: 40px;
    }
    .simple-image-widget .social-icons a img {
        width: 20px;
        height: 20px;
    }
}