.fellow{
    margin-top: 186px;
}

.fellow__title{
    display: inline-block;
    position: relative;
}

.fellow__title::before{
    position: absolute;
    content: "";
    width: 337px;
    background-image: url(../img/fellow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 337 / 94;
    bottom: 0;
    right: 34px;
    transform: translateX(100%);
}

.fellow__content{
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.fellow__post{
font-weight: 700;
font-size: 16px;
line-height: 160%;
letter-spacing: normal;
display: block;

}

.fellow__name{
font-weight: 700;
font-size: 24px;
line-height: 160%;
letter-spacing: normal;
display: block;

}

.fellow__text{
font-weight: 400;
font-size: 16px;
line-height: 200%;
letter-spacing: normal;
margin-top: 24px;
}

.fellow__left{
    width: calc(48.15% - 40px * 1 / 2);


}

.fellow__right{
    width: calc(51.85% - 40px * 1 / 2);

}

@media (max-width: 768px) {
    .fellow{
        margin-top: 50px;
    }
    
    .fellow__title{
        display: block;
    }
    
    .fellow__title::before{
        position: absolute;
        content: "";
        width: 169px;
        aspect-ratio: 169 / 48;
        background: url(../img/sp/fellow_sp.svg) no-repeat center center / cover;
        bottom: -50%;
        right: 0;
        transform: translateX(-5px) translateY(10px);
    }
    
    .fellow__content{
        flex-direction: column-reverse;
        gap: 24px;
        margin-top: 35px;
    }
    
    .fellow__post{
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: normal;
    display: block;
    
    }
    
    .fellow__name{
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: normal;
    display: block;
    
    }
    
    .fellow__text{
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: .2px;
    margin-top: 12px;
    }
    
    .fellow__left{
        width: 100%;
    
    
    }
    
    .fellow__right{
        width: 81.16%;
        margin: 0 auto;
    
    }
}