.responsive-image {
    position: relative;
    width: 100%;
    /*{#max-width: 600px;   !* 필요 시 제한 *!#}*/
    margin: 0 auto;
    margin-top:100px;
}

.responsive-image img {
    width: 100%;
    height: auto;
    display: block;
}
.overlay-text {

    position: absolute;
    inset: 0;   /* top, right, bottom, left = 0 */
    display: flex;
    align-items: center;
    /*{#justify-content: center;#}*/
    justify-content: left;

    text-align: center;
    color: #ffffff;
    font-weight: 600;

    /* 반응형 글자 크기 */
    font-size: clamp(14px, 4vw, 24px);

    /* 부드러운 확대 효과 */
    transition: transform 0.3s ease, font-size 0.3s ease;

    /* 가독성 */
    /*background: rgba(0, 0, 0, 0.25);*/
    /*padding: 4rem;*/
    padding-left:50px;


}