/* Event page only styles (scoped to avoid overriding shared header/footer). */
.event-page {
    padding-bottom: 30px;
}

.event-page .container {
    width: 70%;
    margin: auto;
}

.event-page .card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.event-page .title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #03420e;
}

.event-page .image-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.event-page .image-box img {
    width: calc(50% - 5px);
    border-radius: 10px;
    margin-bottom: 10px;
}

.event-page .content {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #7a7a7a;
}

.event-page .date {
    font-weight: 700;
    color: #2bb673;
}

@media (max-width: 992px) {
    .event-page .container {
        width: 88%;
    }
}

@media (max-width: 576px) {
    .event-page .image-box img {
        width: 100%;
    }
}