*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    letter-spacing: normal !important;
    word-break: keep-all;
    overflow-wrap: break-word;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

a {
    text-decoration: none;
    outline: none
}

em {
    font-style: normal;
}


body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

ul[role='list'],
ol[role='list'],
li {
    list-style: none;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

textarea:not([rows]) {
    min-height: 10em;
}


:target {
    scroll-margin-block: 5ex;
}

.demo-4-template-content {
    display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.demo-4-template-title-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 0px;
    padding-bottom: 30px;

}

.demo-4-title-inner {
    letter-spacing: normal !important;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
}

.demo-4-title-inner h2 {
    font-size: 36px;
}

.demo-4-subheader {
    font-size: 16px;
    line-height: 1.5;
    margin-block-end: 10px;
    white-space: pre-wrap;
    color: #4e5aba;
    font-weight: 700;
}

.demo-4-text {
    font-size: 18px;
    line-height: 1.56;
    margin-top: 20px;
    color: #344054;
}


.demo-4-template-block-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-right: 32px;
    margin-bottom: 96px;
}


.demo-4-template-list-inner {
    padding-left: 144px;
    padding-right: 144px;
    padding-bottom: 58px;
}

.demo-4-block-col {
    display: flex;
}

.demo-4-list-col {
    display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    line-height: normal;
    width: calc(50% - 24px);
    margin-left: 0px;
}

.demo-4-block-child {
    display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-flex: 1;
    flex-grow: 1;
    line-height: normal;
    font-size: 1rem;
}

.demo-4-blocks {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: auto;
    margin-bottom: auto;
    gap: 48px;
}

.demo-4-block {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: auto;
    word-break: keep-all;
    margin-bottom: auto;
}

.demo-4-list {
    --column-count: 2;
}

.demo-4-list__inner {
    display: grid;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.demo-4-item__icon {
    display: block;
    margin-block-end: 16px;
}

.item-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eaecf0;
    background-color: #eaecf0;
    color: #344054;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.demo-4-item__title {
    font-size: 20px;
    font-weight: 700;

}

.demo-4-item__description {
    margin-block-start: 8px;
    font-size: 16px;
    color: #667085;

}


/* 오른쪽 이미지 영역 스타일 */

.demo-4-img-wrap {
    display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    line-height: normal;
    width: calc(50% - 24px);
    margin-left: 48px;
}

.demo-4-img-wrap img {
    border-radius: 30px;
}

@media (min-width: 768px) {

    .demo-4-title-inner {
        max-width: 1280px;
        margin-inline: auto;
        padding-inline: 32px;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }


}

@media (max-width: 1023px) {

    /* .demo-4-template-content {
        flex-direction: column;
    } */

    .demo-4-template-block-wrap {
        padding-right: 0px;
    }

    .demo-4-block-col {
        flex-direction: column;
        -webkit-box-align: stretch;
        align-items: stretch;
    }

    .demo-4-list-col {
        width: 100%;
        margin-left: 0px;
        padding: 20px 0;
    }

    .demo-4-img-wrap {
        width: 100%;
        margin-left: 0px;

    }

    .demo-4-img-wrap img {
        border-radius: 0px;
        margin-top: 48px;
    }

}