/* --- MSB Landing Career Item Dropdown Styles --- */
.msb-landing-career-item-dropdown {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(222, 229, 239, 0.5);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.msb-landing-career-item-dropdown:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.msb-landing-career-item-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    cursor: pointer;
    user-select: none;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.msb-landing-career-item-dropdown__header:hover {
    background-color: rgba(254, 239, 231, 0.2);
}

.msb-landing-career-item-dropdown__title {
    font-size: 20px;
    font-weight: 700;
    color: #002D62;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.msb-landing-career-item-dropdown__header:hover .msb-landing-career-item-dropdown__title {
    color: #ff5f00;
}

.msb-landing-career-item-dropdown__icon-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #002D62;
    transition: color 0.3s ease;
}

.msb-landing-career-item-dropdown__header:hover .msb-landing-career-item-dropdown__icon-toggle {
    color: #ff5f00;
}

.msb-landing-career-item-dropdown__chevron {
    transition: transform 0.3s ease;
}

.msb-landing-career-item-dropdown.is-active .msb-landing-career-item-dropdown__chevron {
    transform: rotate(180deg);
}

.msb-landing-career-item-dropdown__inner {
    padding: 0 12px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Styles for the sub-element: msb_landing_career_dropdown_item */
.msb-landing-career-dropdown-item {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 6px 0;
    margin: 0;
    width: auto;
    cursor: pointer;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.msb-landing-career-dropdown-item__icon-wrap {
    background: transparent !important;
    border: none !important;
    width: auto;
    min-width: unset;
    padding: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.msb-landing-career-dropdown-item__custom-icon,
.msb-landing-career-dropdown-item__default-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    display: block;
}

.msb-landing-career-dropdown-item__content {
    padding: 0;
    display: flex;
    align-items: center;
}

.msb-landing-career-dropdown-item__title {
    font-size: 16px;
    font-weight: 500;
    color: #5A6B82;
    margin: 0;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.msb-landing-career-dropdown-item:hover .msb-landing-career-dropdown-item__title {
    color: #ff5f00;
}

/* Highlight current active JD page in orange */
.msb-landing-career-dropdown-item.is-current .msb-landing-career-dropdown-item__title {
    color: #ff5f00;
    font-weight: 700;
}

/* Responsive Overrides */
@media (max-width: 767px) {
    .msb-landing-career-item-dropdown__header {
        padding: 12px;
    }
    
    .msb-landing-career-item-dropdown__title {
        font-size: 17px;
    }
    
    .msb-landing-career-item-dropdown__inner {
        padding: 0 12px 12px 12px;
    }
}
