@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_s06GnM.ttf) format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_iE9GnM.ttf) format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_hg9GnM.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN.ttf) format('truetype');
}
:root {
  --bg: #f4f6f9;
  --paper: #ffffff;
  --line: #d8e0ea;
  --text: #1c2635;
  --sub: #607386;
  --brand: #0f2f63;
  --gold: #b89455;
}
* {
  box-sizing: border-box;
}
html,
body,
#__next {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  font-family: "Source Sans 3", "PingFang SC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef2f7, #f7f9fc 220px);
}
a {
  color: inherit;
}

.detail-wrap {
  max-width: 960px;
  width: 92vw;
  margin: 0 auto;
  padding: 44px 0;
}
.back-link {
  text-decoration: none;
  color: #1e4c90;
  font-weight: 600;
}
.detail-wrap h1 {
  margin: 16px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--brand);
  line-height: 1.18;
}
.detail-wrap .meta {
  color: var(--sub);
  font-size: 13px;
  margin-bottom: 18px;
}
.content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  line-height: 2;
  color: #2a3c53;
  box-shadow: 0 12px 20px #00162a0f;
}

.home-wrap {
  max-width: 1140px;
  width: 92vw;
  margin: 0 auto;
  padding: 50px 0;
}
.hero {
  margin-bottom: 22px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero h1 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(34px, 5vw, 50px);
  color: var(--brand);
}
.hero p {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
}
.list-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #00162a14;
}
.news-card h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.2;
}
.news-card h2 a {
  text-decoration: none;
}
.news-card .meta {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 8px;
}
.news-card p {
  margin: 0;
  color: #3f5168;
  line-height: 1.9;
}

