

/* Start:/local/templates/.default/components/bitrix/news/articles_home/bitrix/news.list/.default/style.css?17633768392669*/
.article-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.article-item {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    transition: all 0.3s ease;
}

.article-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #90ae10;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto
}

.btn-read-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: #a81418;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-read-more:hover {
    background-color: #8f1014;
    box-shadow: 0 4px 8px rgba(201, 168, 124, 0.3);
}

.article-date-inline {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}

.article-preview {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 40px 0 40px 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c9a87c;
}

@media (max-width: 992px) {
    .article-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .article-item {
        flex: 0 0 100%;
    }
}
/* End */
/* /local/templates/.default/components/bitrix/news/articles_home/bitrix/news.list/.default/style.css?17633768392669 */
