/* Reuniones Section Styles */
.reuniones_section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.reuniones_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.reunion_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reunion_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(167, 203, 0, 0.2);
}

.reunion_image_wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.reunion_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reunion_card:hover .reunion_image {
    transform: scale(1.08);
}

.reunion_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reunion_card:hover .reunion_overlay {
    opacity: 1;
}

.btn-lightbox {
    background: #0B346B;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lightbox:hover {
    background: #93a700;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(167, 203, 0, 0.4);
}

.reunion_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reunion_content h3 {
    font-size: 19px;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
    border-left: 4px solid #0B346B;
    padding-left: 12px;
}

.reunion_date {
    font-size: 13px;
    color: #0B346B;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reunion_description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.reunion_meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.meta_item {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.meta_item i {
    color: #0B346B;
    width: 14px;
}

/* Lightbox Styles */
.lightbox {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
}

.lb-outerContainer {
    position: relative;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
}

.lb-container {
    padding: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reuniones_grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reuniones_section {
        padding: 60px 0;
    }

    .reuniones_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reunion_image_wrapper {
        height: 200px;
    }

    .reunion_content {
        padding: 20px;
    }

    .reunion_content h3 {
        font-size: 17px;
    }

    .reunion_description {
        font-size: 13px;
    }

    .btn-lightbox {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .reunion_image_wrapper {
        height: 180px;
    }

    .reunion_content {
        padding: 15px;
    }

    .reunion_content h3 {
        font-size: 16px;
    }

    .reunion_meta {
        gap: 6px;
    }

    .meta_item {
        font-size: 11px;
    }
}