.mp1-section {
    background: #fff;
}

.mp1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D71920, #7A0E12);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(215, 25, 32, .18);
}

.mp1-badge i {
    color: #F4B400;
    font-size: 16px;
}

.mp1-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
}

.mp1-desc {
    max-width: 850px;
    margin: 0 auto;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

@media(max-width:768px) {

    .mp1-title {
        font-size: 28px;
    }

    .mp1-desc {
        font-size: 15px;
    }

    .mp1-badge {
        font-size: 13px;
        padding: 8px 18px;
    }
}

.mp1-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.mp1-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(215, 25, 32, .18);
}

.mp1-card a {
    text-decoration: none;
}

.mp1-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.mp1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.mp1-card:hover img {
    transform: scale(1.08);
}

.mp1-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent);
}

.mp1-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d71920;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: .3s;
}

.mp1-card:hover .mp1-icon {
    background: #f4b400;
    color: #111;
    transform: rotate(-45deg);
}

.mp1-body {
    padding: 22px;
}

.mp1-body h3 {
    color: #222;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.mp1-body p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:768px) {

    .mp1-title {
        font-size: 30px;
    }

    .mp1-image {
        height: 220px;
    }

}