.neat-offer-card {
    float: right;
    max-width: 320px;
    width: 100%;
    margin: 0 0 20px 30px;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.neat-offer-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.neat-offer-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.neat-text-column {
    flex: 1 1 60%;
    min-width: 280px;
}

.neat-desktop {
    display: block;
}
.neat-mobile {
    display: none !important;
}

@media (min-width: 992px) {
    .neat-desktop {
        display: block;
    }
    .neat-mobile {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .neat-offer-card {
        float: none;
        margin: 20px auto;
    }

    .neat-offer-row {
        flex-direction: column;
    }

    .neat-text-column {
        width: 100%;
    }

    .neat-desktop {
        display: none !important;
    }

    .neat-mobile {
        display: block !important;
    }
}
