.updates-container {
    max-width: var(--site-max-width);
    margin: 20px auto;
    padding: 20px;
}

.page-title-block {
    max-width: var(--site-max-width);
    margin: 0 auto 24px;
    padding: 0 20px;
}

.page-title-block h1 {
    margin: 0 0 10px;
    color: var(--color-deep-green);
    font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
    line-height: 1.2;
}

.page-intro {
    margin: 0;
    max-width: 800px;
    font-size: 1.05rem;
    color: var(--color-deep-green);
}

.update-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: var(--color-light-aqua);
    box-shadow: var(--shadow-soft);
}

.update-card .text-content {
    flex: 1 1 320px;
    padding: 10px 20px;
}

.update-card .text-content-full {
    flex: 1 1 100%;
}

.update-card h2 {
    margin: 0 0 16px;
    color: var(--color-deep-green);
    font-size: clamp(1.45rem, 1.2vw + 1rem, 2rem);
}

.update-card p {
    margin: 0 0 14px;
}

.update-card .image-content {
    flex: 1 1 320px;
    padding: 10px 20px;
}

.updates-cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
}

/* Galleries */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-thumb {
    display: block;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-thumb:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: rgba(0,0,0,0.06);
}

.event--single .image-gallery {
    display: block;
}

.event--single .gallery-thumb {
    max-width: 720px;
    width: 100%;
}

.event--single .gallery-thumb + .gallery-thumb {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.lightbox.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(2px);
}

.lightbox-content {
    position: relative;
    margin: 0;
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 96vw;
    max-height: 96vh;
    z-index: 2;
}

#lightbox-img {
    display: block;
    height: 70vh;
    max-height: 90vh;
    max-width: 92vw;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#lightbox-caption {
    margin: 0;
    padding: 4px 6px;
    color: var(--color-white);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    z-index: 2;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.92);
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-size: 24px;
    line-height: 46px;
    cursor: pointer;
    z-index: 3;
}

.lightbox-prev {
    left: -56px;
}

.lightbox-next {
    right: -56px;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: #fff;
}

@media (max-width: 768px) {
    .updates-container {
        padding: 15px;
    }

    .page-title-block {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .update-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .update-card .text-content,
    .update-card .image-content {
        width: 100%;
        padding: 0;
    }

    .update-card .image-content {
        margin-top: 10px;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    #lightbox-img {
        height: 80vh;
        max-width: 96vw;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .update-card {
        padding: 16px;
    }

    .page-intro {
        font-size: 1rem;
    }
}