/* 텍스트 박스 스타일 */
.text-box100 {
    position: relative !important;
    border: 5px solid #2E9AFE !important;
    border-radius: 10px !important;
    padding: 20px !important;
    margin: 20px 0 !important;
  }
  
  /* "꼭 봐야 할 다른 정보"와 체크 마크 스타일 */
  .text-box100::before {
    content: "❇️ 꼭 봐야 할 다른 정보" !important; /* 텍스트 변경 */
    position: absolute !important;
    top: -25px !important;
    left: 10px !important; /* 위치 조정 */
    background-color: white !important;
    padding: 0 10px !important;
    font-size: 1.2em !important; /* 폰트 크기 조정 */
    font-weight: bold !important; /* 볼드 처리 유지 */
    color: #0056b3 !important; /* 더 찐한 파란색으로 변경 */
    border: 3.8px solid #2E9AFE !important; /* 테두리 추가 */
    border-radius: 5px !important; /* 둥근 모서리 */
  }

/* 워드프레스 하이퍼링크 스타일 */
.my-related-posts-content a {
  word-break: break-all !important;
  color: #3E5898 !important;
  background-repeat: no-repeat !important;
  background-size: 100% 0.2em !important;
  background-position: 0 100% !important;
  background-image: linear-gradient(to right, #00BCD4, #5C6BC0) !important;
  transition: all .25s ease-in !important;
  padding: 2px 0 !important;
}

.my-related-posts-content a:hover {
  background-size: 100% 100% !important;
  color: #fff !important;
  border-radius: 10px !important;
}