.custom-columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    width: 100%;
}

.custom-column {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.column-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.column-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.column-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.column-title {
    margin: 0;
    padding: 0;
}

.column-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.column-list li {
    margin: 0;
    transition: all 0.3s ease;
}

/* Estilos para lista horizontal */
.column-list li[style*="display: inline-block"] {
    vertical-align: middle;
}

/* En tu archivo styles.css */
.list-container {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
}

.list-container.show {
    max-height: 1000px; /* Ajusta según necesidad */
}

.view-more-button {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 10px;
    align-self: center;
    transition: all 0.3s ease;
}

.column-content {
    transition: all 0.3s ease;
}

/* Estilos adicionales para el botón según tus preferencias */

/* Agrega esto al final de tu styles.css */
.custom-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    gap: 10px;
}

.custom-page-button {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.custom-page-button.active {
    font-weight: bold;
}

/* Estilos específicos para diferentes tipos de paginación */
.custom-pagination.dots .custom-page-button {
    font-size: 24px;
    line-height: 1;
    padding: 0 5px;
}

.custom-pagination.numbers .custom-page-button {
    min-width: 30px;
    text-align: center;
}

.custom-pagination.arrows .custom-page-button {
    padding: 5px 15px;
}



@media (max-width: 768px) {
    .custom-column {
        width: 100% !important;
    }

    .custom-pagination {
        flex-wrap: wrap;
    }

    .custom-page-button {
        margin: 5px;
    }
}
