/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 29 2026 | 03:30:39 */
/* ===== БЛОК НОВИН ===== */
.news-date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}
.home-news-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.news-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.news-image-link {
    flex: 0 0 300px;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-image-link:hover .news-image {
    transform: scale(1.05);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.news-content {
    flex: 1;
    padding-top: 5px;
}

.news-category {
    display: inline-block;
    color: #00bcd4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.news-title a {
    color: #222;
    text-decoration: none;
}

.news-title a:hover {
    color: #0073aa;
}

.news-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.news-all-link {
    margin-top: 30px;
    text-align: right;
}

.news-all-link a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.news-all-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    .news-image-link {
        flex: none;
        width: 100%;
        height: 200px;
    }
    .news-title {
        font-size: 18px;
    }
}