.elementor-23721 .elementor-element.elementor-element-305a70d{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:95px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-23721 .elementor-element.elementor-element-40d5e3e{text-align:center;}.elementor-23721 .elementor-element.elementor-element-40d5e3e .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:44px;font-weight:bold;-webkit-text-stroke-color:#000;stroke:#000;color:#1A171B;}.elementor-23721 .elementor-element.elementor-element-6609913{--display:flex;--margin-top:1em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}.elementor-23721 .elementor-element.elementor-element-6609913.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-23721 .elementor-element.elementor-element-305a70d{--justify-content:center;--margin-top:4em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}.elementor-23721 .elementor-element.elementor-element-40d5e3e{width:100%;max-width:100%;}.elementor-23721 .elementor-element.elementor-element-40d5e3e.elementor-element{--align-self:center;}.elementor-23721 .elementor-element.elementor-element-40d5e3e .elementor-heading-title{font-size:30px;}.elementor-23721 .elementor-element.elementor-element-57a24b0{font-size:18px;}}@media(min-width:768px){.elementor-23721 .elementor-element.elementor-element-305a70d{--content-width:50%;}.elementor-23721 .elementor-element.elementor-element-6609913{--content-width:50%;}}/* Start custom CSS for heading, class: .elementor-element-40d5e3e */.text-center {
    text-align: center;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9014bd7 *//* 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 */