/* Contenedor general */
.memorial-fotos-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px auto;
    width: 85%;
    max-width: 850px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Título */
.fotos-titulo {
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #222;
}

/* Galería de fotos */
.galeria-fotos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Cada foto */
.foto-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f3f3f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-item:hover {
    transform: scale(1.05);
}

/* Placeholder */
.fotos-placeholder {
    font-style: italic;
    color: #777;
    font-size: 16px;
}
