.program-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--size-xl);
}

.program{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--size-l);
}

.mo-img-wrapper{
    display: none;
}

.img-wrapper > img{
    width: 560px;
    object-fit: contain;
    border-radius: calc(0.6 * var(--size-xs));
}

.txt-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.txt-wrapper > div{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    letter-spacing: -0.02em;
    font-weight: 600;
    padding: calc(0.5 * var(--size-xs)) calc(1.25 * var(--size-xs));
    color: var(--color-wh);
    background-color: var(--color-bk);
    border-radius: var(--size-s);
    margin-bottom: var(--size-xs);
}

.txt-wrapper > h3{
    font-family: 'HakgyoansimAllimjang', sans-serif;
    font-size: var(--title-2);
    font-weight: 400;
    margin-bottom: calc(1.6 * var(--size-xs));
    word-break: keep-all;
    line-height: 135%;
}

.txt-wrapper > h3 > br{
    display: none;
}

.txt-wrapper > p{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--color-bk);
    word-break: keep-all;
    line-height: 150%;
    margin-bottom: var(--size-s);
}

.txt-wrapper > a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--size-xs);
    border-radius: calc(0.5 * var(--size-xs));
    transition: 0.1s;
}

.txt-wrapper > a > div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--size-xs);
}

.txt-wrapper > a > div > span{
    font-family: 'HakgyoansimAllimjang', sans-serif;
    font-size: var(--font-l);
    font-weight: 400;
}

.txt-wrapper > a > div > svg{
    width: 28px;
    height: 28px;
}

.program:nth-of-type(1) .txt-wrapper > div{
    background-color: #FFAB35;
}

.program:nth-of-type(1) .txt-wrapper > h3{
    color: #FFAB35;
    font-weight: 700;
}

.program:nth-of-type(1) .txt-wrapper > a{
    background-color: #FFF8EE;
    color: #FFAB35;
    border: 1px solid #FFAB35;
}


.program:nth-of-type(2) .txt-wrapper > div{
    background-color: #EA7F66;
}

.program:nth-of-type(2) .txt-wrapper > h3{
    color: #EA7F66;
    font-weight: 700;
}

.program:nth-of-type(2) .txt-wrapper > a{
    background-color: #FFF7F5;
    color: #EA7F66;
    border: 1px solid #EA7F66;
}


.program:nth-of-type(3) .txt-wrapper > div{
    background-color: #15A54E;
}

.program:nth-of-type(3) .txt-wrapper > h3{
    color: #15A54E;
    font-weight: 700;
}

.program:nth-of-type(3) .txt-wrapper > a{
    background-color: #F1FBF5;
    color: #15A54E;
    border: 1px solid #15A54E;
}


.program:nth-of-type(1) .txt-wrapper > a:hover, 
.program:nth-of-type(2) .txt-wrapper > a:hover,
.program:nth-of-type(3) .txt-wrapper > a:hover{
    opacity: 0.66;
}

@media screen and (max-width: 1560px) {
    .img-wrapper > img{
        max-width: 560px;
        width: 40vw;
    }
}

@media screen and (max-width: 1024px) {
.program{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--size-s);
}

.img-wrapper{
    display: flex;
}

.mo-img-wrapper{
    display: flex;
}

.pc-img-wrapper{
    display: none;
}

    .img-wrapper > img{
        max-width: 640px;
        width: 100%;
    }

    .program-wrapper{
        gap: var(--size-l);
    }
}

@media screen and (max-width: 576px) {
    .txt-wrapper > h3 > br{
        display: block;
    }
.txt-wrapper > a > div > svg{
    width: 22px;
    height: 22px;
}

.txt-wrapper > a > div > span{
    font-size: 16px;
}
.txt-wrapper > a{
    padding: 16px 12px;
}

.txt-wrapper > a > div{
    gap: 4px;
}

.txt-wrapper > p{
    margin-bottom: calc(1.5 * var(--size-xs));
}
}