.account-page__top-bar {
    display: flex;
    align-items: center;
    gap: 2rem;

    background-color: var(--azamara-blue);
    color: var(--pure-white);
    height: 5rem;
    padding: 1.5rem;
}

.account-page__top-bar svg {
    fill: #fff;
    font-size: 20px;
}

.account-page__top-bar .user-greeting {
    font-weight: 420;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 0.025em;
}

.account-page__top-bar .text-group {

}

.account-page__top-bar .text-group .header {
    font-weight: 420;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.account-page__top-bar .text-group .value {
    font-weight: 450;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
}

.account-page {
    display: flex;
    flex-direction: column;
}

.account-page .navigation-container {
    width: 100%;
    border-bottom: 1px solid var(--light-dusk);
}

.account-page .content-container {
    flex-grow: 1;
    min-height: 100vh;
    padding: 24px;

    background-color: var(--white-sand);
    box-shadow: inset 0px 0px 10px rgb(0 0 0 / 10%);
}

.account-page .no-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    padding: 24px;
}

.account-page .no-content h2 {
    display: flex;
    align-items: center;

    background-color: var(--light-dusk);

    border-radius: .1em;
    border: 4px solid var(--sunset);

    padding: 12px 24px;
}

.account-page .no-content h2 > span {
    margin-left: 12px;
}

.azamara-circle.card {
    display: flex;
    flex-direction: row;

    color: #fff;
}

.azamara-circle.card .header {
   font-weight: 420;
    text-transform: uppercase;
}

/* -sm breakpoint */
@media (min-width: 576px) {

}

/* -md breakpoint */
@media (min-width: 768px) {
    .account-page__top-bar .user-greeting {
        font-size: 30px;
    }

    .account-page .content-container {
        padding: 48px;
    }
}

/* -lg breakpoint*/
@media (min-width: 992px) {

}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .account-page {
        flex-direction: row;
    }

    .account-page .navigation-container {
        width: 384px;
        min-width: 384px;
        border-bottom: none;
    }

    .account-page .navigation-container {
        border-right: 1px solid var(--light-dusk);
    }
}

/* -xxl breakpoint */
@media (min-width: 1400px) {

}