body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.publication-container {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

.publication-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.publication-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.cover-image {
    flex: 1 1 40%;
    text-align: center;
}

.cover-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.publication-details {
    flex: 1 1 50%;
    font-size: 18px;
    line-height: 1.6;
}

.publication-link {
    margin-top: 20px;
}

.publication-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.additional-images {
    margin-top: 40px;
}

.additional-images h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.image-gallery a {
    width: calc(33.333% - 10px);
    max-width: 200px;
}

.image-gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.image-gallery img:hover {
    transform: scale(1.02);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

@media (max-width: 768px) {
    .image-gallery a {
        width: calc(50% - 10px) !important;
    }

    .publication-flex {
        flex-direction: column;
    }

    .publication-details {
        margin-top: 20px;
    }
}
/* events */
/* Event Container */
.event-container {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* Title */
.event-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Event Layout */
.event-container .event-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

/* Featured Image */
.event-container .featured-image {
    flex: 1 1 40%;
    text-align: center;
}

.event-container .featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Description */
.event-container .event-details {
    flex: 1 1 50%;
    font-size: 18px;
    line-height: 1.6;
}

/* Link Button */
.event-container .event-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Additional Images */
.event-container .additional-images {
    margin-top: 40px;
}

.event-container .additional-images h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.event-container .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.event-container .image-gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.event-container .image-gallery img:hover {
    transform: scale(1.02);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* Responsive */
@media (max-width: 768px) {
    .event-container .image-gallery a {
        width: calc(50% - 10px);
        max-width: 100%;
    }

    .event-container .event-flex {
        flex-direction: column;
    }

    .event-container .event-details {
        margin-top: 20px;
    }
}

