/* ================================
   service.css
   서비스안내 페이지 전용 스타일
================================ */

body{
  margin:0;
  font-family:'SUIT', sans-serif;
  background:#f5f7fb;
  color:#222;
  overflow-x:hidden;
}

.service-page{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:70px 24px 90px;
  box-sizing:border-box;
}

.service-wrap{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-bottom:42px;
}

.service-card{
  background:white;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  border:1px solid #edf0f5;
  box-sizing:border-box;
  transition:0.25s;
  min-height:285px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card h2{
  margin:0 0 14px;
  font-size:27px;
  font-weight:900;
  line-height:1.25;
  color:#111;
  letter-spacing:-1px;
}

.service-card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#555;
  word-break:keep-all;
}

.service-link-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin-top:22px;
  padding:14px 18px;

  background:#4bb3ff;
  color:white;
  text-decoration:none;

  border-radius:14px;
  font-size:16px;
  font-weight:800;

  transition:0.2s;
  box-sizing:border-box;
  box-shadow:0 6px 18px rgba(75,179,255,0.22);
  border:0;
  cursor:pointer;
}

.service-link-btn:hover{
  background:#2497ee;
  transform:translateY(-2px);
}

.service-link-btn:active{
  transform:scale(0.98);
}

.comic-section{
  width:100%;
  margin:0 auto 34px;
  text-align:center;
}

.comic-section img{
  width:100%;
  max-width:1000px;
  display:block;
  margin:0 auto;
  border-radius:26px;
  box-shadow:0 12px 32px rgba(0,0,0,0.12);
}

.service-buttons{
  width:100%;
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.service-buttons a{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  border-radius:16px;
  text-decoration:none;
  box-sizing:border-box;
  transition:0.25s;
}

.service-buttons a:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 22px rgba(0,0,0,0.16);
}

.btn-icon{
  font-size:34px;
  flex-shrink:0;
}

.btn-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.btn-title{
  font-size:24px;
  font-weight:900;
  line-height:1.2;
}

.btn-desc{
  margin-top:5px;
  font-size:15px;
  font-weight:800;
  line-height:1.3;
}

.call-btn{
  background:#3478f6;
  color:white;
}

.kakao-btn{
  background:#ffe94a;
  color:#111;
}

.board-btn{
  background:#5ec66f;
  color:white;
}

@media(max-width:1100px){
  .service-wrap{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .service-page{
    padding:42px 18px 70px;
  }

  .service-wrap{
    grid-template-columns:1fr;
    gap:18px;
  }

  .service-card{
    min-height:auto;
    border-radius:22px;
    padding:24px 20px;
  }

  .service-card h2{
    font-size:25px;
  }

  .service-card p{
    font-size:15px;
  }

  .comic-section img{
    border-radius:20px;
  }

  .service-buttons{
    grid-template-columns:1fr;
    max-width:100%;
  }

  .service-buttons a{
    padding:18px 22px;
    border-radius:15px;
  }

  .btn-icon{
    font-size:30px;
  }

  .btn-title{
    font-size:22px;
  }

  .btn-desc{
    font-size:14px;
  }
}
.service-price {
  margin-top: 14px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.service-price strong {
  color: #0078ff;
  font-size: 20px;
  font-weight: 800;
}
.service-link-btn {
  white-space: nowrap;
}
.service-price strong {
    display: inline;
    white-space: nowrap;
}