.diet-detail-container {
  max-width: 1520px;
  margin: 0 auto 160px;
  padding: 0 40px;
}

/* 다이어트 정보 상세 */
.diet-detail {
  padding: 40px;
}

/* 제목 영역 */
.diet-detail-header {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d9d9d9;
}

.diet-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.4;
}

.diet-meta {
  color: #666;
  font-size: 14px;
}

/* 내용 영역 */
.diet-content {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  min-height: 300px;
  text-align: center;
}

.diet-content img {
  max-width: 450px;
  height: auto;
  margin: 14px 0;
}

.diet-content p {
  margin-bottom: 14px;
}

/* 하단 네비게이션 */
.diet-detail-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #d9d9d9;
  text-align: center;
}

.btn-list {
  display: inline-block;
  padding: 14px 24px;
  background: var(--point-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.btn-list:hover {
  background: #d56a89;
}

/* Quill 에디터 스타일 */
.ql-editor {
  padding: 0;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.ql-editor ul,
.ql-editor ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ql-editor blockquote {
  border-left: 4px solid #4CAF50;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .diet-detail-container {
    margin: 120px auto;
    padding: 0 16px;
  }

  .diet-detail {
    padding: 24px 16px;
  }

  .diet-title {
    font-size: 24px;
  }

  .diet-content {
    font-size: 14px;
  }
} 