*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Yu Gothic","Segoe UI",sans-serif;
}

body{
    background:#f7f7f7;
    color:#111;
}

.container{
    width:1200px;
    max-width:95%;
    margin:60px auto;
    display:grid;
    grid-template-columns:420px 1fr;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.profile-image{
    background:#fafafa;
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border-right:1px solid #e5e5e5;
}

.profile-image img{
    width:100%;
    max-width:260px;
}

.image-text{
    margin-top:40px;
    text-align:center;
}

.image-text h2{
    font-size:34px;
    letter-spacing:4px;
    margin-bottom:10px;
}

.image-text p{
    color:#888;
    letter-spacing:3px;
    font-size:14px;
}

.profile{
    padding:70px;
}

.title{
    font-size:13px;
    color:#666;
    letter-spacing:5px;
}

h1{
    margin-top:20px;
    font-size:56px;
    font-weight:700;
}

.roman{
    margin-top:10px;
    letter-spacing:6px;
    color:#777;
}

.line{
    width:70px;
    height:3px;
    background:#111;
    margin:35px 0 45px;
}

.info{
    display:flex;
    flex-direction:column;
}

.item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 0;
    border-bottom:1px solid #e6e6e6;
}

.item span{
    font-weight:700;
    font-size:18px;
}

.item p{
    color:#555;
    font-size:18px;
}

.research{
    margin-top:60px;
    background:#111;
    color:#fff;
    padding:45px;
}

.research h2{
    letter-spacing:4px;
    margin-bottom:25px;
    font-size:26px;
}

.research p{
    line-height:2;
    font-size:17px;
    color:#ddd;
}

@media(max-width:900px){

    .container{
        grid-template-columns:1fr;
    }

    .profile-image{
        border-right:none;
        border-bottom:1px solid #eee;
    }

    .profile{
        padding:40px 30px;
    }

    h1{
        font-size:42px;
    }

    .item{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}