.offer-banner{
    padding: var(--padding);
    height: unset;
    width: 100%;
}
.offer-surround{
    padding:var(--padding-large);
    border-radius: var(--radius);
    position: relative;
}
.offer-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
    justify-content: flex-end;
}
.offer-inner .offer-text{
    width:100%;
}
.offer-text {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-end;
}
.offer-text p{
    margin:0;
}
.offer-action{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.offer-image {
    position: absolute;
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    top: -15%;
    right: var(--padding-large);
}
@media(min-width:778px){
    .offer-inner {
        flex-direction: row;
        min-height: 125px;
        align-items:flex-end;
        justify-content: space-between;
    }
    .offer-image {
        top: -25%;
    }
}