@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
.section .inner{
    width: 1440px;
    margin: 160px auto;
}
.section .inner h1{
    margin-bottom: 40px;
    font-size: 30px;
}
.section .inner .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
}
.section .inner .list .item{
    width: 321px;
    position: relative;
    overflow: hidden;
}
.section .inner .list .item img{
    width: 100%;
    height: 321px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    
}
.section .inner .list .item p{
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 2) 3%, rgba(0, 0, 0, 0.02) 100%);
}

