.mpg-grid-1f970fb3 {
    display: grid;
    gap: 24px;
}

@media (max-width: 767px) {
    .mpg-grid-1f970fb3 {
        grid-template-columns: 1fr !important;
    }
}

.mpg-card-1f970fb3 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    color: #333;
}

.mpg-card-1f970fb3:hover {
    transform: translateY(-5px);
}

.mpg-img-wrap-1f970fb3 {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.mpg-img-wrap-1f970fb3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpg-content-1f970fb3 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mpg-content-1f970fb3 h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: inherit;
}

.mpg-price-1f970fb3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.mpg-actions-1f970fb3 {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mpg-actions-1f970fb3 .button,
.mpg-actions-1f970fb3 a.button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: inherit;
    padding: 8px 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.9em;
    cursor: pointer;
}

.mpg-actions-1f970fb3 .button:hover,
.mpg-actions-1f970fb3 a.button:hover {
    background: rgba(255, 255, 255, 0.4);
}