.device-wrap{
    padding:165px 0;
}
.device-top{
    margin-bottom: 103px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.device-top img{
    width: 275px;
}
.device-top strong{
    margin-top: 44px;
    font-weight: 700;
    color:#00154d;
    font-size: 33px;
}
.device-top p{
    margin-top: 35px;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.47em;
    color:#0e0e0e;
}
.device-top p em{
    font-weight: 500;
}
.device-list{
    display: flex;
    align-items: stretch;
    gap: 26px;
    flex-wrap: wrap;
}
.device-item{
    width: calc((100% - (26px * 3)) / 4);
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
}
.device-item>*{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding:20px;
}
.device-item .card{
    background-color: #fffcfa;
}
.device-item .card>*{
    position: relative;
    z-index: 2;
}
.device-item .card .title{
    font-size: 24px;
    color:#00154d;
    letter-spacing: -0.05em;
    font-weight: 700;
}
.device-item .card .detail{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left:20px;
    bottom:20px;
}
.device-item .card .detail img{
    width: 27px;
}
.device-item .card .detail span{
    font-size: 15px;
    color:#00154d;
    letter-spacing: -0.05em;
}
.device-item .card .bg{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
}
.device-item .card-over{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #cbbdb2;
    padding-bottom: 32px;
}
.device-item:hover .card-over{
    opacity: 1;
}
.device-item .card-over img{
    position: absolute;
    right:20px;
    top:20px;
    width: 105px;
}
.device-item .card-over .title{
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    padding-right: 110px;
}
.device-item .card-over .title span{
    color:#3b3b3b;
    letter-spacing: -0.05em;
    font-size: 14px;
    /* display: none; */
}
.device-item .card-over .title strong{
    font-size: 24px;
    color:#3b3b3b;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.device-item .card-over .keyword{
    margin:1.5em 0;
    font-size: 16px;
    line-height: 1.4375em;
    color:#00154d;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.device-item .card-over .desc{
    color:#202020;
    font-size: 15px;
    line-height: 1.4em;
    letter-spacing: -0.05em;
}
.device-item .card-over .info{
    font-size: 11px;
    line-height: 14px;
    color:#3b3b3b;
    letter-spacing: -0.02em;
    position: absolute;
    left:20px;
    bottom:20px;
    padding-right: 20px;
}

@media (max-width:1400px){
    .device-wrap{
        padding:100px 0;
    }
    .device-top{
        margin-bottom: 80px;
    }
    .device-top strong{
        font-size:28px;
        margin:1.17em 0 0;
    }
    .device-top p{
        font-size: 22px;
        margin-top: .85em;
    }
    .device-item{
        width: calc((100% - (26px * 2)) / 3);
    }
    .device-item .card .title,
    .device-item .card-over .title strong{
        font-size: 22px;
    }
}
@media (max-width:1024px){
    .device-top{
        margin-bottom: 60px;
    }
    .device-top strong{
        font-size:22px;
    }
    .device-top p{
        font-size: 18px;
    }
    .device-item .card .title,
    .device-item .card-over .title strong{
        font-size: 20px;
    }
    .device-item .card-over .title {
        padding-right: 0;
        padding-top: 20px;
    }
    .device-item .card-over img{
        position: absolute;
        left: 20px;
        top:20px;
    }
}
@media (max-width:768px){
    .device-wrap{
        padding:80px 0;
    }
    .device-top{
        margin-bottom: 40px;
    }
    .device-top p{
        font-size: 15px;
    }
    .device-top img{
        width: 220px;
    }
    .device-list{
        gap: 20px 12px;
    }
    .device-item{
        width: calc(50% - 6px);
    }
    .device-item>*{
        padding:20px 15px;
    }
    .device-item .card .title,
    .device-item .card-over .title strong{
        font-size: 16px;
    }
    .device-item .card-over .title {
        padding-top: 0;
        gap: 6px;
    }
    .device-item .card-over .title span{
        font-size: 11px;
    }
    .device-item .card-over img{
        display: none;
    }
    .device-item .card-over .keyword{
        font-size: 12px;
        margin:0.4em 0 0.6em;
        word-break: keep-all;
    }
    .device-item .card-over .keyword br{
        display: none;
    }
    .device-item .card-over .desc{
        font-size: 11px;
        line-height: 1.3em;
        word-break: keep-all;
        height: 2.6em;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
    }
    .device-item .card-over .desc br{
        display: none;
    }
    .device-item .card .detail span{
        font-size: 12px;
    }
    .device-item .card-over .info{
        font-size:9px;
        left: 15px;
        padding-right: 15px;
        word-break: keep-all;
        line-height: 1.2em;
    }
}
@media (max-width:480px){
   
}
