:root {
  --color-primary: #8B6E00;
}

/* News Detail Content */
.news-detail-content {
  width: 100%;
}

/* title */
.news-detail-title__time {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  color: #919191;
  margin-bottom: 8px;
}

.news-detail-title__text {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 135%;
  margin: 0;
}

.news-detail-line {
  width: 100%;
  height: 1px;
  background: #E0E0E0;
  margin: 40px 0;
}

.news-detail-line-2 {
  width: 100%;
  height: 1px;
  background: #E0E0E0;
  margin: 80px 0;
}

/* content */


.news-detail-content h1, .cke_editable h1 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 32px;
  padding-left: 78px;
  position: relative;
}
.news-detail-content h1::before, .cke_editable h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-image: url('../img/default/icons/icon-title.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.news-detail-content h2, .cke_editable h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: fit-content;
  margin-top: 40px;
}

/* Heading Level 3 */
.news-detail-content h3, .cke_editable h3 {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: #353535;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 16px;
  width: fit-content;
  margin-top: 40px;
}

/* Text paragraphs */
.news-detail-content p, .cke_editable p {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 8px;
}

.news-detail-content p strong, .cke_editable p strong {
  font-weight: 700;
}

/* Text groups (divs containing paragraphs) */
.news-detail-content section > div, .cke_editable section > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Links */
.news-detail-content a, .cke_editable a {
  color: var(--color-primary);
  text-decoration: underline;
  margin-bottom: 8px;
}

/* Lists */
.news-detail-content ul, .cke_editable ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  margin-top: 40px;
}

.news-detail-content li::marker, .cke_editable li::marker {
  color: var(--color-primary);
}

/* end ckeditor */

.news-detail-button-wrapper {
  display: flex;
  justify-content: center;
}
.news-detail-button-wrapper .btn_primary {
  width: 275px;
}

@media screen and (max-width: 890px) {
  .news-detail-title__text {
    font-size: 32px;
  }
  .news-detail-line {
    margin-top: 32px;
    margin-bottom: 56px;
  }

  .news-detail-line-2 {
    margin: 56px 0;
  }

  .news-detail-content h1 {
    font-size: 18px;
    padding-left: 60px;
    margin-top: 24px;
  }
  .news-detail-content h1::before {
    width: 48px;
    height: 48px;
  }
  .news-detail-content h2 {
    margin-top: 24px;
  }
  .news-detail-content h3 {
    font-size: 16px;
    margin-top: 24px;
  }
  .news-detail-content p {
    font-size: 14px;
  }
  .news-detail-content ul {
    margin-top: 24px;
  }
  .news-detail-content ul li {
    line-height: 200%;
  }
}
