

.section--image-left {
    padding: 32px 0;
}

.section--image-left .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT COLUMN */
.section--image-left .section__left {
    width: calc(50% - 26px);
}


/* RIGHT COLUMN IMAGE */
.section--image-left .section__right {
    width: calc(50% - 16px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.section--image-left .section__picture {
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    cursor: pointer;
}

.section--image-left .section__picture-image {
    width: 100%;
    display: block;
    object-fit: cover;
}
.section--image-left .section__picture-caption {
    font-size: 12px;
    text-align: left;
    margin: 10px 16px 12px;
    opacity: 0.7;
}

.section--image-left  .section__image-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32Px;
    height: 32Px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: linear .15s;
}

.section--image-left .section__image-btn svg {
    width: 15px;
    opacity: .5;
    transition: linear .15s;
}

.section--image-left .section__image-btn svg * {
    fill: var(--color-text);
    transition: linear .15s;
}

.section--image-left .section__picture:hover  .section__image-btn {
    opacity: 1;
}

.section--image-left .section__picture:hover  .section__image-btn svg {
    opacity: 1;
}

.section--image-left .section__picture:hover   .section__image-btn svg * {
    fill: var(--color-nav);
}

.section--image-left[data-size="small"]  .section__left {    width: calc(65% - 26px);}
.section--image-left[data-size="small"]  .section__right {    width: calc(35% - 26px);}

.section--image-left[data-size="medium"]  .section__left {    width: calc(50% - 26px);}
.section--image-left[data-size="medium"]  .section__right {    width: calc(50% - 26px);}

.section--image-left[data-size="large"]  .section__left {    width: calc(35% - 26px);}
.section--image-left[data-size="large"]  .section__right {    width: calc(65% - 26px);}

@media all and (max-width: 1024px){
    .section--image-left .section__content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .section--image-left .section__left {
        width: 100%;
    }
    .section--image-left .section__left {
        width: 100%;
        max-width: 750px;
    }
}
