@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	center positioning
=======================================*/
/*=======================================
	fluid responsive sizing
/* PC */
/* TB */
/* SP */
/*=======================================
	browser-specific helpers
=======================================*/
/* Safari */
/* Firefox */
/*!
 * ERRAI CORPORATION - news-detail.css
 * Source: news/detail.html
 * Auto-extracted from inline <style>; manual additions below.
 */
/* ========================================================================
	 ERRAI CORPORATION - News Detail (Single Post)
	 Static format intended for future WordPress single-news.php implementation.
	 ======================================================================== */
:root {
  --void:	#04060c;
  --abyss: #070b16;
  --midnight:	#0b1124;
  --navy:	#111935;
  --steel: #1a2447;
  --glass: rgba(255,255,255,0.04);
  --glass-bd:	rgba(255,255,255,0.08);
  --glass-bd-2:	rgba(255,255,255,0.12);
  --gamma: #6ea8ff;
  --gamma-deep:	#3b6fd6;
  --photon:	#aac6ff;
  --plasma:	#b48bff;
  --gold:	#d9c08a;
  --ink: #f4f6fb;
  --ink-2: #c8cfdd;
  --ink-3: #8c95a8;
  --ink-4: #5b6478;
  --rule:	rgba(255,255,255,0.07);
  --rule-2:	rgba(255,255,255,0.12);
  --font-display: "Manrope", "Noto Sans JP", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-mono:	"JetBrains Mono", ui-monospace, monospace;
  --font-jp:	"Noto Sans JP", system-ui, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.32,1);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--abyss);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Ambient noise & glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(1200px 600px at 80% -10%, rgba(110, 168, 255, 0.08), transparent 70%), radial-gradient(900px 700px at -10% 60%, rgba(180, 139, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../img/noise.svg");
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

main, header, footer, section {
  position: relative;
  z-index: 3;
}

/* ========== PAGE HERO (compact for article) ========== */
.page-hero {
  min-height: 44vh;
  padding: 140px var(--gutter) 56px;
}

.page-hero__title {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.02em;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  padding: 24px var(--gutter) 0;
}

.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--ink-4);
  text-transform: uppercase;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ink-3);
  -webkit-transition: color 0.3s var(--ease);
  transition: color 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--gamma);
}

.breadcrumb .sep {
  color: var(--ink-4);
}

.breadcrumb .current {
  color: var(--ink);
  border-bottom: 1px solid var(--gamma);
  padding-bottom: 3px;
}

/* ========== Article ========== */
.article-wrap {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(72px, 9vw, 120px);
}

.article-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Header meta */
.article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule-2);
}

.article-meta__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}

.article-meta__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid var(--gamma);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gamma);
  text-transform: uppercase;
}

.article-meta__new {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 10px;
  background: var(--gamma);
  color: var(--abyss);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 2px;
}

.article-title {
  font-family: var(--font-jp);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* Featured image */
.article-featured {
  margin: 0 0 clamp(40px, 5vw, 56px);
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  overflow: hidden;
  background: var(--midnight);
}

.article-featured img {
  width: 100%;
  display: block;
}

/* Body */
.article-body {
  color: var(--ink-2);
}

.article-body > * + * {
  margin-top: 1.4em;
}

.article-body h2 {
  position: relative;
  font-family: var(--font-jp);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 6px 0 12px 18px;
  margin: clamp(40px, 5vw, 56px) 0 18px;
  border-bottom: 1px solid var(--rule-2);
}

.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 14px;
  width: 3px;
  background: var(--gamma);
  -webkit-box-shadow: 0 0 8px var(--gamma);
          box-shadow: 0 0 8px var(--gamma);
}

.article-body h3 {
  font-family: var(--font-jp);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: clamp(32px, 4vw, 40px) 0 12px;
  padding-left: 14px;
  border-left: 1px solid var(--gamma);
}

.article-body h4 {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--photon);
  margin: 28px 0 8px;
}

.article-body p {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 2.05;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.article-body a {
  color: var(--gamma);
  border-bottom: 1px solid rgba(110, 168, 255, 0.4);
  padding-bottom: 1px;
  -webkit-transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.article-body a:hover {
  color: var(--photon);
  border-color: var(--photon);
}

.article-body a[target=_blank]::after,
.article-body a.is-pdf::after {
  content: "↗";
  display: inline-block;
  margin-left: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.article-body a.is-pdf::after {
  content: "PDF";
  letter-spacing: 0.1em;
  padding: 1px 4px;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.6em;
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--ink-2);
}

.article-body ul li,
.article-body ol li {
  margin: 0.35em 0;
}

.article-body ul li::marker {
  color: var(--gamma);
}

.article-body ol li::marker {
  color: var(--gamma);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
}

.article-body blockquote {
  position: relative;
  margin: clamp(24px, 3vw, 32px) 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px) clamp(28px, 4vw, 44px);
  border-left: 2px solid var(--gamma);
  background: rgba(110, 168, 255, 0.04);
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

.article-body blockquote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--gamma);
  opacity: 0.55;
  line-height: 1;
}

.article-body figure {
  margin: clamp(28px, 4vw, 40px) 0;
}

.article-body figure img {
  width: 100%;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
}

.article-body figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  text-align: center;
}

.article-links {
  margin-top: clamp(40px, 5vw, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.article-links .btn-line {
  width: 148px;
  min-height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  text-align: center;
  line-height: 1.45;
}

.article-links .btn-line::after {
  content: none;
}

.article-links .is-external .news-item__ext-icon {
  display: none;
}

/* Post nav (prev/next) */
.post-nav {
  margin-top: clamp(56px, 7vw, 80px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--rule);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.post-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: min(40%, 220px);
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
  -webkit-transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.post-nav__item:hover {
  border-color: var(--gamma);
  background: rgba(110, 168, 255, 0.05);
}

.post-nav__item--next {
  text-align: center;
}

.post-nav__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--ink);
  text-transform: uppercase;
}

.post-nav__title {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Back link */
.back-link-wrap {
  margin-top: clamp(40px, 5vw, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink);
  -webkit-transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}

.back-link:hover {
  border-color: var(--gamma);
  color: var(--photon);
  background: rgba(110, 168, 255, 0.05);
}

.back-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
}

@media (max-width: 640px) {
  .post-nav {
    gap: 20px;
  }
  .post-nav__item {
    width: calc((100% - 20px) / 2);
    min-width: 0;
    padding: 13px 10px;
  }
  .post-nav__label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
}
/* ========== CTA ========== */
.section.cta {
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.section.cta .section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta__title {
  font-family: var(--font-jp);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.cta__title em {
  color: var(--gamma);
  font-style: normal;
}

.cta__lead {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 2;
}

.cta__actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--void);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand .ja {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.footer-brand .addr {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.footer-brand .addr a {
  color: var(--gamma);
  text-decoration: underline;
  text-decoration-color: rgba(110, 168, 255, 0.3);
  text-underline-offset: 3px;
  -webkit-transition: text-decoration-color 0.3s var(--ease);
  transition: text-decoration-color 0.3s var(--ease);
}

.footer-brand .addr a:hover {
  text-decoration-color: var(--gamma);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink-2);
  -webkit-transition: color 0.3s var(--ease);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--photon);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--ink-4);
}

.footer-bottom .legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: var(--ink-3);
  -webkit-transition: color 0.3s var(--ease);
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
  color: var(--ink);
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
/* Reveal */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--abyss);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gamma-deep);
}

::-moz-selection {
  background: var(--gamma);
  color: var(--abyss);
}

::selection {
  background: var(--gamma);
  color: var(--abyss);
}

/* === Footer heading: a11y fix (h4 -> p.footer-col__heading) === */
.footer-col__heading {
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
}

.wp-caption,
.wp-block-image figure {
  max-width: 100% !important;
  height: auto;
}

.wp-caption img,
.wp-block-image figure img {
  max-width: 100% !important;
  height: auto;
}
/* === Unified footer display === */
.site-footer {
  background: var(--void);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand .ja {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .15em;
  margin-bottom: 24px;
}

.footer-brand .addr {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink-3);
  letter-spacing: .04em;
}

.footer-brand .addr a {
  color: var(--gamma);
  text-decoration: underline;
  text-decoration-color: rgba(110,168,255,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color .3s var(--ease), color .3s var(--ease);
}

.footer-brand .addr a:hover {
  color: var(--photon);
  text-decoration-color: var(--gamma);
}

.footer-col h4,
.footer-col__heading {
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-col a {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}

.footer-col a:hover {
  color: var(--photon);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  color: var(--ink-4);
  text-transform: none;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom .legal a {
  color: var(--ink-3);
  transition: color .3s var(--ease);
}

.footer-bottom a:hover,
.footer-bottom .legal a:hover {
  color: var(--ink);
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/*# sourceMappingURL=news-detail.css.map */
