body.page-news-detail {
  --news-detail-hero-image: url("../../image/newBanner.png");
  --news-detail-hero-height: var(--subpage-banner-image-min-height);
  --news-detail-bg: #fbfbfc;
  --news-detail-panel: #ffffff;
  --news-detail-line: rgba(15, 23, 42, 0.1);
  --news-detail-text: rgba(15, 23, 42, 0.84);
  --news-detail-muted: rgba(15, 23, 42, 0.58);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-news-detail main {
  flex: 1 0 auto;
  min-width: 0;
}

body.page-news-detail #siteFooter {
  margin-top: auto;
}

body.page-news-detail
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(
    .is-focus-active
  ) {
  background: transparent;
  border-bottom-color: transparent;
}

body.page-news-detail .news-hero {
  position: relative;
  min-height: var(--news-detail-hero-height);
  padding: 0;
  overflow: hidden;
}

body.page-news-detail .news-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 22, 54, 0.7) 0%,
      rgba(8, 24, 58, 0.48) 34%,
      rgba(7, 20, 47, 0.22) 60%,
      rgba(5, 14, 30, 0.3) 100%
    ),
    var(--news-detail-hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 56%;
}

body.page-news-detail .news-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 14, 34, 0.1) 0%,
      rgba(5, 14, 34, 0.24) 70%,
      rgba(5, 14, 34, 0.4) 100%
    ),
    linear-gradient(
      90deg,
      rgba(var(--brand-rgb), 0.18) 0%,
      rgba(var(--brand-rgb), 0.04) 36%,
      rgba(var(--brand-rgb), 0) 64%
    );
}

body.page-news-detail .news-hero-inner {
  position: relative;
  z-index: 1;
  min-height: var(--news-detail-hero-height);
  display: grid;
  place-items: center;
}

body.page-news-detail .news-hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  isolation: isolate;
  width: 100%;
  max-width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

body.page-news-detail .news-hero-copy > * {
  position: relative;
  z-index: 1;
}

body.page-news-detail .news-hero-copy h1 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--subpage-hero-title-size);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(4, 10, 18, 0.22);
}

body.page-news-detail .news-hero-copy p {
  margin: 0;
  max-width: 33em;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--subpage-hero-desc-size);
  line-height: var(--subpage-hero-desc-line);
  text-shadow: 0 10px 20px rgba(4, 10, 18, 0.18);
  text-wrap: balance;
}

body.page-news-detail .content-wrap {
  background: var(--news-detail-bg);
  box-shadow: none;
}

body.page-news-detail .news-detail-section {
  padding-top: 52px;
  padding-bottom: 86px;
}

body.page-news-detail .news-detail-section > .container {
  width: min(var(--container), calc(100% - 40px));
}

body.page-news-detail .news-detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  color: rgba(15, 23, 42, 0.46);
  font-size: 12px;
  line-height: 1.5;
}

body.page-news-detail .news-detail-breadcrumb a {
  color: rgba(15, 23, 42, 0.5);
  text-decoration: none;
  transition: color 150ms ease;
}

body.page-news-detail .news-detail-breadcrumb a:hover,
body.page-news-detail .news-detail-breadcrumb a:focus-visible {
  color: rgba(var(--brand-rgb), 0.84);
}

body.page-news-detail .news-detail-breadcrumb #newsDetailBreadcrumbCurrent {
  font-weight: 700;
}

body.page-news-detail .news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

body.page-news-detail .news-detail-head {
  margin: 0;
}

body.page-news-detail .news-detail-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.9);
  font-size: 30px;
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
}

body.page-news-detail .news-detail-date {
  margin: 12px 0 0;
  color: var(--news-detail-muted);
  font-size: 14px;
  line-height: 1.6;
}

body.page-news-detail .news-detail-divider {
  height: 1px;
  margin: 18px 0 26px;
  background: var(--news-detail-line);
}

body.page-news-detail .news-detail-body {
  color: var(--news-detail-text);
  font-size: 15px;
  line-height: 1.9;
}

body.page-news-detail .news-detail-body p {
  margin: 0;
}

body.page-news-detail .news-detail-body p + p {
  margin-top: 16px;
}

body.page-news-detail .news-detail-subtitle {
  margin: 30px 0 12px;
  color: rgba(15, 23, 42, 0.9);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

body.page-news-detail .news-detail-media {
  margin: 24px 0;
}

body.page-news-detail .news-detail-media img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.05);
}

body.page-news-detail .news-detail-statement {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  body.page-news-detail .news-detail-section {
    padding-top: 44px;
    padding-bottom: 66px;
  }

  body.page-news-detail .news-detail-title {
    font-size: 27px;
  }
}

@media (max-width: 720px) {
  body.page-news-detail .news-detail-section > .container {
    width: min(var(--container), calc(100% - 28px));
  }

  body.page-news-detail .news-hero-bg {
    background-position: 62% 54%;
  }

  body.page-news-detail .news-hero-copy {
    max-width: min(100%, 430px);
  }

  body.page-news-detail .news-hero-copy h1 {
    margin-bottom: 12px;
    font-size: var(--subpage-hero-title-size);
    line-height: 1.06;
    letter-spacing: -0.015em;
  }

  body.page-news-detail .news-hero-copy p {
    max-width: none;
    font-size: var(--subpage-hero-desc-size);
    line-height: var(--subpage-hero-desc-line);
  }

  body.page-news-detail .news-detail-section {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  body.page-news-detail .news-detail-breadcrumb {
    margin-bottom: 18px;
    gap: 5px;
    font-size: 12px;
  }

  body.page-news-detail .news-detail-title {
    font-size: 22px;
    line-height: 1.42;
  }

  body.page-news-detail .news-detail-date {
    margin-top: 8px;
    font-size: 13px;
  }

  body.page-news-detail .news-detail-divider {
    margin: 14px 0 20px;
  }

  body.page-news-detail .news-detail-body {
    font-size: 14px;
    line-height: 1.82;
  }

  body.page-news-detail .news-detail-subtitle {
    margin-top: 24px;
    font-size: 16px;
  }

  body.page-news-detail .news-detail-media {
    margin: 18px 0;
  }

}
