.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
}

@media (max-width: 1200px) {
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

.promotion-card {
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.promotion-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.promotion-content h3 {
    margin-top: 0;
}

.promo-buttons {
    margin-top: 10px;
}

.promo-buttons .button{
    margin-bottom:5px;
}