CSS와 HTML 한국거 -고은혜작성중


<section class="ports-landing" aria-labelledby="ports-heading">
  <h1 id="ports-heading">기항지 안내</h1>

  <input type="radio" id="tab-kr" name="country" class="country-radio" checked>

  <div class="country-select">
    <label for="tab-kr" class="country-btn">한국</label>
  </div>

  <div id="panel-kr" class="card-grid">
    <a href="https://www.costakorea.co.kr/landing-page/2199" target="_blank" rel="noopener" class="card-item">
      <div class="card-thumb"></div>
      <div class="card-info">
        <h3 class="card-title">제주 서귀포 (Jeju)</h3>
        <p class="card-desc">아름다운 환상의 섬, 제주</p>
      </div>
    </a>
  </div>
</section>


<<<여기까지가 HTML


여기서부터 CSS>>>>
/* 컨테이너 */
.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/2199"] .card-thumb {
  /* 보내주신 제주도 섭지코지 이미지 링크입니다 */
  background-image: url('https://media.eoding.com/media/travelagent/769/imagecontent/%EC%A0%9C%EC%A3%BC%EB%8F%84_%EC%84%AD%EC%A7%80%EC%BD%94%EC%A7%80.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;
}
