/* ===================================================
   life.css
   생활 안내(숙소·수유실 에티켓) + 숙소→바울관 셔틀 안내
   (style.css 뒤에 로드. 기존 파일은 수정하지 않습니다.)
=================================================== */

/* ═══════════════════════════════════
   생활 안내 (숙소·수유실 에티켓)
   ═══════════════════════════════════ */
.etq-section {
  max-width: 960px;
  border-top: 1px solid #F3F4F6;
}

.etq-group {
  margin-bottom: 48px;
}
.etq-group:last-child {
  margin-bottom: 0;
}

.etq-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 20px;
}
.etq-group-title i {
  font-size: 21px;
  color: #7C3AED;
}

.etq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}

.etq-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px 20px 20px;
}
.etq-card.full {
  grid-column: 1 / -1;
}

.etq-tag {
  position: absolute;
  top: -12px;
  left: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 13px;
  border-radius: 20px;
  color: #ffffff;
  background: #1E1B4B;
}

/* 카드 컬러 변형 (사이트 공통 팔레트: 네이비·퍼플·인디고·앰버) */
.etq-navy   { border-color: #1E1B4B; }
.etq-navy   .etq-tag { background: #1E1B4B; }
.etq-purple { border-color: #C4B5FD; }
.etq-purple .etq-tag { background: #7C3AED; }
.etq-indigo { border-color: #A5B4FC; }
.etq-indigo .etq-tag { background: #4F46E5; }
.etq-amber  { border-color: #FDE68A; }
.etq-amber  .etq-tag { background: #D97706; }

.etq-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.etq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.etq-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}
.etq-list .em {
  flex-shrink: 0;
}
.etq-list.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

/* 수유실 입장 안내 (하이라이트 카드) */
.etq-enter {
  grid-column: 1 / -1;
  background: #1E1B4B;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  color: #ffffff;
}
.etq-enter-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #FDE68A;
  margin-bottom: 10px;
}
.etq-enter h4 span {
  color: #FDE68A;
}
.etq-enter h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 14px;
  word-break: keep-all;
}
.etq-enter p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.etq-footer {
  margin-top: 18px;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #92400E;
  line-height: 1.8;
}

/* ── 숙소 → 바울관 셔틀 안내 ── */
.shuttle-sch-head {
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
}
.shuttle-sch-head strong {
  font-size: 16px;
  color: #1E1B4B;
}
.shuttle-sch-head span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: #7C3AED;
}

.shuttle-day {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.shuttle-day-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #1E1B4B;
  margin-bottom: 8px;
}
.shuttle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
}
.shuttle-row .sr-label {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.6;
}
.shuttle-time {
  flex-shrink: 0;
  min-width: 96px;
  text-align: center;
  background: #1E1B4B;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  border-radius: 8px;
  padding: 7px 20px;
}
.shuttle-time small {
  color: #FDE68A;
}
.shuttle-time small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  opacity: 0.92;
  margin-bottom: 1px;
}
.shuttle-time.big {
  padding: 9px 20px;
  font-size: 16px;
}
.shuttle-rules {
  background: #F5F3FF;
  border-left: 3px solid #7C3AED;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.8;
}
.shuttle-rules strong {
  display: block;
  font-size: 13.5px;
  color: #4F46E5;
  margin-bottom: 4px;
}

/* ── 생활 안내 반응형 ── */
@media (max-width: 600px) {
  .etq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .etq-list.cols {
    grid-template-columns: 1fr;
  }
  .etq-list li {
    font-size: 15px;
  }
  .etq-enter h4 {
    font-size: 18px;
  }
  .etq-enter p {
    font-size: 13.5px;
  }
  .etq-footer {
    font-size: 13.5px;
  }
  .shuttle-row .sr-label {
    font-size: 14px;
  }
  .shuttle-time {
    min-width: 84px;
    padding: 7px 14px;
  }
}
