/* 컨테이너 */
.ports-landing {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Pretendard, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #111;
}
.ports-landing h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* 라디오 및 탭 버튼 스타일 */
.country-radio {
  display: none;
}
.country-select {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.country-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #111827; /* 중국 버튼 활성화 상태 */
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

/* 🌟 레이아웃 설정: 1개여도 일본 카드와 크기 통일 (1/4 너비) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* 카드 스타일 */
.card-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* 썸네일 설정 */
.card-thumb {
  width: 100%;
  height: 160px;
  background-color: #f2f4f7;
  background-size: cover;
  background-position: center;
}

/* ─────────────── 중국(상하이) 이미지 반영 ─────────────── */
a[href*="/landing-page/2198"] .card-thumb {
  /* 보내주신 상하이 이미지 링크로 교체되었습니다 */
  background-image: url('https://media.eoding.com/media/travelagent/769/imagecontent/%EC%83%81%ED%95%B4.jpg'); 
}

/* 카드 내용 */
.card-info {
  padding: 12px 14px;
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.card-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}