@charset "UTF-8";

/* -------------------------------------------------
  File name : single.css
---------------------------------------------------- */

/* -----------------------------------------
  news
----------------------------------------- */
#single .news {
  padding: 100px 20px 80px;
}
#single .news-inner {
  max-width: 820px;
  margin: 0 auto;
}
#single .news-article {
  position: relative;
}
#single .news-header {
  margin-bottom: 2.5em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--line);
}
#single .news-date {
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.6em;
}
#single .news-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.03em;
}
#single .news-thumbnail {
  margin: 2.5em 0;
  overflow: hidden;
  border-radius: 0.5em;
}
#single .news-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
#single .news-thumbnail:hover img {
  transform: scale(1.03);
}
#single .news-content {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
#single .news-content p {
  margin-bottom: 1.8em;
}
#single .news-content h2 {
  font-size: 1.4em;
  margin: 2.5em 0 1.2em;
  padding-left: 0.6em;
  border-left: 3px solid var(--accent);
  font-weight: 500;
}
#single .news-content h3 {
  font-size: 1.2em;
  margin: 2em 0 1em;
  font-weight: 500;
}
#single .news-content ul {
  margin: 1.2em 0 1.8em 1.2em;
}
#single .news-content li {
  margin-bottom: 0.6em;
}
#single .news-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
#single .news-content a:hover {
  border-color: var(--accent);
}
#single .news-content blockquote {
  margin: 2em 0;
  padding: 1.5em 1.8em;
  background: #f4f6f8;
  border-left: 3px solid var(--accent);
  font-size: 0.95em;
  line-height: 1.8;
}
#single .news-content img {
  border-radius: 0.4em;
}

@media screen and (max-width: 768px) {
  #single .news {
    padding: 70px 20px;
  }
  #single .news-title {
    font-size: 1.6rem;
  }
  #single .news-content {
    line-height: 1.9;
  }
}



















