@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: rgb(248, 248, 248);
    line-height: 1;
}

body > div.title {
    width: 90%;
    height: 300px;
    margin: 0 auto;

    text-align: left;
    padding: 20px 0;
}

.title .maintitle {
    position: relative;
    padding: 0 0 0 40px;
    margin: 80px 0 0 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 40px;
    font-weight: 800;
}

svg {
    position: absolute;
    left: 0%;
    top: 50%;
    width: 35px;
    text-align: center;
    transform: translateY(-50%);
}

svg:nth-child(1) {  
    transform-origin: 50%;
    animation: spin 4s ease infinite normal;
}

@keyframes spin {
    0% {
        transform: rotateY(0deg) translateY(-50%);
    }
    100% {
        transform: rotateY(360deg) translateY(-50%);
    }
}

.title .maintitle h1 {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 40px;
    font-weight: 800;
    transform: translateY(-2px);
}

.title p.subtitle {
    margin: 0;
    padding: 15px 0 0 15px;

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.home {
    display: block;
    padding: 15px;
    margin: 20px auto;
    width: 90%;
    box-sizing: border-box;
    border-radius: 20px;
    background: url("../images/icons/arrow-right-s-line.svg") no-repeat right 15px center, #fff;
    color: #141414;
    font-size: 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 40px;
    text-decoration: none;
}

.list {
    width: 100%;
}

.list ul {
    padding: 0;
    width: 100%;
}


.list ul li {
    width: 90%;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 20px;
    background: #fff;
    list-style: none;
}

.list ul li a {
    text-decoration: none;
}

.list ul li a .img-canvas{
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 200px;
}

.list ul li a .img-canvas img{
    position: absolute;
    max-width: 600px;
    width: 100%;
    min-width: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.list ul li a .title{
    position: relative;
    padding: 20px;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
}

.list ul li a .title p {
    margin: 0;
    font-size: 15px;
    color: #141414;
}

.list ul li a .title h1 {
    padding: 15px 0 0 0;
    margin: 0;
    color: #141414;
    font-size: px;
    line-height: 35px;
}

.list ul li a .title p.date {
    position: absolute;
    left: 20px;
    bottom: 20px;
}