.piano-single{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
}

.piano-hero{
    text-align:center;
    margin-bottom:60px;
}

.piano-featured-image{
    width:100%;
    max-height:600px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:30px;
}

.piano-meta{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.piano-content{
    margin-bottom:60px;
}

#piano-map{
    height:450px;
    border-radius:12px;
    overflow:hidden;
}

.piano-map-section,
.piano-ratings,
.piano-comments,
.piano-contribute{
    margin-top:60px;
}

.mpm-nearby-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.mpm-nearby-card {
    position: relative;
    display:block;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.2s;
}

.mpm-nearby-card:hover {
    transform:translateY(-4px);
}

.mpm-nearby-card img {
    width:100%;
    height:180px;
    object-fit:cover;
}

.mpm-nearby-content {
    padding:16px;
}

.mpm-distance-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}
.mpm-get_me_there {
    margin: 2rem 0;
    text-align: center;
}

.mpm-piano-directions-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 14px 28px;

    background: #2563eb;
    color: #fff;

    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;

    border: none;
    border-radius: 8px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.mpm-piano-directions-button:hover {
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.mpm-piano-directions-button:active {
    transform: translateY(0);
}

.mpm-piano-directions-button:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}