.faculty_index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.faculty_box{
    background-color: #f3f3f3;
}

.faculty_inner {
    display: flex;
    padding: 1rem 1rem 0 1rem;
    gap: 1rem;
}

.fculty_img {
    flex-shrink: 0;
    width: 8.8rem;
    height: auto;
}

.fculty_profile{
    flex: 1;
}

.name{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.name.long{
    font-size: 1.25rem;
}

.name_sub{
   font-size: 1rem; 
}
.name_en{
    font-size: 0.9rem;
}
.category{
    width: 7rem;
    background: #222;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.profile_info p{
    line-height: 1.4;
}

.top_text{
    margin-bottom: 3rem !important;
    font-size: 1.1rem;
    font-weight: 500;
}

@media screen and (min-width: 1px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 479px) {
    .faculty_index{
        grid-template-columns: unset;
    }
}