<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ì¹´ë“œ ë‰´ìŠ¤ ì»´íŒ©íŠ¸ ìŠ¤íƒ€ì¼ */
.compact_card_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  margin-bottom:30px;
}

.compact_card_item {
  width: 20%;
  padding: 0 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.compact_card_inner {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.compact_card_inner {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.compact_card_inner:hover {
  border-color: #1e88e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-10px) scale(1.02);
}

.compact_card_bg {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
}

.compact_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.compact_card_highlight {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.compact_card_badge {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 2px;
  z-index: 2;
}

.compact_card_badge.best {
  background: #e53935;
  color: #fff;
}

.compact_card_badge.new {
  background: #1e88e5;
  color: #fff;
}

.compact_card_badge.kakao {
  background: #FEE500;
  color: #000;
}

.compact_card_content {
  padding: 8px 10px 0;
	padding-bottom:3px;
}

.compact_card_title {
  font-size: 13px;
  color: #1e88e5;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.compact_card_subtitle {
  font-size: 15px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.compact_card_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 5px;
  text-align: center;
}

.compact_card_desc p {
  margin: 0 0 3px 0;
}

.compact_card_info {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  padding: 5px 0;
  padding-top:8px;
  border-top: 1px solid #eee;
  margin-top: 5px;
  letter-spacing: -0.5px;
}

.compact_card_info i {
  color: #1e88e5;
  margin-right: 3px;
}

.compact_card_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  background-color: #f5f7fa;
  border-top: 1px solid #eee;
}

.compact_card_phone {
  font-size: 12px;
  color: #1e88e5;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.compact_card_phone i {
  margin-right: 3px;
}

.compact_card_location {
  font-size: 11px;
  color: #777;
  letter-spacing: -0.5px;
  border-left: 1px solid #ddd;
  padding-left: 5px;
  margin-left: 2px;
}

.compact_card_location i {
  margin-right: 2px;
}

/* í•˜ë‹¨ í‘¸í„° ì˜ì—­ ê´€ë&nbsp;¨ ìŠ¤íƒ€ì¼ ì&nbsp;œê±° */

/* ë°˜ì‘í˜• */
@media (max-width: 1200px) {
  .compact_card_item {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .compact_card_item {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .compact_card_item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .compact_card_item {
    width: 100%;
  }
}</pre></body></html>