/* Стили для баннера на главной */
.banner {
    width: 100%;
    height: 200px;
    background-color: #f4f4f4; /* Светлый фон */
    border: 2px dashed #ccc; /* Пунктирная рамка */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}

.banner-text {
    font-size: 24px;
    color: #555; /* Серый текст */
}

/* Стили для отображения статей на главной */
.latest-articles, .popular-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.article-card {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.article-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.article-card p {
    font-size: 14px;
    color: #666;
}

.article-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.article-card a:hover {
    text-decoration: underline;
}

/* Стили футера */
.site-footer {
    background-color: #333; /* Темный фон */
    color: #fff; /* Белый текст */
    padding: 20px 0;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-section p, .footer-section ul, .footer-section li, .footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-section a {
    text-decoration: none;
    color: #007bff;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}
