.department .title {
    margin: 10rem 0 0 0;
    font-size: 28rem;
    border-bottom: 1px solid #a60000;
    color: #a60000;
    line-height: 60rem;
    position: relative;
    display: flex;
    align-items: center;
}

.department .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 150rem;
    height: 3px;
    background-color: #a60000;
    border-radius: 3px;
}

.department .title img {
    width: 32rem;
    height: 32rem;
    margin-right: 6rem;
}

.department {
    padding: 20rem;
}

.department .list {
    margin-top: 20rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem 10rem;
}

.department .list .item {
    font-size: 26rem;
    color: #565456;
    box-sizing: border-box;
    border: 1px solid #a60000;
    border-radius: 6rem;
    padding: 20rem 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.department .list .item .icon {
    width: 80rem;
    height: 80rem;
    margin-bottom: 10rem;
    object-fit: cover;
}