.image-growth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;    
}

.image-growth-image {
    position: relative;
}

.image-growth-press,
.image-growth-stats {
    position: absolute;
}

.image-growth-stats {
    top: 50%;
    right: -50px;
    transform: translateY(50%);
}

.image-growth-stats-wrap {
    background: #fff;
    border-radius: 7px;   
    display: flex;
    align-items: center;  
    padding: 10px 14px; 
}

.image-growth-stats-wrap svg {
    height: 32px;
    width: 32px;
    display: block;
    margin-right: 8px;
    overflow: visible;
}

.image-growth-stat-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--site-black);
    display: flex;
    align-items: center;
}

.image-growth-stat-item.accent:before {
    background: var(--site-accent);
}

.image-growth-stat-item span {
    font-weight: 300;
    color: var(--site-text);
}

.image-growth-stat-item:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 8px;
    background: var(--site-primary);
    display: block;
}


.image-growth-press {
    bottom: -20px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
}

.image-growth-press img {
    height: 26px;
    width: auto;
}

.image-growth-press-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: var(--site-text);
    margin: 5px 0px;
}

.image-growth-press-title {
    color: var(--site-black);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
}


@media (max-width: 980px) {
   .image-growth-container {
        grid-template-columns: 1fr;
        gap: 30px;    
    }

    .image-growth-stats {
        right: -15px;
    }
}