.main-news-block {
    background: #202225;
    border-radius: 18px;
    margin: 2.5rem 0;
    padding: 2em 2rem;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
}
.main-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.7rem;
    gap: 1.5rem;
}
.main-news-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ff9800;
    margin: 0;
    letter-spacing: 0.04em;
}
.main-news-more-top {
    color: #ff9800;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.18s, background 0.18s;
    border-radius: 6px;
    padding: 0.3em 0.9em;
    background: #fffbe6;
}
.main-news-more-top:hover {
    color: #fff;
    background: linear-gradient(90deg, #ffb300 60%, #ff9800 100%);
}
.main-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 0;
}
.main-news-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,179,0,0.09);
    padding: 1.3rem 1.2rem 1.1rem 1.2rem;
    min-width: 220px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 1.5px solid #ffe082;
    position: relative;
    overflow: hidden;
}
.main-news-card:hover {
    box-shadow: 0 8px 32px rgba(255,179,0,0.13);
    border-color: #ffb300;
    transform: translateY(-4px) scale(1.03);
}
.main-news-img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.7em;
    border: 1px solid #ffe082;
    background: #fffbe6;
    box-shadow: 0 2px 8px rgba(255,179,0,0.06);
}
.main-news-date {
    color: #ef4444;
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.main-news-title {
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: #ff9800;
    font-size: 1.13rem;
    line-height: 1.2;
}
.main-news-title a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.18s;
}
.main-news-title a:hover {
    color: #ffb300;
    text-decoration: underline;
}
.main-news-desc {
    color: #23272b;
    font-size: 1.04rem;
    line-height: 1.5;
    margin-bottom: 0.7em;
    flex: 1 1 auto;
}
@media (max-width: 700px) {
    .main-news-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .main-news-list { grid-template-columns: 1fr; gap: 1rem; }
    .main-news-card { max-width: 100%; }
}