/* components.css */
.btn {
    /* 你先前在 homepage.css、taxonomy-destination.css 寫好的按鈕樣式 */
    background: #2E3A59;
    color: #F5F5F5;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 23px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(46,58,89,0.10);
    display: inline-block;
    min-width: 180px;
    text-align: center;
  }
  .btn-wrap {
    /* 桌機以上置中 */
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }
  @media (max-width: 767px) {
    .btn-wrap { display: block; width: 100%; margin-top: 20px; }
    .btn {
      width: 100%;
      display: block;
      font-size: 20px;
      padding: 16px 0;
      box-sizing: border-box;
    }
  }
  /* components.css */
.btn {
    /* 你先前在 homepage.css、taxonomy-destination.css 寫好的按鈕樣式 */
    background: #2E3A59;
    color: #F5F5F5 !important;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 23px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(46,58,89,0.10);
    display: inline-block;
    min-width: 180px;
    text-align: center;
  }
  .btn-wrap {
    /* 桌機以上置中 */
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

.btn:hover {
  background: #CEAE4E; 
  text-decoration: none !important; 
  color: #F5F5F5 !important;
}