

/* Start:/local/templates/doktormunhen/components/bitrix/news.list/stat_multilang/style.css?17751342374725*/
﻿/* Современный дизайн списка статей - двухколоночная сетка */
.articles-container {
    padding: 20px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.article-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.article-card__image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.article-card__title {
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.article-card__title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card__title a:hover {
    color: #4361ee;
}

.article-card__excerpt {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    color: #4361ee;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card__link:hover {
    color: #3651d4;
}

.article-card__link::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.article-card__link:hover::after {
    transform: translateX(4px);
}

/* Кнопка "Загрузить ещё" */
.articles-load-more {
    text-align: center;
    padding: 30px 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3651d4 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #3651d4 0%, #2a41b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-btn__spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.load-more-btn.loading .load-more-btn__text {
    opacity: 0.7;
}

.load-more-btn.loading .load-more-btn__spinner {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .article-card__image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .articles-container {
        padding: 15px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .article-card {
        flex-direction: row;
    }
    
    .article-card__image {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
        border-radius: 4px;
    }
    
    .article-card__content {
        padding: 12px 15px;
    }
    
    .article-card__title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .article-card__excerpt {
        font-size: 13px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .load-more-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .article-card__image {
        width: 100px;
        height: 100px;
    }
    
    .article-card__title {
        font-size: 14px;
    }
    
    .article-card__excerpt {
        display: none;
    }
}

/* RTL поддержка */
[dir="rtl"] .articles-grid {
    direction: rtl;
}

[dir="rtl"] .article-card__link::after {
    content: '←';
    margin-left: 0;
    margin-right: 6px;
}

[dir="rtl"] .article-card__link:hover::after {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    [dir="rtl"] .article-card {
        flex-direction: row-reverse;
    }
}

/* End */
/* /local/templates/doktormunhen/components/bitrix/news.list/stat_multilang/style.css?17751342374725 */
