.article-detail-hero {
    background: #000;
    color: #fff;
}

.article-detail-section {
    padding: 60px 0;
    background: #fff;
    min-height: 60vh;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.back-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 30px;
    border: 2px solid #000;
    background: #fff;
    font-family: 'Bayon', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 30px;
}

.back-btn:hover {
    background: #000;
    color: #fff;
}

.feed-detail .article-detail-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
}

.discount-detail .article-detail-content {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 20px;
}
/* Стили для детальных страниц событий */
.event-detail {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.event-detail h2 {
    font-family: 'Kumar One', serif;
    font-size: 2rem;
    margin: 20px 0 10px;
    color: #000;
}

.event-detail p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.event-detail a {
    color: #fff;
    background: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.event-detail a:hover {
    background: #ffd700;
    color: #000;
}

.event-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}