/* Hospital news single article page */

.hospital-news-single {
  --ink: #14171f;
  --ink-2: #2b3240;
  --muted: #6b7280;
  --line: #e4e1da;
  --line-2: #efede6;
  --paper: #fbf9f4;
  --paper-2: #f5f1e8;
  --navy: #0a2540;
  --blue: #0052cc;
  --blue-soft: #e8eef7;
  --gold: #b89d5a;
  --cat-notice: #8b2635;
  --cat-event: #0052cc;
  --cat-clinic: #b89d5a;
  --cat-staff: #d08744;
  --cat-general: #687a6b;

  font-family:
    'Pretendard',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: clip;
}

.hospital-news-single,
.hospital-news-single *,
.hospital-news-single *::before,
.hospital-news-single *::after {
  box-sizing: border-box;
}

.hospital-news-single a {
  color: inherit;
  text-decoration: none;
}

.hospital-news-single em,
.hospital-news-single cite,
.hospital-news-single i {
  font-style: normal;
}

.hospital-news-single.paper-texture {
  position: relative;
}

.hospital-news-single.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59, 45, 26, 0.018) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 0;
}

.hospital-news-single.paper-texture > * {
  position: relative;
  z-index: 1;
}

.hospital-news-single .container {
  max-width: 1400px;
  margin: 0 auto;
}

.hospital-news-single .article-meta {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: rgba(251, 249, 244, 0.6);
}

.hospital-news-single .article-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.hospital-news-single .article-meta .breadcrumb a:hover {
  color: var(--navy);
}

.hospital-news-single .article-meta-sep {
  color: var(--line);
  margin: 0 10px;
}

.hospital-news-single .article-meta-current {
  color: var(--ink-2);
}

.hospital-news-single .article-meta-credit {
  color: var(--muted);
  font-size: 13px;
}

.hospital-news-single .news-hero {
  padding: 80px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hospital-news-single .news-hero-eyebrow {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hospital-news-single .news-hero-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--blue-soft);
  color: var(--blue);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hospital-news-single[data-cat='notice'] .news-hero-eyebrow {
  color: var(--cat-notice);
}

.hospital-news-single[data-cat='event'] .news-hero-eyebrow {
  color: var(--cat-event);
}

.hospital-news-single[data-cat='clinic'] .news-hero-eyebrow {
  color: var(--cat-clinic);
}

.hospital-news-single[data-cat='staff'] .news-hero-eyebrow {
  color: var(--cat-staff);
}

.hospital-news-single[data-cat='general'] .news-hero-eyebrow {
  color: var(--cat-general);
}

.hospital-news-single .news-hero-title {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 24px;
}

.hospital-news-single .news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  font-size: 14px;
}

.hospital-news-single .news-hero-date {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--muted);
}

.hospital-news-single .news-featured {
  padding: 48px 0 0;
}

.hospital-news-single .news-featured-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.08);
}

.hospital-news-single .news-featured-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.hospital-news-single .news-body {
  padding: 80px 0 100px;
}

.hospital-news-single .news-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-2);
}

.hospital-news-single .news-content > *:first-child {
  margin-top: 0;
}

.hospital-news-single .news-content > *:last-child {
  margin-bottom: 0;
}

.hospital-news-single .news-content p {
  margin: 0 0 1.4em;
}

.hospital-news-single .news-content h2,
.hospital-news-single .news-content h3 {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  margin: 2em 0 0.8em;
  line-height: 1.4;
}

.hospital-news-single .news-content h2 {
  font-size: 24px;
}

.hospital-news-single .news-content h3 {
  font-size: 20px;
}

.hospital-news-single .news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em 0;
}

.hospital-news-single .news-content blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: var(--paper-2);
  color: var(--ink);
}

.hospital-news-single .news-content ul,
.hospital-news-single .news-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}

.hospital-news-single .news-related {
  padding: 80px 0 100px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.hospital-news-single .news-related-eyebrow {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.hospital-news-single .news-related-title {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 32px;
}

.hospital-news-single .news-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hospital-news-single .news-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hospital-news-single .news-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.1);
}

.hospital-news-single .news-related-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}

.hospital-news-single .news-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-news-single .news-related-body {
  padding: 20px 22px 22px;
}

.hospital-news-single .news-related-cat {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.hospital-news-single .news-related-name {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--ink);
}

.hospital-news-single .news-related-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.hospital-news-single .news-cta {
  border-top: 1px solid var(--line);
  padding: 96px 0;
  text-align: center;
}

.hospital-news-single .news-cta-eyebrow {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hospital-news-single .news-cta-title {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin: 0 0 28px;
}

.hospital-news-single .news-cta-title em {
  font-style: normal;
  color: var(--blue);
}

.hospital-news-single .news-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hospital-news-single .news-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hospital-news-single .news-cta-btn.primary {
  background: var(--navy);
  color: #fff;
}

.hospital-news-single .news-cta-btn.primary:hover {
  background: var(--blue);
}

.hospital-news-single .news-cta-btn.ghost {
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
}

.hospital-news-single .news-cta-btn.ghost:hover {
  border-color: var(--navy);
}

body.hospital-news-single-page .site-header {
  position: relative;
}

@media (max-width: 900px) {
  .hospital-news-single .news-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hospital-news-single .article-meta .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .hospital-news-single .news-hero {
    padding: 48px 0 56px;
  }

  .hospital-news-single .news-featured {
    padding: 32px 0 0;
  }

  .hospital-news-single .news-body {
    padding: 56px 0 72px;
  }

  .hospital-news-single .news-related {
    padding: 56px 0 72px;
  }

  .hospital-news-single .news-related-grid {
    grid-template-columns: 1fr;
  }

  .hospital-news-single .news-cta {
    padding: 64px 0;
  }

  .hospital-news-single .news-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
