/* Journey Hub 前台樣式 —— 首頁各國行程聚合 */
.jhub{--jhub-blue:#3367c3;--jhub-gold:#c59650;--jhub-ink:#14212b;--jhub-sub:#5b6b7b;max-width:1200px;margin:0 auto;padding:0 20px}
.jhub-country{margin:56px 0}
.jhub-country:first-child{margin-top:24px}
.jhub-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;border-bottom:2px solid #eef1f4;padding-bottom:14px;margin-bottom:26px}
.jhub-h2{font-size:30px;font-weight:900;color:var(--jhub-ink);margin:0;line-height:1.3;position:relative;padding-left:16px}
.jhub-h2::before{content:"";position:absolute;left:0;top:.12em;bottom:.12em;width:6px;border-radius:3px;background:var(--jhub-gold)}
.jhub-more{flex:0 0 auto;color:var(--jhub-blue);font-weight:700;font-size:16px;text-decoration:none;white-space:nowrap;transition:color .18s ease}
.jhub-more:hover{color:#26509e}
.jhub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.jhub-card{display:flex;flex-direction:column;background:#fff;border:1px solid #e7eaee;border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;box-shadow:0 2px 10px rgba(20,33,43,.05);transition:transform .2s ease,box-shadow .2s ease}
.jhub-card:hover{transform:translateY(-4px);box-shadow:0 12px 26px rgba(20,33,43,.13)}
.jhub-ph{aspect-ratio:16/10;background:#eef1f4;overflow:hidden}
.jhub-ph img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.jhub-card:hover .jhub-ph img{transform:scale(1.05)}
.jhub-body{display:flex;flex-direction:column;flex:1;padding:16px 18px 18px}
.jhub-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:10px}
.jhub-tags span{font-size:12px;font-weight:700;color:var(--jhub-blue);background:#eef4ff;border-radius:999px;padding:3px 10px}
.jhub-title{font-size:19px;font-weight:800;color:var(--jhub-ink);line-height:1.5;margin:0 0 14px}
.jhub-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto}
.jhub-price{color:#e0454b;font-weight:900;font-size:20px}
.jhub-price small{font-size:13px;font-weight:700;color:var(--jhub-sub)}
.jhub-btn{flex:0 0 auto;background:var(--jhub-blue);color:#fff;font-weight:700;font-size:14px;border-radius:10px;padding:9px 16px}
.jhub-empty{color:var(--jhub-sub);padding:8px 2px}
@media(max-width:900px){
  .jhub-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .jhub-h2{font-size:25px}
  .jhub-country{margin:44px 0}
}
@media(max-width:600px){
  .jhub-grid{grid-template-columns:1fr;gap:18px}
  .jhub-h2{font-size:22px}
  .jhub-head{flex-wrap:wrap;gap:6px;align-items:center}
}
