/* Estilos principales del plugin Socios - DISEÑO FLEXIBLE */
.socios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Estilos base para cada item - DISEÑO FLEXIBLE */
.socio-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    text-decoration: none !important;
    height: 100px;
    overflow: hidden;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.socio-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Efectos Hover */

/* Efecto Zoom */
.socios-efecto-zoom .socio-item:hover {
    transform: scale(1.05);
}

.socios-efecto-zoom .socio-item:hover img {
    transform: scale(1.1);
}

/* Efecto Opacidad */
.socios-efecto-opacity .socio-item {
    opacity: 0.8;
}

.socios-efecto-opacity .socio-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Efecto Escala de Grises */
.socios-efecto-grayscale .socio-item img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.socios-efecto-grayscale .socio-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Efecto Sombra */
.socios-efecto-shadow .socio-item {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.socios-efecto-shadow .socio-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Efectos combinados para mejor apariencia */
.socio-item:hover {
    border-color: #007cba;
}

/* Asegurar que todos los items tengan la misma altura */
.socios-container {
    align-items: stretch;
}

.socio-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forzar la altura en todos los casos */
.socio-item {
    height: 120px !important;
    min-height: 120px !important;
}

/* Estilos para el admin */
@media (min-width: 768px) {
    #postimagediv {
        max-width: 300px;
    }
}

/* Responsive básico */
@media (max-width: 768px) {
    .socios-container {
        justify-content: center;
        gap: 12px;
    }
    
    .socio-item {
        padding: 8px 15px;
        height: 100px;
    }
    
    .socio-item img {
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .socios-container {
        gap: 10px;
    }
    
    .socio-item {
        padding: 6px 12px;
        height: 90px;
    }
    
    .socio-item img {
        max-height: 80px;
    }
}

/* Garantizar que el diseño sea flexible y se adapte */
.socios-container::after {
    content: "";
    flex: auto;
}