.nt-fc2fb740-wrapper {
    width: 100%;
    font-family: inherit;
    /* Removed overflow-x: auto completely */
    overflow: hidden;
}

/* DESKTOP LAYOUT (Default) - Strict Horizontal Flexbox */
.nt-fc2fb740-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* STRICTLY horizontal */
    width: 100%;
}

.nt-fc2fb740-column {
    display: flex;
    flex-direction: column;
    flex: 1 1 0; /* Equal width distribution within container */
    border-right: 1px dashed #ddd;
    padding-bottom: 20px;
}
.nt-fc2fb740-column:last-child {
    border-right: none;
}

.nt-fc2fb740-column-mobile-divider {
    display: none;
}

.nt-fc2fb740-header {
    background: #fafafa;
    border-top: 4px solid #333;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    text-align: center;
    padding: 20px 10px;
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    margin-right: -1px; /* Overlap borders */
}
.nt-fc2fb740-column:first-child .nt-fc2fb740-header {
    margin-left: 0;
}

.nt-fc2fb740-code {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.nt-fc2fb740-title {
    font-size: 16px;
    font-weight: bold;
    color: #111;
}

.nt-fc2fb740-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #999;
    font-size: 14px;
    z-index: 2;
    padding: 0 2px;
}

.nt-fc2fb740-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
}

.nt-fc2fb740-card {
    border: 1px solid #ddd;
    background: #fff;
    padding: 12px 15px;
    transition: all 0.2s ease;
    /* Prevent text breaking out of the card */
    word-break: break-word;
}
.nt-fc2fb740-card-highlight {
    border-color: #b58950;
    background: #fdfaf5;
}

.nt-fc2fb740-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.nt-fc2fb740-card-subtitle {
    font-size: 11px;
    color: #777;
}

/* TABLET / MOBILE LAYOUT - Vertical */
@media (max-width: 1024px) {
    .nt-fc2fb740-wrapper {
        overflow: visible; /* Reset overflow for vertical layout */
    }
    .nt-fc2fb740-container {
        flex-direction: column; /* Switch to vertical */
    }
    .nt-fc2fb740-column {
        border-right: none;
        padding-bottom: 0;
        width: 100%;
    }
    .nt-fc2fb740-header {
        margin-right: 0;
        border-right: 1px solid #ddd; /* Restore right border */
    }
    .nt-fc2fb740-arrow {
        /* Move arrow to bottom center pointing down */
        right: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(50%) rotate(90deg);
        background: transparent;
    }
    .nt-fc2fb740-column-mobile-divider {
        display: block;
        width: 100%;
        height: 20px;
        border-bottom: 1px dashed #ddd;
        margin-bottom: 20px;
    }
}