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

@media (min-width: 768px) {
    section:not(:first-of-type) {
        padding: 96px 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;
    /* 클릭 막지 않음 */
}

/* download */
section.download .inner .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

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

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

@media (min-width: 768px) {
    section.download .inner .title-wrap .title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.56px;
    }
}

section.download .inner .title-wrap .description {
    color: var(--Gray-2);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

section.download .inner .download-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    section.download .inner .download-list {
        flex-direction: row;
        gap: 24px;
    }
}

section.download .inner .download-list .download-item {
    position: relative;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--Gray-3);
    flex: 1;
}

section.download .inner .download-list .download-item .download-title-wrap {
    margin-bottom: 49px;
}


section.download .inner .download-list .download-item .download-title-wrap .download-icon.img-wrap {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    margin-bottom: 16px;
    display: flex;
    padding: 8px;
    align-items: center;
    border-radius: 8px;
    background: var(--Gray-5);
}

section.download .inner .download-list .download-item .download-title-wrap .download-icon.img-wrap img {
    width: 100%;
    height: 100%;
}

section.download .inner .download-list .download-item .download-title-wrap .download-title {
    color: var(--Black);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}

section.download .inner .download-list .download-item .download-title-wrap .download-description {
    color: var(--Gray-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    height: 20px;
    letter-spacing: 0.21px;
    margin-bottom: 40px;
}

section.download .inner .download-list .download-item .btn-wrap {
    position: absolute;
    bottom: 24px;
    background-color: var(--Black);
    width: calc(100% - 80px);
    padding: 12px 16px;
    border-radius: 5px;
    text-align: center;
    color: var(--White);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

/* contact */
section.contact .inner .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

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

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

@media (min-width: 768px) {
    section.contact .inner .title-wrap .title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.56px;
    }
}

section.contact .inner .title-wrap .description {
    color: var(--Gray-2);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (min-width: 768px) {
    section.contact .inner .title-wrap .description {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.2px;
    }
}

section.contact .inner .contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    section.contact .inner .contact-list {
        flex-direction: row;
        gap: 24px;
    }
}

section.contact .inner .contact-list .contact-item {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--Gray-3);
}

@media (min-width: 768px) {
    section.contact .inner .contact-list .contact-item {
        width: 222px;
    }
}

section.contact .inner .contact-list .contact-item .img-wrap {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background-color: var(--Gray-5);
}

section.contact .inner .contact-list .contact-item .img-wrap img {
    width: 24px;
    height: 24px;
}

section.contact .inner .contact-list .contact-item .content-wrap .category {
    color: var(--Gray-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
}

section.contact .inner .contact-list .contact-item .content-wrap .description {
    color: var(--Black);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.21px;
}