.latest-news-block {
    padding: 60px 0;
    background-color: #ffffff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.news-admin-notice {
    background: #f0f0f1;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1d2327;
}

.news-placeholder {
    background: #f0f0f1;
    border: 2px dashed #c3c4c7;
    border-radius: 5px;
    padding: 40px 20px;
    text-align: center;
    color: #646970;
    font-size: 16px;
    margin: 20px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-title {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.news-grid {
    display: grid;
    gap: 16px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 1125px;
}

.news-item {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item-link:hover .news-item {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
}

.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    font-weight: 600;
    color: #212224;
    margin: 0 0 12px 0;
    line-height: 1.3;
    flex: 0 0 auto;
}

.news-excerpt {
    flex: 1;
    margin-bottom: 20px;
}

.news-excerpt p {
    font-size: 0.9rem;
    color: #212224;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    margin-top: auto;
}

.news-read-more-link {
    display: inline-flex;
    align-items: center;
    color: #D1232D;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 6px;
}

.news-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.news-item-link:hover {
    text-decoration: none;
}

.news-no-images .news-image {
    display: none;
}

.news-no-images .news-item-content {
    padding-top: 30px;
}

@media (min-width: 768px) {    
    .news-container {
        padding: 0 20px;
    }
    
    .news-header {
        margin-bottom: 40px;
    }
    
    .news-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-item-content {
        padding: 20px;
    }
    
    .news-excerpt p {
        -webkit-line-clamp: 4;
    }
}

@media (min-width: 1200px) {
    .latest-news-block {
        padding: 90px 0;
    }
    
    .news-header {
        margin-bottom: 50px;
    }
    
    .news-grid {
        gap: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-image {
        height: 210px;
    }
    
    .news-item-content {
        padding: 30px;
    }
}