/*     1750845 : HTML 편집기      */
#sub_view #container .contents_wrap {padding-bottom:0}

.sub_page.service_flower_wrap {
  background: linear-gradient(180deg, #fff 0%, #FAFAF7 100%);
  padding: 0 0 clamp(48px, 6vw, 96px) 0;
}
.service_flower_wrap .inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 헤더 */
.service_head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.service_head .eyebrow {
  font-size: .9rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: #a64c6b;
}
.service_head h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 800;
  color: #222;
  margin: .2em 0 .4em;
}
.service_head .lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #555;
  line-height: 1.9;
}

/* 섹션 공통 */
.service_flower_wrap section {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.service_flower_wrap section:last-child {margin-bottom:0;}
.service_flower_wrap section h2 {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}
.service_flower_wrap section p {
  color: #444;
  line-height: 1.8;
}

/* key points */
.key_points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: #555;
  margin-top: 1rem;
}
.key_points li b {
  color: #111;
}

/* 서비스 카드 */
.service_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.srv_card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.srv_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}
.srv_card .ico {
  width: 52px; height: 52px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(166, 76, 107, .08);
  display: grid; place-items: center;
}
.srv_card .ico img { width: 45px; height: 45px; }
.srv_card h3 { font-weight: 700; margin-bottom: 6px; color: #111; }

/* 플라워 갤러리 */
.flower_gallery .img_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.5vw, 18px);
  margin-top: 16px;
}
.flower_gallery figure {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  transition: transform .3s ease;
}
.flower_gallery figure:hover {
  transform: translateY(-4px);
}
.flower_gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* 주문 안내 */
.order_steps {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  color: #555;
list-style:none;
padding:0;
}
.order_steps li b {
  color: #a64c6b;
  margin-right: 6px;
}

/* CTA */
.flower_cta {
  text-align: center;
}
.flower_cta h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #111;
}
.flower_cta p {
  color: #444;
  margin-bottom: 14px;
}
.flower_cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #a64c6b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flower_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(166, 76, 107, .25);
}

/* 반응형 */
@media (max-width: 1023px) {
  .key_points,
  .order_steps { grid-template-columns: 1fr; }
  .service_grid { grid-template-columns: repeat(2, 1fr); }
  .flower_gallery .img_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .service_grid { grid-template-columns: 1fr; }
  .flower_gallery .img_grid { grid-template-columns: 1fr; }
  .flower_cta .btn { width: 100%; max-width: 420px; }
}


