/* img type */
.image__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.image {
    width: 49%;
    height: 370px;
    color: #fff;
    padding: 200px 30px 30px 30px;
    border-radius: 10px;
    box-sizing: border-box;
}
.image.img1 {
    background: url(../img/img_bg01_01.jpg) no-repeat center;
    background-size: cover;
}
.image.img2 {
    background: url(../img/img_bg01_02.jpg) no-repeat center;
    background-size: cover;
}
.image__title {
    font-size: 32px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.image__desc {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.5;
    /* 2줄 효과 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-right: 30px;
}
.image__btn {
    font-size: 16px;
    color: #fff;
    background-color: #a7844f;
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 20px;
}
.image__btn.yellow {
    background-color: #687553;
}
.image__btn:hover {
    background: #fff;
    color: #000;
}

/* 반응형 */
@media(max-width: 960px){}
@media(max-width: 600px){
    .image__inner {
        flex-direction: column;
    }
    .image {
        width: 100%;
        padding: 205px 20px 20px 20px;
    }
    .image:first-child {
        margin-bottom: 20px;
    }
    .image__title {
        font-size: 24px;
    }
    .image__desc {
        font-size: 16px;
    }
}