/* ==========================================
   NEBO SETTINGS PAGE
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Outfit,sans-serif;
}

body{
    background:#F6F0E3;
    color:#0B1F3A;
    padding-bottom:40px;
}

/* Header */

.settings-header{
    position:sticky;
    top:0;
    z-index:1000;
    height:74px;
    background:#0B1F3A;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.settings-header h2{
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.back-btn{
    width:46px;
    height:46px;
    border:none;
    background:#0B1F3A;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.header-space{
    width:46px;
}

/* Sections */

.settings-section{
    padding:26px 18px 0;
}

.section-title{
    font-size:15px;
    font-weight:700;
    color:#666;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

/* Card */

.settings-card{
    background:#fff;
    border:1px solid #E5E7EB;
}

/* Items */

.settings-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px;
    text-decoration:none;
    color:#0B1F3A;
    border-bottom:1px solid #ECECEC;
    transition:.2s;
}

.settings-item:last-child{
    border-bottom:none;
}

.settings-item:hover{
    background:#FAFAFA;
}

.settings-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.settings-left i:first-child{
    width:46px;
    height:46px;
    background:#0B1F3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.settings-left h4{
    font-size:18px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:4px;
}

.settings-left p{
    font-size:14px;
    color:#6B7280;
    line-height:1.5;
}

.settings-item>.fa-chevron-right{
    color:#9CA3AF;
    font-size:16px;
}

/* Fix nested Account link */

.settings-left .section-title{
    display:block;
    margin:0 0 4px;
    font-size:18px;
    font-weight:700;
    text-transform:none;
    letter-spacing:0;
    color:#0B1F3A;
    text-decoration:none;
}

.settings-left .section-title:hover{
    text-decoration:none;
}

/* Mobile */

@media(max-width:768px){

.settings-header{
    height:68px;
}

.settings-header h2{
    font-size:22px;
}

.settings-item{
    padding:18px;
}

.settings-left{
    gap:14px;
}

.settings-left i:first-child{
    width:42px;
    height:42px;
    font-size:16px;
}

.settings-left h4,
.settings-left .section-title{
    font-size:17px;
}

.settings-left p{
    font-size:13px;
}

}