.offer-list-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-headers {
    text-align: center;
    margin-bottom: 40px;
}
.single-offer-item {
    background: white;
    border: 1px solid #efefef;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.single-offer-item img {
    width: 100%;
    height: 350px;
}

.single-offer-item .title {
    color: #000000;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
}

.single-offer-item .short-desc {
    line-height: 18px;
    color: #1c1c1c;
    margin: 14px 0;
}




.single-offer-item .view-details {
    font-weight: 600;
    color: black;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.single-offer-item .view-details:hover {
    color: #0B2851;
}
.offer-no-available {
    background: white;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 3px rgb(205 205 205 / 60%);
}



@media screen and (max-width: 991px) {
    .offer_content_wrap h2 {
        font-size: 16px;
        font-weight: 600;
    }

}
@media screen and (max-width: 776px) {
    .offer-list-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .single-offer-item img {
        height: auto;
    }
}
