.mc-5d28b4c0-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.mc-5d28b4c0-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.mc-5d28b4c0-slide {
    flex: 0 0 100%;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mc-5d28b4c0-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.mc-5d28b4c0-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.mc-5d28b4c0-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mc-5d28b4c0-slide-active .mc-5d28b4c0-content {
    opacity: 1;
}

.mc-5d28b4c0-heading {
    color: #fff;
    margin-bottom: 15px;
}
.mc-5d28b4c0-subheading {
    color: #eee;
    margin-bottom: 25px;
}
.mc-5d28b4c0-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.mc-5d28b4c0-cta:hover {
    background: #005177;
    color: #fff;
}
.mc-5d28b4c0-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 3;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
}

.mc-5d28b4c0-nav svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    transition: all 0.3s ease;
}

.mc-5d28b4c0-prev { left: 20px; }
.mc-5d28b4c0-next { right: 20px; }