/* ========================================= */
/* СТИЛИ ДЛЯ СТРАНИЦ МЕРОПРИЯТИЙ             */
/* ========================================= */
.event-page-main {
  /* Темный фон под стиль блока мероприятий */
    color: #ffffff;
    padding: 60px 20px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    min-height: 60vh;
}

.event-container {
    max-width: 900px;
    margin: 0 auto;
    background: #242424;
    border: 1px solid #dfee91; /* Желтовато-зеленая рамка */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.event-back-btn {
    display: inline-block;
    color: #dfee91;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 30px;
    transition: 0.2s;
}

.event-back-btn:hover {
    color: #fff;
    text-decoration: underline;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-tag {
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.event-date {
    color: #dfee91;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.event-content {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
}

.event-content h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.event-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.event-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .event-container { padding: 25px; }
    .event-title { font-size: 26px; }
}