.orthodox-news-section {
}

.news-header p {
    color: #666;
    font-size: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card a {
    text-decoration: none;
    color: inherit;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 22px;
}

.news-date {
    color: #a68a45;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.35;
}

.news-content p {
    color: #555;
    line-height: 1.6;
}

.news-button {
    display: inline-block;
    margin-top: 18px;
    color: #7a5c1f;
    font-weight: bold;
}

@media (max-width: 768px) {

    .news-header h2 {
        font-size: 28px;
    }

    .news-content h3 {
        font-size: 20px;
    }
}