.msb-desk6-wrapper {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px
}

/* Base CSS for MSB Landing Content Desktop 6 (Desktop First) */
.msb-landing-content-desktop6 {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.msb-landing-content-desktop6 .msb-desk6-image-col {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
}

.msb-landing-content-desktop6 .msb-desk6-image-col img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.msb-landing-content-desktop6 .msb-desk6-text-col {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    gap: 12px;
}

.msb-landing-content-desktop6 .msb-desk6-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.msb-landing-content-desktop6 .msb-desk6-desc {
    margin: 0;
    line-height: 24px;
    max-height: 144px;
    overflow-y: auto;
}

/* Tablet & Mobile Layout */
@media (max-width: 1024px) {
    .msb-desk6-wrapper {
        padding: 0 16px;
    }

    .msb-landing-content-desktop6 {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .msb-landing-content-desktop6 .msb-desk6-image-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .msb-landing-content-desktop6 .msb-desk6-text-col {
        flex: 0 0 100%;
    }
}
