/* 기본 링크 스타일 */ .entry-content a { background-color: #fffbcc; /* 연한 노랑 배경 */ color: #0073e6; /* 진한 파랑 글씨 */ padding: 2px 4px; /* 여백 */ border-radius: 3px; /* 둥근 모서리 */ text-decoration: none; /* 기본 밑줄 제거 */ font-weight: bold; /* 글자 굵게 */ } /* 마우스 오버 시 */ .entry-content a:hover { background-color: #fff2a8; /* 조금 더 진한 노랑 배경 */ color: #ff6600; /* 주황색 글씨로 변경 */ text-decoration: underline; /* 밑줄로 추가 강조 */ }