@charset "utf-8";

/* 성지 업체 리스트 스타일 */
.place_list_wrap { max-width: 1280px; margin: 0 auto; padding: 20px 0; }
.place_top_bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.place_top_bar h2 { font-size: 22px; font-weight: bold; color: #333; }

/* 신규등록/수정 버튼 */
.place_btn_write { background: #21a3ff; color: #fff; padding: 10px 20px; border-radius: 6px; font-weight: bold; text-decoration: none; display: inline-block; }
.place_btn_write:hover { background: #008be3; color: #fff; }

/* 리스트 카드 그리드 형태 */
.place_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.place_card { background: #fff; border: 1px solid #e1e1e1; border-radius: 8px; padding: 20px; transition: all 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.place_card:hover { border-color: #21a3ff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(33,163,255,0.1); }
.place_card a { text-decoration: none; color: inherit; display: block; }
.place_badge { background: #eef6ff; color: #21a3ff; font-size: 12px; font-weight: bold; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px; }
.place_title { font-size: 18px; font-weight: bold; color: #111; margin-bottom: 8px; }
.place_addr { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.4; }
.place_tel { font-size: 13px; color: #888; border-top: 1px solid #f1f1f1; padding-top: 10px; }