@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.content{
    width : 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 40px 120px 40px;
    font-family: 'SUIT-Regular', ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}
.greeting-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.greeting-container.show {
    opacity: 1;
    transform: translateY(0);
}
.greeting-text-container {
    flex: 1;
    text-align: left;
}
.greeting-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.greeting-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
.greeting-signature {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}
.greeting-img-container {
    margin-left: 30px;
}
.greeting-img {
    width: 350px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}
.sub-visual{
    margin-bottom:50px;
    margin-left: 40px;
    margin-top: 72px;
    width: 100%;
    position: relative;
    padding-left: 47px;
    padding-right: auto;
    font-weight: 500;
    border-left: 5px solid;
    box-sizing: border-box;
}
.inner > .sub-text{
    font-weight: bold;
    font-size: 20px;
    color: rgb(22, 28, 86);
}
.inner > .main-text{
    font-size: 70px;
    margin: 0px;
    font-weight: bold;
    color: #161616;
}
.inner > .sub-text2{
    font-size: 14px;
}
/* 반응형 스타일 */
@media screen and (max-width: 1024px) {
    .content {
        padding: 0 20px 80px;
    }
    .greeting-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .greeting-img-container {
        margin-left: 0;
        margin-top: 20px;
    }
    .greeting-img {
        width: 280px;
    }
    .sub-visual {
        margin-left: 30px;
        font-size: 20px;
    }
    .inner > .main-text {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .greeting-title {
        font-size: 1.6rem;
    }
    .greeting-text {
        font-size: 0.9rem;
    }
    .greeting-img {
        width: 250px;
    }
    .sub-visual {
        margin-left: 0px;
        font-size: 18px;
        padding-left: 30px;
    }
    .inner > .main-text {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .content{
        margin-bottom: 0px;
    }
    .greeting-title {
        font-size: 1.4rem;
    }
    .greeting-text {
        font-size: 0.85rem;
    }
    .greeting-img {
        width: 200px;
    }
    .sub-visual {
        margin-left: 0px;
        font-size: 16px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .inner > .main-text {
        font-size: 35px;
    }
    .inner > .sub-text{
        font-size: 15px;
    }
    .inner > .sub-text2{
        font-size: 10px;
    }
}
