.profile {
}
.profile .inner{
    display: flex;
    padding: 0;
}
.profile .profile-img{
    width: 35rem;
    height: 60rem;
    object-fit: cover;
    object-position: 15%;
}
.profile .right-area{
    width: 100%;
    height: auto;
    padding: 3rem 2rem 3rem 0;
}

.profile p{
    color: black;
    line-height: 1.5;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0 1rem 1rem 0;
}

@media screen and (max-width: 768px) {
    .profile {
    }
    .profile .inner{
        display: grid;
    }
    .profile .profile-img{
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: 15%;
        border-radius: 1rem 1rem 0 0;
        display: block;
        margin: auto;
        margin-bottom: 0;
        padding: 3rem 5rem;
        padding-top: 5rem;
        background-color: #ffffff;
    }
    .profile .right-area{
        width: 100%;
        height: auto;
        padding: 3rem 2rem;
        gap: 2rem;
        padding-bottom: 10rem;
    }

    .profile p{
        font-size: 2rem;
        color: black;
        line-height: 2;
        border-radius: 0 0 1rem 1rem;
    }
}