.case-title h2{
    margin-bottom: 32px;
    height: auto;
}
.case-list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.case-list__item{
    width: 48%;
    margin-bottom: 61px;
    display: flex;
}
.case-details{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.case-details:hover {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    opacity: 0.5;
}
.case-details div{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-end;
}
.case_number{
    display: flex;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    justify-content: center;
    align-items: center;
    border: solid 2px #000;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.96px;
    line-height: calc(28 / 16);
}
.case_name{
    display: flex;
    width: calc(100% - 190px);
    height: 40px;
    align-items: center;
    border: solid 2px #000;
    border-left: none;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.96px;
    line-height: calc(28 / 16);
}
.case_space{
    display: flex;
    width: 40px;
    height: 40px;
    margin: 0;
    border: solid 2px #000;
    border-left: none;
}
.case_category{
    display: flex;
    width: 110px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: solid 2px #000;
    border-left: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.84px;
    line-height: calc(25 / 14);
}
.case-link{
    display: flex;
    width: 100%;
    border: solid 2px;
    border-top: none;
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}
.case-link a{
    display: flex;
    width: 100%;
}
.case-image{
    display: flex;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag-list {
    color: #6F6F6F;
    font-size: 12px;
    margin-top: 12px;
}
.tag-list span {
    margin-right: 12px;
}
.case-info{
    text-align: left;
    margin-bottom: 64px;
    font-size: 14px;
    line-height: calc(25 / 14);
}
@media (max-width: 1160px ){
    .case-info {
        margin-bottom: 54px;
    }
    .case-list__item{
        width: 100%;
        margin-bottom: 54px;
    }
    .case_name{
        width: calc(100% - 40px);
    }
    .case_space {
        border-left: solid 2px #000;
        border-top: none;
    }
    .case_category {
        width: calc(100% - 40px);
        justify-content: flex-start;
        padding-left: 20px;
        font-weight: bold;
        border-top: none;
    }
}
@media (max-width: 374px ){
    .case_name,.case_category{
        font-size: 14px;
        line-height: 1.5rem;
    }
}
