@charset "utf-8";
/*　−−−−−−−−− 全体共通 −−−−−−−−− */

/* 標題＋黃色底線 */
.title-with-line {
  position: relative;
  display: inline-block; /* 讓底線寬度跟文字差不多 */
  padding-bottom: 18px;   /* 底線和文字間距 */
  font-weight: bold;
}
.title-with-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;           /* 底線寬度，依需求調整 */
  height: 3px;           /* 底線粗細 */
  background-color: #f71faf; /* 黃色，可換成你想要的顏色 */
  border-radius: 2px;    /* 讓線條圓角，更柔和 */
}
.highlight-box {
    border: 1px solid #f7c11f;   /* 黃色邊框 */
    border-radius: 12px;         /* 圓角 */
    padding: 14px 20px;          /* 內距 */
    display: inline-block;       /* 讓框線只包住文字寬度 */
    font-weight: bold;           /* 粗體字 */
    color: #555;                 /* 字體顏色 */
  }