.elementor-8610 .elementor-element.elementor-element-2e32ffb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:95px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8610 .elementor-element.elementor-element-84bb02f{text-align:center;}.elementor-8610 .elementor-element.elementor-element-84bb02f .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:44px;font-weight:bold;color:var( --e-global-color-6342ea0 );}.elementor-8610 .elementor-element.elementor-element-a34d8dc{--display:flex;--margin-top:5em;--margin-bottom:5em;--margin-left:0em;--margin-right:0em;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-8610 .elementor-element.elementor-element-2e32ffb{--margin-top:4em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}.elementor-8610 .elementor-element.elementor-element-84bb02f{text-align:center;}.elementor-8610 .elementor-element.elementor-element-84bb02f .elementor-heading-title{font-size:30px;}.elementor-8610 .elementor-element.elementor-element-a34d8dc{--margin-top:0em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}}@media(min-width:768px){.elementor-8610 .elementor-element.elementor-element-2e32ffb{--content-width:50%;}.elementor-8610 .elementor-element.elementor-element-a34d8dc{--content-width:50%;}}/* Start custom CSS for container, class: .elementor-element-a34d8dc *//* Contenedor principal */
.mercadillos-hoy-list, .mercadillos-cerca-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    font-family: 'Montserrat', sans-serif;
}

/* Estilo base de cada mercadillo (común) */
.mercadillo-item {
    background: #fff;
    border: 1px solid #f53542;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mercadillo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Título del mercadillo */
.mercadillo-title {
    font-size: 18px;
    font-weight: bold;
    color: #f53542;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.mercadillo-title:hover {
    text-decoration: underline;
}

/* Responsive: Ajuste para móviles */
@media screen and (max-width: 768px) {
    .mercadillo-item {
        width: calc(100% - 20px);
        margin: 10px;
    }

    .mercadillo-thumbnail {
        width: 125px;
        height: 125px;
        flex-shrink: 0;
        margin-right: 15px;
        float: left;
    }

    .mercadillo-thumbnail img {
        width: 125px;
        height: 125px;
        border-radius: 8px;
        object-fit: cover;
    }

    .mercadillo-title {
        font-size: 18px;
        text-align: left;
        margin-bottom: 10px;
    }

    .mercadillo-descripcion {
        font-size: 16px;
        text-align: left;
        line-height: 1.2;
        margin-left: 140px;
    }

    .mercadillo-info {
        margin: 15px 0 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mercadillo-info .ciudad,
    .mercadillo-info .distance {
        margin: 0;
    }
}

/* === Estilo limpio horizontal para desktop === */
@media screen and (min-width: 769px) {
    .mercadillos-hoy-list,
    .mercadillos-cerca-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .mercadillo-item {
        display: flex;
        flex-direction: column;
        border: 1px solid #f53542;
        border-radius: 6px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .mercadillo-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #f53542;
        margin-bottom: 10px;
        text-decoration: none;
    }

    .mercadillo-content {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .mercadillo-thumbnail img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 4px;
    object-fit: cover;
    }

    .mercadillo-text {
        flex-grow: 1;
    }

    .mercadillo-descripcion {
        margin: 0 0 10px 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .mercadillo-info {
        font-size: 0.9rem;
        color: #666;
        display: flex;
        justify-content: space-between;
    }
}

/* Ciudad con icono */
.mercadillo-info .ciudad {
    display: flex;
    align-items: center;
}

.mercadillo-info .ciudad:before {
    content: "📍 ";
}

/* Distancia destacada */
.mercadillo-info .distance {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #555;
}/* End custom CSS */