.promotions-container {
    background: linear-gradient(to bottom, #e3f2fd, #ffffff);
    padding: 160px 20px;
}

.promotions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.promotion-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.promotion-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -50px;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-content {
    flex: 1;
}

.promotion-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.promotion-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.promotion-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #888;
    font-size: 12px;
}

.promotion-meta-icon {
    font-size: 14px;
}

.promotion-button {
    display: inline-block;
    background: #7b2cbf;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.promotion-button:hover {
    background: #6a1b9a;
}

.promotion-button:focus {
    outline: 2px solid #7b2cbf;
    outline-offset: 2px;
}

.promotions-pagination {
    margin-top: 40px;
    text-align: center;
}

.no-promotions {
    text-align: center;
    padding: 60px 20px;
}

.no-promotions p {
    font-size: 18px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .promotions-container {
        padding: 100px 20px;
    }

    .promotion-card {
        flex-direction: column;
    }

    .promotion-image {
        width: 100%;
    }
}