.container-profile .profile-modules {
    margin: 6.9rem auto;
}
.container-profile .profile-module {
    width: 100%;
    height: 13.6rem;
    border: 1px solid var(--text-color-default);
    position: relative;
    margin-bottom: 5.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.container-profile .profile-module.profile-logout {
    display: none;
}

.container-profile .profile-logout-link {
    font-size: var(--font-size-base);
    text-align: center;
    margin-top: -2.1rem;
}

.container-profile .profile-module .icon {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
}
.container-profile .profile-module .icon img {
    width: 7.8rem;
    height: auto;
}
.container-profile .profile-module span {
    font-size: 3.2rem;
    font-family: var(--font-family-heading);
    color: var(--text-color-default);
}

.container-inner-profile-header h1 {
    width: 100%;
    height: 3rem;
    font-size: 4rem !important;
    margin-bottom: 2rem;
}

.container-inner-profile-header p {
    line-height: 3rem !important;
}

/* for desktop */
@media (min-width: 576px) {
    .container-inner-profile-header h1 {
        width: auto;
        height: auto;
        font-size: initial;
        margin-bottom: 0;
    }

    .container-profile .profile-module {
        width: calc(50% - 1.8rem);
        margin-bottom: 7.9rem;
        border-radius: var(--border-radius-base);
    }

    .container-profile .profile-module.profile-logout {
        display: flex;
    }

    .container-profile .profile-logout-link {
        display: none;
    }

    .container-inner-profile-header p {
        font-size: initial !important;
        line-height: initial;
    }

    .container-inner-profile-header br {
        display: none;
    }
}
