

/* ===============================
   CleanCall 버튼 시스템
================================= */

.cc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  padding:10px 18px;

  font-size:13px;
  font-weight:700;

  border-radius:8px;
  border:1px solid transparent;

  cursor:pointer;
  text-decoration:none;

  transition:all .15s ease;
  white-space:nowrap;
}

/* 큰 버튼 */
.cc-btn-lg{
  padding:14px 32px;
  font-size:14px;
  border-radius:12px;
}

/* 작은 버튼 (테이블용) */
.cc-btn-sm{
  padding:6px 12px;
  font-size:12px;
  border-radius:6px;
}


/* ===============================
   의미 기반
================================= */

.cc-btn-edit{
  background:#2563eb;
  color:#fff;
}
.cc-btn-edit:hover{
  background:#1e4fd8;
}

.cc-btn-delete{
  background:#ef4444;
  color:#fff;
}
.cc-btn-delete:hover{
  background:#dc2626;
}

.cc-btn-detail{
  background:#f3f4f6;
  color:#374151;
  border:1px solid #e5e7eb;
}
.cc-btn-detail:hover{
  background:#e5e7eb;
}

.cc-btn-accept{
  background:#111827;
  color:#fff;
}
.cc-btn-accept:hover{
  background:#1f2937;
}

.cc-btn-sub{
  background:#f9fafb;
  color:#374151;
  border:1px solid #e5e7eb;
}
.cc-btn-sub:hover{
  background:#f3f4f6;
}

.cc-btn-call{
  background:#2563eb;
  color:#fff;
}

.cc-btn-call:hover{
  background:#1e4fd8;
}

.cc-btn-lead{
  background:#111827;
  color:#fff;
}

.cc-btn-lead:hover{
  background:#1f2937;
}






/* 🔥 검색 영역 */
.cc-search-box {
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 20px;
}

.cc-search-box form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-search-box select {
  flex: 1;
  min-width: 140px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}

.cc-search-box button {
  padding: 10px 16px;
}


/* 🔥 카드 리스트 */
.cc-premium-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* 🔥 카드 */
.cc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #f1f5f9;
}

.cc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


/* 🔥 썸네일 */
.cc-card-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.cc-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 🔥 카드 본문 */
.cc-card-body {
  padding: 12px;
}

.cc-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cc-card-body p {
  font-size: 13px;
  color: #6b7280;
}


/* 🔥 버튼 */
.cc-btn-main {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}


/* 🔥 상담 CTA */
.cc-cta-box {
  text-align: center;
  padding: 30px;
  background: #f3f4f6;
  border-radius: 12px;
}

.cc-cta-box h3 {
  margin-bottom: 10px;
}

.cc-cta-box p {
  margin-bottom: 15px;
  color: #6b7280;
}

.cc-btn-primary {
  display: inline-block;
  padding: 10px 18px;
  background: #ef4444;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}


/* 🔥 모바일 */
@media (max-width: 768px) {

  .cc-premium-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-search-box form {
    flex-direction: column;
  }

  .cc-search-box select,
  .cc-search-box button {
    width: 100%;
  }

}