/* --- Estructura de la Galería Eco Banners --- */
#eco_banners_gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem auto;
    gap: 1rem;
    /* Establece un ancho máximo para centrar el contenido en pantallas grandes */
    max-width: 1400px;
    padding: 0 10px;
}

.eco-banner-item,
.eco-banner-stacked-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    /* Quitamos flex-grow: 1 por defecto para definir anchos bases */
    transition: all 0.3s ease;
}

/* --- Distribución en Escritorio (3 Columnas) --- */
.eco-banner-item.eco-banner-large {
    /* Crece, no se encoge, ancho base de 300px (aprox. 1/3) */
    flex: 1 1 300px;
    min-height: 400px; /* Altura mínima consistente */
}

.eco-banner-stacked-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 300px; /* Ancho base similar a los banners grandes */
    min-height: 400px; /* Para que coincida con la altura de los banners grandes */
}

.eco-banner-item.eco-banner-small {
    /* Los banners pequeños se dividen la altura del wrapper */
    flex: 1 1 50%;
    min-height: 195px; /* Altura mínima para asegurar visibilidad */
}

.eco-banner-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.eco-banner-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    padding: 25px;
    height: 100%;
    box-sizing: border-box;
}

.eco-banner-large a {
    justify-content: space-between;
}
.eco-banner-small a {
    justify-content: center;
    padding: 15px;
}

/* --- Estilos del Contenido del Banner (Sin Cambios de Responsividad) --- */
/* Titulo banner */
.eco-banner-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-white);
    order: 1;
}
.eco-banner-large .eco-banner-title {
    font-size: 1.1rem;
}
/* Descripción banner */
.eco-banner-desc {
    order: 3;
    font-size: 0.9rem;
    width: 100%;
}
/* Descripción small banner */
.eco-banner-small .eco-banner-desc {
    text-align: right;
    font-size: 0.8rem;
    font-style: italic;
    color: #777;
}

/* Flecha para "COMPRAR" */
.eco-arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-white);
}

.eco-arrow-link::after {
    content: '›';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    width: 30px;
    height: 30px;
    border: 2px solid #aaa;
    border-radius: 50%;
    color: #555;
    transition: all 0.2s ease;
}
.eco-banner-item a:hover .eco-arrow-link::after {
    background: #333;
    color: var(--bs-white);
    border-color: #333;
}

/* Texto pequeño para "Descubra..." */
.eco-small-text {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
    font-style: italic;
    color: #777;
}

/* Responsive */
@media (max-width: 767px) {
    
}