/* .hero-feature 내부의 모든 텍스트를 어두운 오버레이 배경으로 흰색으로 만듭니다. */ .hero-feature { position: relative; color: #ffffff !important; } .hero-feature *, .hero-feature h1, .hero-feature h2, .hero-feature h3, .hero-feature p, .hero-feature a, .hero-feature span { color: #ffffff !important; } /* 선택 사항: 가독성을 위해 반투명한 어두운 오버레이를 추가합니다. */ .hero-feature::before { content: &#039;&#039;; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); /* 여기서 불투명도를 조정합니다. */ z-index: 0; } .hero-feature * { position: relative; z-index: 1; }