@charset "utf-8";

/* ══════════════════════════════════════
   DJT2026 — 탐방 latest 스킨 (visit_bxslider)
   ══════════════════════════════════════ */

.djt-latest-visit {
  font-family: 'Pretendard', -apple-system, 'Malgun Gothic', sans-serif;
  font-size: 14px;
  min-width: 0;
}

/* ── 헤더 ── */
.djt-latest-visit .djt-latest-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--djt-blue, #1D5FBF);
}
.djt-latest-visit .djt-latest-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--djt-navy, #0B2A4A);
}
.djt-latest-visit .djt-latest-more {
  font-size: 13px;
  color: var(--djt-blue, #1D5FBF);
  text-decoration: none;
  font-weight: 500;
}
.djt-latest-visit .djt-latest-more:hover {
  color: var(--djt-navy, #0B2A4A);
}

/* ── 2열 카드 그리드 ── */
.djt-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.djt-visit-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.djt-visit-thumb {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f2f5;
}
.djt-visit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.djt-visit-card:hover .djt-visit-thumb img {
  transform: scale(1.04);
}

.djt-visit-cap {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-top: 9px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.djt-visit-card:hover .djt-visit-cap {
  color: var(--djt-blue, #1D5FBF);
}

.djt-visit-empty {
  font-size: 13px;
  color: #9aa4b2;
  margin: 0;
}
