.grid-offer--list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1025px) {
    .grid-offer--list {
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .grid-offer--title {
        padding: 74px 16px 50px 71px;
    }
}

.grid-offer--list .col-right,
.grid-offer--list .col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1025px) {

    .grid-offer--list .col-right,
    .grid-offer--list .col-left {
        width: 100%;
    }
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .col-right .list-item:nth-of-type(1) {
        gap: 294px;
    }

    .grid-offer--list .col-right .list-item:nth-of-type(1) h3 {
        order: 2;
        max-width: 401px;
        width: 100%;
        padding: 0;
        margin: 0 40px 40px auto;
        text-align: right;
    }

    .grid-offer--list .col-right .list-item:nth-of-type(1) .tag {
        order: 1;
        margin: 0 auto 0 0;
        border-radius: 0 0 16px 0;
    }
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .col-right .list-item:nth-of-type(2) {
        gap: 294px;
    }

    .grid-offer--list .col-right .list-item:nth-of-type(2) h3 {
        order: 2;
        max-width: 401px;
        width: 100%;
        padding: 0;
        margin: 0 40px 40px 40px;
        text-align: left;
    }

    .grid-offer--list .col-right .list-item:nth-of-type(2) .tag {
        order: 1;
        margin: 0 0 0 auto;
        border-radius: 0 0 0 16px;
    }
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .col-left .list-item:nth-of-type(1) {
        gap: 347px;
    }

    .grid-offer--list .col-left .list-item:nth-of-type(1) h3 {
        max-width: 401px;
        width: 100%;
        padding: 0;
        margin: 40px 16px 0 40px;
        text-align: left;
    }

    .grid-offer--list .col-left .list-item:nth-of-type(1) .tag {
        margin: 0 0 0 auto;
        border-radius: 16px 0 0 0;
    }
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .col-left .list-item:nth-of-type(2) {
        gap: 448px;
    }

    .grid-offer--list .col-left .list-item:nth-of-type(2) h3 {
        max-width: 401px;
        width: 100%;
        padding: 0;
        margin: 40px 16px 0 40px;
        text-align: left;
    }

    .grid-offer--list .col-left .list-item:nth-of-type(2) .tag {
        margin: 0 auto 0 0;
        border-radius: 0 16px 0 0;
    }
}

.grid-offer--list .list-item {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 347px;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 16px;
}

.grid-offer--list .list-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

.grid-offer--list .list-item h3 {
    padding: 40px 40px 0 40px;
    color: var(--white);
    font-family: "aleo";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .list-item h3 {
        font-size: 3rem;
    }
}

.grid-offer--list .list-item .tag {
    margin: 0 0 0 auto;
    background-color: var(--white);
    padding: 24px;
    width: max-content;
    border-top-left-radius: 16px;
}

.grid-offer--list .list-item .tag p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--black);
    font-family: 'inter';
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase;
}

@media screen and (min-width: 1025px) {
    .grid-offer--list .list-item .tag p {
        font-size: 1.25rem;
    }
}

.grid-offer--list .list-item .tag p::before {
    display: block;
    background-color: var(--black);
    width: 32px;
    height: 32px;
}

.grid-offer--list .list-item img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 16px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.grid-offer--list .list-item:hover img {
    transform: scale(1.1);
}