.tour-card {
  display: inline-block;      /* 부모 p의 text-align으로 카드 박스 자체만 좌/중/우 이동 가능 */
  vertical-align: top;

  text-align: left;           /*  카드 안쪽 글자는 항상 왼쪽 정렬로 고정 */

  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 20px;
  margin: 20px 0;             /* 기본은 왼쪽 배치. 가운데 정렬은 에디터에서 버튼 눌렀을 때 부모 p가 해줌 */
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;

  font-size: 15px;
  line-height: 1.6;
  color: #444;
  font-family: inherit;
  position: relative;
}


/* 제목 */
.tour-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  color: #000;

  /* 오른쪽 공간 살짝 확보 (시각적으로 더보기랑 안 겹치게) */
  padding-right: 80px;
  box-sizing: border-box;
}

/* "더보기" 우상단 */
.tour-card__more {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1.4;
}
.tour-card__more a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

/* 제목 아래 점선 구분 라인 */
.tour-card__line {
  border-top: 1px dotted #dcdcdc !important;
  margin-top: 12px;
  margin-bottom: 16px;
  height: 0;
  line-height: 0;
  font-size: 0;
}

/* 메타 태그(지역/카테고리 등) 선택적으로 노출 */
.tour-card__meta {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 12px 0;

  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tour-card__meta span {
  background: #f5f5f5;
  border-radius: 3px;
  padding: 2px 6px;
}

/* 이미지 영역 */
.tour-card__img {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 16px;
  row-gap: 16px;
  margin: 0 0 16px 0;
  box-sizing: border-box;
}
.tour-card__img.one {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 16px;
  row-gap: 16px;
  margin: 0 0 16px 0;
}

/* 개별 썸네일 이미지 */
.tour-card__img img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 0;
  box-sizing: border-box;
}

/* 설명 텍스트 */
.tour-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  word-break: keep-all;
  box-sizing: border-box;
}

/* 반응형 */
@media (max-width: 640px) {
  .tour-card {
    padding: 16px;
    margin: 16px auto;
    max-width: 100%;
  }

  .tour-card__title {
    font-size: 16px;
    line-height: 1.4;
    padding-right: 70px;
  }

  .tour-card__more {
    top: 16px;
    right: 16px;
    font-size: 13px;
  }

  .tour-card__line {
    margin-top: 10px;
    margin-bottom: 14px;
  }

  .tour-card__img {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tour-card__img img {
    width: 260px;
    height: 150px;
    flex: 0 0 auto;
  }

  .tour-card__text {
    font-size: 14px;
    line-height: 1.6;
  }
}
