.mp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.mp-pill {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease;
}
/* Default shadow if none is set via Elementor controls */
.mp-pill:not([style*="box-shadow"]) {
     box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.mp-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.mp-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.mp-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.mp-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
.mp-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.mp-trait-badge {
    border: 1px solid #333;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #333;
}
.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.2s;
}
.mp-btn:hover {
    color: #555;
    gap: 12px;
}
