@media(max-width:768px){

.greetings-head .greetings-bgimg img {object-position: 76% center;}

}

/* 기본 (PC 화면) 텍스트 그림자: 은은하게 분리 */
.greetings-head .greetings-cont {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* 모바일 화면 (768px 이하) 전용 처리 */
@media (max-width: 768px) {
    /* 배경 이미지 위치 조정 */
    .greetings-head .greetings-bgimg img {
        object-position: 76% center;
    }
    
    /* 조형물 철골 구조와 흰색 글씨가 겹치므로 그림자를 더 진하게 변경 */
    .greetings-head .greetings-cont { 
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    }
}