.taller-mapa-block{
    width:100%;
    box-sizing:border-box;
}

.taller-mapa-frame{
    width:100%;
    height:var(--tm-height, 450px);
    overflow:hidden;
    border-radius:var(--tm-radius, 8px);
    background:#ececec;
}

.taller-mapa-frame iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.taller-mapa-action{
    display:flex;
    justify-content:center;
    margin-top:22px;
}

.taller-mapa-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 28px;
    border-radius:4px;
    background:var(--tm-button-bg, #d91f26);
    color:var(--tm-button-text, #ffffff) !important;
    font-size:14px;
    font-weight:700;
    line-height:1;
    letter-spacing:.35px;
    text-decoration:none !important;
    transition:transform .2s ease, filter .2s ease;
}

.taller-mapa-button:hover{
    transform:translateY(-2px);
    filter:brightness(.92);
}

@media (max-width: 767px){
    .taller-mapa-frame{
        height:min(var(--tm-height, 450px), 360px);
    }

    .taller-mapa-button{
        width:100%;
        max-width:320px;
    }
}
