.ma-6b83414a-wrapper {
    background-color: #FFFFFF;
    padding: 120px 20px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    overflow: hidden; /* Prevent horizontal scroll from slider */
}
.ma-6b83414a-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media (min-width: 1024px) {
    .ma-6b83414a-container {
        flex-direction: row;
        gap: 40px;
    }
    .ma-6b83414a-col-left {
        width: 33.333%;
        padding-right: 40px;
        flex-shrink: 0;
    }
    .ma-6b83414a-col-right {
        width: 66.666%;
        position: relative;
    }
}

/* Left Column */
.ma-6b83414a-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 60px;
}
.ma-6b83414a-active-page {
    font-weight: 600;
    color: #000;
}
.ma-6b83414a-line {
    width: 40px;
    height: 1px;
    background-color: #E5E7EB;
}
.ma-6b83414a-inactive-pages {
    color: #9CA3AF;
    letter-spacing: 2px;
}
.ma-6b83414a-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 60px;
}
.ma-6b83414a-subheading {
    font-size: 12px;
    font-weight: 500;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.ma-6b83414a-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    color: #111;
    margin: 0 0 40px 0;
}
@media (min-width: 768px) {
    .ma-6b83414a-heading {
        font-size: 48px;
    }
}
@media (min-width: 1024px) {
    .ma-6b83414a-heading {
        font-size: 60px;
    }
}
.ma-6b83414a-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #111;
    color: #FFF;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.ma-6b83414a-btn:hover {
    background-color: #333;
    color: #FFF;
}

/* Right Column - Slider */
.ma-6b83414a-slider-viewport {
    width: 100%;
    overflow: hidden;
}
.ma-6b83414a-cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* By default layout flex row for the track */
}

/* Cards */
.ma-6b83414a-card-wrap {
    flex: 0 0 100%;
    min-width: 100%;
}
@media (min-width: 768px) {
    .ma-6b83414a-card-wrap {
        /* On tablet/desktop, show 2 cards at once. 
           Formula: 50% - half the gap (12px) */
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

.ma-6b83414a-card {
    position: relative;
    min-height: 550px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
}
@media (min-width: 1024px) {
    .ma-6b83414a-card {
        min-height: 650px;
    }
}
.ma-6b83414a-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}
.ma-6b83414a-card-top, .ma-6b83414a-card-bottom {
    position: relative;
    z-index: 2;
}
.ma-6b83414a-card-title-top {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.ma-6b83414a-card-sub-top {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}
.ma-6b83414a-card-title-bot {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
}
.ma-6b83414a-card-desc-bot {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px 0;
}
.ma-6b83414a-glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.ma-6b83414a-glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
}
.ma-6b83414a-watermark {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 120px;
    font-weight: 600;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Nav Arrows */
.ma-6b83414a-nav-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}
.ma-6b83414a-nav-arrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}
.ma-6b83414a-nav-arrows button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ma-6b83414a-arrow-prev {
    background: transparent;
    border: 1px solid #E5E7EB;
    color: #111;
}
.ma-6b83414a-arrow-prev:not(:disabled):hover {
    border-color: #111;
}
.ma-6b83414a-arrow-next {
    background: #111;
    border: 1px solid #111;
    color: #FFF;
}
.ma-6b83414a-arrow-next:not(:disabled):hover {
    background: #333;
}