/* News detail editorial system */
.article-wrap {
  max-width: 920px !important;
  margin: 76px auto 96px !important;
  padding: 0 clamp(22px, 5vw, 54px) !important;
}

.article-title {
  max-width: 820px;
  margin: 0 0 18px !important;
  text-align: left !important;
  font-size: clamp(30px, 3.3vw, 46px) !important;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0;
  color: #1d2b33 !important;
}

.article-date {
  margin: 0 0 34px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6eef2;
  text-align: left !important;
  font-size: 14px;
  color: #7c93a0;
}

.article-summary {
  margin: 0 0 44px !important;
  padding: 24px 28px;
  border: 1px solid #e4eef3;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(248, 252, 253, 0.96), rgba(255, 255, 255, 0.96));
  color: #4c6472;
  font-size: 17px;
  line-height: 1.9;
}

.article-content {
  max-width: 760px;
  color: #415968;
  font-size: 17px;
  line-height: 2;
}

.article-content h2 {
  margin: 44px 0 14px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
  color: #1d2b33;
}

.article-content p {
  margin: 0 0 18px;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 54px !important;
  padding-top: 26px;
  border-top: 1px solid #e6eef2;
}

.article-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid #e4eef3;
  border-radius: 6px;
  background: #fff;
  color: #486170 !important;
  line-height: 1.6;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.article-nav a:hover {
  transform: translateY(-2px);
  border-color: #bfd9e8;
  box-shadow: 0 16px 32px rgba(45, 95, 122, 0.08);
}

.article-return {
  max-width: 760px;
  margin-top: 28px !important;
  text-align: left !important;
}

.article-return a,
.back-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #bad8e8;
  border-radius: 999px;
  background: #fff;
  color: #1f7fb8 !important;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.article-return a:hover,
.back-news:hover {
  border-color: #1f86c7;
  background: #1f86c7;
  color: #fff !important;
}

@media (max-width: 768px) {
  .article-wrap {
    margin: 52px auto 72px !important;
  }

  .article-summary {
    padding: 20px;
    font-size: 16px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }
}
