.offer-list-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
  .offer-list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 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 {
     margin-top: 16px !important;
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
}

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




.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%);
}


