.offer__item{
    width: 100%;
    background: #fff;
    border-radius: 25px 25px 25px 0;
    overflow: hidden;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    margin-top: 20px;
}

.item__container .offer__item{
    max-width: 340px;
    transition: transform .3s ease-out, box-shadow .3s ease-out, opacity .3s ease-out;
}

 .offer__item.highlight,
 .offer__item:hover{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

 .offer__item .offer__image{
    position: relative;
    display: block;
     aspect-ratio: 4 / 3;
}

 .offer__item .offer__image .transaction__pill{
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    border-radius: 50px;
    background: var(--e-global-color-d645804);
    padding: 7px 15px;
    color: #ffffff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}

 .offer__item .offer__image img{
    clip-path: ellipse(110% 100% at 50% 0%);
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .offer__item .content{
     padding: 10px 23px 13px;
}

 .offer__item .offer__title{
    color: var(--e-global-color-text);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4em;
}

 .offer__item .offer__location {
    color: var(--e-global-color-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 25px;
}

 .offer__item .offer__content {
    color: #677990;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 30px;
}


 .offer__item .offer__footer{
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

.offer__item .offer__footer  .price {
    color: var(--e-global-color-d645804, #77B64A);
    font-size: 26px;
    font-weight: 700;
    line-height: 23px; /* 88.462% */
    margin-bottom: 5px;
}

.offer__item .offer__footer  .offer__link {
    background-color: var(--e-global-color-d645804, #77B64A);
    height: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(9px, 0px);
    transition: transform .3s ease-out, background-color .3s ease-out;
}

.offer__item .offer__footer  .offer__link:hover{
    background-color: var(--e-global-color-accent);
    transform: translate(9px, 0px) scale(1.1);

}

.offer__item .offer__footer  .offer__link svg{
    width: 16px;
    height: 16px;
}