/* ----------- USER ACCOUNT --------------- */
.profile-header {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    padding: 8px 12px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #714B26;
    margin-bottom: 20px;
    color: rgb(38 38 38 / 1);
}

.profile-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.profile-card {
    letter-spacing: 0.4px;
    padding: 16px 12px;
    border: 1px solid #f7f7f7;
}

.profile-card h4 {
    margin: 0;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: inherit;
}
.profile-card .para {
    color: #4b5563;
    margin-bottom: 4px;
}

.profile-card a {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: #714B26;
    font-weight: 500;
    letter-spacing: inherit;
}

.profile-card a:hover,
.profile-card button:hover, .save:hover  {
    color: #C5A868;
}

.profile-card button, .save {
    margin: 0;
    padding: 0;
    background: none;
    outline: none;
    border: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: #714B26;
    font-weight: 500;
    letter-spacing: inherit;
}





/* --------- ACCOUNT INFORMATION ------------ */

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 32px;
    margin-bottom: 32px;
}


/* ---------- ACCOUNT  */

.loadMoreButton{
    color: #555;
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    display: inline-block;
    line-height: 35px;
    border: 2px solid #222;
    padding: 0 17px;
    border-radius: 0;
    background-color: transparent;
    text-transform: uppercase;
}
.loadMoreButton:hover{    
    background: #222;
    color: #FFF;
    outline: none;
    text-decoration: none;
    transition: all 300ms ease-in-out 0s;
}