* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.offers img {
    width: 300px;
    height: auto;
}
.offers {
    display: grid;
    grid-template-columns: repeatt (2, 1fr) ;
    gap: 1rem;
    padding: 1rem;
}

.col-item {
    border: 1px solid gray;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: white;

}
 
.col-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .offers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .offers {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}