.profile {
    .profile__title {
        font-size: 32px;
        font-weight: 600;
    }

    .profile__sub-title {
        font-size: 25px;
        font-weight: 600;
    }

    .profile__content {
        font-size: 18px;
        font-weight: 600;
    }

    .profile__nip {
        font-size: 16px;
    }

    .profile__border-bottom {
        border-bottom: 2px solid var(--neutral-200);
    }
}

.profile-detail {
    .profile-detail__container {
        border-bottom: 2px solid var(--neutral-200);
    }

    .profile-detail__title {
        font-size: 22px;
        font-weight: 600;
    }

    .profile-detail__sub-title {
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px dashed var(--neutral-400);
        display: inline-block;
    }

    .profile-detail__image {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .profile-detail {
        .profile-detail__image {
            height: 230px;
            max-width: 180px;
            margin-bottom: 20px;
        }
    }
}