.mslf-ficha {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 24px);
    font-family: system-ui, -apple-system, sans-serif;
}

.mslf-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mslf-back-nav {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 15px;
}

.mslf-btn-back {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px 8px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mslf-btn-back:hover,
.mslf-btn-back:focus {
    color: #0ea5e9;
    transform: translateX(-4px);
    outline: none;
}

.mslf-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 40px 40px 10px 40px;
}

@media (max-width: 768px) {
    .mslf-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

.mslf-col-left {
    display: flex;
    flex-direction: column;
}

.mslf-col-right {
    display: flex;
    flex-direction: column;
}

/* Badge */
.mslf-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.mslf-badge--farmacia {
    background: #e0f2f1;
    color: #0d9488;
}
.mslf-badge--clinica {
    background: #e0e7ff;
    color: #4338ca;
}

/* Title */
.mslf-ficha .mslf-title {
    margin: 0 0 32px !important;
    font-size: clamp(1.8rem, 4vw, 2.4rem) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    color: #0f172a !important;
    letter-spacing: -0.02em !important;
}

/* Info blocks */
.mslf-block {
    margin-bottom: 24px;
}
.mslf-ficha h2.mslf-label {
    margin: 0 0 6px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #86868b !important;
    line-height: 1.2 !important;
    padding: 0 !important;
}
.mslf-ficha p.mslf-value {
    margin: 0 !important;
    font-size: 1.05rem !important;
    color: #1d1d1f !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    padding: 0 !important;
}

/* Links */
.mslf-ficha a.mslf-link {
    color: #0071e3 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    word-break: break-word;
    transition: color 0.2s ease;
    box-shadow: none !important;
}
.mslf-ficha a.mslf-link:hover {
    color: #005bb5 !important;
}

/* Rating Area */
.mslf-rating-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #475569;
}
.mslf-stars {
    color: #fbbf24;
}

/* Map Box */
.mslf-col-aligned-map {
    justify-content: center;
}

.mslf-map-box {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f7;
    border: 1px solid rgba(0,0,0,0.04);
}

.mslf-comollegar-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.mslf-btn-comollegar {
    background: #0071e3;
    color: #fff !important;
    padding: 14px 44px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.mslf-btn-comollegar:hover {
    background: #005bb5;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.35);
    text-decoration: none;
}

/* Back Link */
.mslf-back {
    margin: 20px 40px 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
@media (max-width: 768px) {
    .mslf-back {
        margin: 20px 30px 30px;
    }
}
.mslf-back-link {
    font-weight: 600;
    font-size: 1.1rem;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mslf-back-link:hover {
    color: #0f172a;
}
