

/* Start:/bitrix/templates/market.system/components/bitrix/news/sale/bitrix/news.list/.default/style.css?17817795842981*/

.promotions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.promotion-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promotion-card__image {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    background: #f5f5f5;
}

.promotion-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion-card:hover .promotion-card__image img {
    transform: scale(1.05);
}

.promotion-card__image .promotion-card__link {
    display: block;
    width: 100%;
    height: 100%;
}

.promotion-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promotion-card__date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.promotion-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promotion-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.promotion-card__title a:hover {
    color: #e74c3c;
}

.promotion-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    flex: 1;
    margin-bottom: 15px;
}

.promotion-card__description p {
    margin: 0 0 10px 0;
}

.promotion-card__fields,
.promotion-card__properties {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

.promotion-card__field,
.promotion-card__property {
    margin-bottom: 5px;
}

.promotion-card__field-label,
.promotion-card__property-label {
    font-weight: 600;
    color: #555;
}

.promotion-card__field-value,
.promotion-card__property-value {
    color: #666;
}

.promotions-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #999;
}

.pagination-top,
.pagination-bottom {
    text-align: center;
    margin: 20px 0;
}

.pagination-top a,
.pagination-bottom a {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    transition: all 0.2s;
}

.pagination-top a:hover,
.pagination-bottom a:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* Адаптивность */
@media (max-width: 768px) {
    .promotions-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promotion-card__title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .promotions-grid {
        padding: 10px;
    }
    
    .promotion-card__content {
        padding: 15px;
    }
}
/* End */
/* /bitrix/templates/market.system/components/bitrix/news/sale/bitrix/news.list/.default/style.css?17817795842981 */
