@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSdgnn-K.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSeMmX-K.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSe1mX-K.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSfSmX-K.ttf) format('truetype');
}
:root {
  --bg-top: #edf5ff;
  --bg-bottom: #f9fcff;
  --line: #d6e6ff;
  --text: #1b2942;
  --sub: #5a7aa3;
  --accent: #0f7aff;
  --accent-2: #14c9b0;
}
* {
  box-sizing: border-box;
}
html,
body,
#__next {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  font-family: "Nunito", "PingFang SC", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 92% 0%, #d8e9ff 0%, transparent 34%), linear-gradient(180deg, var(--bg-top), var(--bg-bottom) 360px);
}
a {
  color: inherit;
}

.detail-wrap {
  max-width: 920px;
  width: 92vw;
  margin: 0 auto;
  padding: 44px 0;
}
.back-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}
.detail-wrap h1 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4.8vw, 44px);
}
.detail-wrap .meta {
  color: var(--sub);
  font-size: 13px;
  margin-bottom: 16px;
}
.content {
  background: #ffffffd6;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  line-height: 1.95;
  color: #284b75;
  box-shadow: 0 14px 20px #2c63a514;
}

.home-wrap {
  max-width: 1120px;
  width: 92vw;
  margin: 0 auto;
  padding: 50px 0;
}
.hero {
  margin-bottom: 20px;
  padding: 0 2px;
}
.hero h1 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 5.4vw, 50px);
  line-height: 1.18;
}
.hero p {
  margin: 0;
  color: var(--sub);
  font-size: 17px;
}
.list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.news-card {
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 20px #2c63a514;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 24px #2c63a522;
}
.news-card h2 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.34;
}
.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: #35567d;
  line-height: 1.82;
}
@media (max-width: 780px) {
  .list-wrap {
    grid-template-columns: 1fr;
  }
}

