/* section */
section:not(:first-of-type) {
    padding: 64px 0px;
}

/* banner */
section.banner .inner .banner-wrap {
    display: flex;
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    position: relative;
    margin: 32px 0px 16px 0px;
}

@media (min-width: 768px) {
    section.banner .inner .banner-wrap {
        padding: 40px;
        margin: 64px 0px 32px 0px;
    }
}

section.banner .inner .banner-wrap .txt-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

@media (min-width: 768px) {
    section.banner .inner .banner-wrap .txt-wrap {
        gap: 12px;
    }
}

section.banner .inner .banner-wrap .txt-wrap .banner-title {
    color: var(--White);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.22px;
}

section.banner .inner .banner-wrap .txt-wrap .banner-description {
    color: var(--White);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (min-width: 768px) {
    section.banner .inner .banner-wrap .txt-wrap .banner-title {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 38px;
        letter-spacing: -0.56px;
    }

    section.banner .inner .banner-wrap .txt-wrap .banner-description {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.2px;
    }
}

section.banner .inner .banner-wrap .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

section.banner .inner .banner-wrap .img-wrap::after {
    border-radius: 12px;
    content: "";
    position: absolute;
    inset: 0;
    /* top, right, bottom, left 모두 0 */
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.40) 0%,
            rgba(0, 0, 0, 0.40) 100%);
    pointer-events: none;
    /* 클릭 막지 않음 */
}

section.location .inner .summary {
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    section.location .inner .summary {
        margin-bottom: 64px;
    }
}

section.location .inner .summary .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

section.location .inner .summary .title-wrap .title {
    color: var(--Black);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.22px;
}

section.location .inner .summary .title-wrap .description {
    color: var(--Primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

@media (min-width: 768px) {
    section.location .inner .summary {
        display: flex;
        gap: 35px;
    }

    section.location .inner .summary .title-wrap,
    section.location .inner .summary .description-wrap {
        flex: 0 0 calc(50% - 48px);
    }
}

section.location .inner .summary .description-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

section.location .inner .summary .description-wrap .item {
    display: flex;
    position: relative;
}

section.location .inner .summary .description-wrap .item .category {
    flex: 0 0 80px;
    display: flex;
    gap: 4px;
    color: var(--Gray-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
}

section.location .inner .summary .description-wrap .item .category .img-wrap {
    width: 16px;
    height: 16px;
    margin: auto 0px;
}

section.location .inner .summary .description-wrap .item .category p {
    align-content: center;
}

section.location .inner .summary .description-wrap .item .info {
    width: max-content;
    color: var(--Black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
}