.img__section {
    padding: 120px 0;
}

.img__section>h2 {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.img__section>p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 70px;
    text-align: center;
    color: #666;
}

/* imageType */
.image__inner {
    display: flex;
    justify-content: space-between;
}

.image {
    width: 32%;
    position: relative;
    overflow: hidden;   /* 영역 밖 요소 숨기기 */
}
.image__box img {
    vertical-align: top; /* 수직 정렬 */
    height: 100%;
}
.image__desc {
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(10px);    /* 배경에 그래픽 효과를 설정 : 블러 효과 */
    padding: 23px 20px;
    bottom: -100px;
    transition: all 0.3s ease-in-out;    /* 움직임 속도 효과 : 전체를 0.3초 동안 천천-보통-천천 순으로 움직이게 하기 */
}
.image:hover .image__desc {
    bottom: 0;       /* 커서를 갖다 대었을 때 desc가 위로 올라오도록 설정 : 요소 안에 들어오기 때문에 오버플로우 히든 속성을 받지 않음 */
}
.image:hover .image__box img {
    transition: all 0.6s ease-in-out;    /* 움직임 속도 설정 */
    transform: scale(1.05);      /* 요소의 모양, 크기, 위치 등을 자유롭게 바꿀 수 있다. : 이미지를 확대 시키기 */
}
.image__desc .image__title {
    font-size: 24px;
    margin-bottom: 5px;
}

/* desc 색상 */
.img1 .image__desc {
    background: rgba(255, 171, 3, 0.25);
}
.img2 .image__desc {
    background: rgba(205, 94, 36, 0.1);
}
.img3 .image__desc {
    background: rgba(198, 140, 153, 0.1);
}
.img1 .image__desc .image__title {
    color: rgba(60, 32, 0);
}
.img2 .image__desc .image__title {
    color: rgba(96, 33, 6);
}
.img3 .image__desc .image__title {
    color: rgba(111, 33, 66);
}
.img1 .image__desc .more {
    color: rgba(60, 32, 0);
}
.img2 .image__desc .more {
    color: rgba(96, 33, 6);
}
.img3 .image__desc .more {
    color: rgba(111, 33, 66);
}


.image__desc .more {
    font-size: 16px;
}
.image__desc .more:hover {
    text-decoration: underline; /* 커서가 닿으면 밑줄 생기게 하기 */
}

@media (max-width: 800px) {
    .img__section>h2 {
        font-size: 40px;
    }
    .image__inner {
        flex-direction: column;
        padding: 0;
        align-items: center;
    }
    .image {
        width: 50%;
        margin-bottom: 50px;
    }
}
@media (max-width: 600px) {
    .img__section>p {
        font-size: 16px;
    }
    .image {
        width: 90%;
        height: 600px;
    }
}
