/* ==========================================
   쿠팡 Full Auto Shortcode 스타일
   Version: 1.7.1
   ========================================== */

/* ==========================================
   1) 컨테이너 전체
   ========================================== */
.cfasc-container {
  padding: 1.5em;
  background: #ffffff;
  color: #333333;
  margin-bottom: 2em;
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 제목 */
.cfasc-title {
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 0 1em;
  line-height: 1.3;
  color: #222;
}

/* ==========================================
   2) 이미지 섹션
   ========================================== */
.cfasc-image-section {
  margin-bottom: 2em;
  text-align: center;
}

/* 이미지 래퍼 */
.cfasc-image-wrapper {
  max-width: 600px;
  margin: 0 auto 1.5em;
}

.cfasc-product-link {
  display: block;
  text-decoration: none;
}

.cfasc-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  position: relative;
}

.cfasc-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   3) Description 섹션
   ========================================== */
.cfasc-description {
  margin-bottom: 2em;
  line-height: 1.6;
}

.cfasc-description p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 1em;
}

.cfasc-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cfasc-features li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.5;
  color: #555;
}

.cfasc-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
  font-weight: bold;
}

/* ==========================================
   4) 장점·단점 박스
   ========================================== */
.cfasc-pros-cons {
  display: flex;
  gap: 2rem;
  margin-bottom: 2em;
}

.cfasc-box {
  flex: 1;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5em;
}

/* 장점 박스 */
.cfasc-box:nth-child(1) {
  background: #f0fdf4;
}

/* 단점 박스 */
.cfasc-box:nth-child(2) {
  background: #fef2f2;
}

.cfasc-box-title {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 1em;
  letter-spacing: 0.02em;
}

/* 장점 제목 */
.cfasc-box:nth-child(1) .cfasc-box-title {
  color: #16a34a;
}

/* 단점 제목 */
.cfasc-box:nth-child(2) .cfasc-box-title {
  color: #dc2626;
}

.cfasc-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cfasc-box-list li {
  margin-bottom: 0.75em;
  line-height: 1.5;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.cfasc-icon {
  margin-right: 0.5em;
  font-weight: bold;
  flex-shrink: 0;
}

/* 장점 아이콘 */
.cfasc-box:nth-child(1) .cfasc-icon {
  color: #16a34a;
}

/* 단점 아이콘 */
.cfasc-box:nth-child(2) .cfasc-icon {
  color: #dc2626;
}

/* ==========================================
   5) 스펙 테이블
   ========================================== */
.cfasc-specs-wrap {
  margin-bottom: 2em;
}

.cfasc-specs-title {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #222;
}

.cfasc-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

.cfasc-specs th,
.cfasc-specs td {
  border-bottom: 1px solid #e5e5e5;
  padding: 1em;
  text-align: left;
}

.cfasc-specs tbody tr:last-child th,
.cfasc-specs tbody tr:last-child td {
  border-bottom: none;
}

.cfasc-specs tbody th {
  width: 35%;
  font-weight: 500;
  color: #666;
}

.cfasc-specs tbody td {
  color: #333;
}

/* ==========================================
   6) 리뷰 섹션
   ========================================== */
.cfasc-review {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 2px solid #e5e5e5;
}

.cfasc-review-title {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #222;
}

.cfasc-review-content {
  line-height: 1.7;
  color: #444;
  font-size: 1.05em;
  font-style: italic;
  position: relative;
  padding: 0 1em;
}

.cfasc-review-content p {
  margin-bottom: 1em;
}

/* ==========================================
   7) 반응형 (모바일)
   ========================================== */
@media only screen and (max-width: 768px) {
  .cfasc-container {
    padding: 1em;
  }

  .cfasc-title {
    font-size: 1.5em;
  }

  .cfasc-pros-cons {
    flex-direction: column;
    gap: 1em;
  }

  .cfasc-box {
    width: 100%;
  }

  .cfasc-specs tbody th {
    width: 40%;
  }
}