:root {
  --ink: #17384b;
  --muted: #6f8792;
  --brand: #006b88;
  --brand-dark: #005c78;
  --brand-deep: #00516d;
  --pale: #eef6f8;
  --line: rgba(0, 86, 112, .16);
  --shadow: 0 14px 34px rgba(10, 57, 75, .16);
  --container: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #f1f6f9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #00698a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 51, 70, .18);
}

.header-inner {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  column-gap: 28px;
}

.brand img {
  width: 286px;
  height: auto;
}

.header-tools {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
}

.header-tools > span {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .45);
}

.search {
  display: flex;
  align-items: center;
  width: 152px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 20px;
  overflow: hidden;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 8px 0 14px;
  color: #fff;
  background: transparent;
  font-size: 12px;
}

.search input::placeholder {
  color: rgba(255, 255, 255, .76);
}

.search button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 100%;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.search button img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 28px);
  padding-top: 38px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  position: relative;
  display: block;
  padding: 11px 0 19px;
  color: rgba(255, 255, 255, .95);
}

.nav-item > a.active,
.nav-item:hover > a,
.nav-item > a:hover {
  color: #f4d267;
}

.nav-item > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 3px;
  background: #f4d267;
}

.subnav {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 132px;
  padding: 10px 0;
  background: rgba(0, 91, 118, .96);
  box-shadow: 0 16px 30px rgba(0, 42, 60, .22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.subnav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 91, 118, .96);
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.subnav a {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  text-align: center;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.subnav a:hover {
  color: #f4d267;
  background: rgba(255, 255, 255, .08);
  transform: translateX(10px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  max-height: 468px;
  overflow: hidden;
  background: #d9edf1;
}

.hero-track {
  position: relative;
  height: clamp(270px, 39vw, 468px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .9s ease, transform 4.8s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pager {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 90px 76px 76px;
  align-items: end;
  gap: 18px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  z-index: 2;
}

.hero-pager strong {
  font-size: 26px;
}

.hero-pager span,
.hero-pager button {
  font-size: 13px;
}

.hero-pager button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.section-head.light span,
.section-head.light h2,
.section-head.light .more {
  color: #fff;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 14px;
}

.more::before {
  content: "◉";
  font-size: 12px;
}

.section-title-link {
  display: inline-flex;
  align-items: center;
}

.section-title-link img {
  width: auto;
  height: 80px;
  transition: transform .28s ease;
}

.section-title-link:hover img,
.section-title-link:focus-visible img {
  transform: translateX(10px);
}

.news-section {
  position: relative;
  padding: 58px 0 86px;
  overflow: hidden;
  background: #edf7fa url("../assets/news-bg.png") bottom center / 100% auto no-repeat;
}

.news-section::before {
  display: none;
}

.news-section::after {
  display: none;
}

.news-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 484px) 1fr;
  gap: 0;
  align-items: start;
}

.feature-card {
  position: relative;
  margin-top: 60px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-track {
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 487 / 355;
}

.feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.feature-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.feature-image-link {
  display: block;
  height: calc(100% - 52px);
  overflow: hidden;
}

.feature-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.feature-image-link:hover img,
.feature-image-link:focus-visible img {
  transform: scale(1.04);
}

.feature-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  background: #fff;
}

.feature-title-link {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--brand-dark);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease, transform .22s ease;
}

.feature-title-link strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feature-title-link:hover,
.feature-title-link:focus-visible {
  color: var(--brand);
  transform: translateX(10px);
}

.feature-caption time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.feature-actions {
  position: absolute;
  right: 0;
  bottom: -70px;
  display: flex;
}

.feature-actions button {
  width: 58px;
  height: 48px;
  border: 0;
  color: #fff;
  background: #06445e;
  font-size: 32px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.feature-actions button.is-active,
.feature-actions button:active {
  color: #06445e;
  background: #fff;
}

.feature-actions button.is-disabled {
  color: rgba(255, 255, 255, .62);
  background: rgba(6, 68, 94, .72);
}

.news-panel {
  padding: 0 0 18px;
  min-width: 0;
}

.news-panel .section-head {
  align-items: center;
  min-height: 80px;
  padding-left: 30px;
  margin-bottom: 20px;
}

.news-more {
  gap: 8px;
  color: #666;
  transition: color .2s ease;
}

.news-more::before {
  display: none;
  content: none;
}

.news-more img {
  width: 19px;
  height: 20px;
  object-fit: contain;
  transition: transform .2s ease;
}

.news-more:hover,
.news-more:focus-visible {
  color: var(--brand);
}

.news-more:hover img,
.news-more:focus-visible img {
  transform: translateX(4px);
}

.news-list {
  display: grid;
  gap: 30px;
  padding: 24px 38px 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 65, 90, .08);
}

.news-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  min-width: 0;
  height: 60px;
  align-items: center;
  padding: 0 14px;
  border-radius: 4px;
}

.news-item,
.academic-list a,
.party-block li a,
.platform-links a {
  transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.news-item time {
  color: var(--brand);
  text-align: center;
}

.news-item time strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.news-item time span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.news-item > div {
  min-width: 0;
  height: 60px;
  padding-left: 18px;
  border-left: 2px solid #ccc;
}

.news-item h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: #143748;
  font-size: 17px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease, transform .22s ease;
}

.news-item p {
  margin: 0;
  overflow: hidden;
  color: #6b7d85;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease, transform .22s ease;
}

.news-item:hover h3,
.news-item:focus-visible h3 {
  color: var(--brand);
}

.news-item:hover p,
.news-item:focus-visible p {
  color: #385f6e;
}

.news-item:hover,
.news-item:focus-visible {
  background: #f5fbfd;
  box-shadow: 0 10px 24px rgba(0, 65, 90, .08);
  transform: translateX(10px);
}

.notice-section {
  margin-top: 100px;
  padding: 56px 0 72px;
  background: url("../assets/notice-bg.jpg") center/cover no-repeat;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 12px;
}

.notice-card {
  position: relative;
  min-height: 138px;
  padding: 45px 96px 35px 30px;
  overflow: hidden;
  background: #fff url("../assets/notice-text-bg.png") right bottom/237px 51px no-repeat;
  border-radius: 10px;
  box-shadow: -10px 10px 0 0 rgba(24, 76, 98, 0.5);
  transition: transform .24s ease, box-shadow .24s ease;
}

.notice-card h3 {
  margin: 0;
  min-height: 50px;
  color: #244554;
  font-size: 15px;
  line-height: 1.65;
  transition: color .22s ease, transform .22s ease;
}

.notice-card:hover h3,
.notice-card:focus-visible h3 {
  color: var(--brand);
}

.notice-card:hover,
.notice-card:focus-visible {
  box-shadow: -10px 20px 28px rgba(24, 76, 98, 0.28);
  transform: translateY(-10px);
}

.notice-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 20px;
  color: #064360;
  font-size: 12px;
}

.notice-card-meta time,
.notice-card-more {
  display: inline-flex;
  align-items: center;
}

.notice-card-meta time {
  gap: 6px;
}

.notice-card-meta time img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.notice-card-more {
  transition: transform .25s ease;
}

.notice-card-more img {
  width: 23px;
  height: 17px;
  object-fit: contain;
}

.notice-card:hover .notice-card-more,
.notice-card:focus-visible .notice-card-more {
  transform: translateX(10px);
}

.notice-card b {
  position: absolute;
  top: 28px;
  right: 34px;
  display: grid;
  gap: 2px;
  color: #006b88;
  font-size: 13px;
  line-height: 1.18;
  text-align: center;
}

.notice-card small {
  display: none;
}

.notice-card::after {
  display: none;
}

.notice-more {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 34px auto 0;
  color: #fff;
  font-size: 14px;
}

.notice-more img {
  width: 19px;
  height: 20px;
  object-fit: contain;
}

.split-section {
  padding-top: 40px;
  background: #f1f6f9;
}

.split-title-row,
.split-body-inner {
  display: grid;
  grid-template-columns: 1.64fr 1fr;
  gap: 0;
}

.split-body-bg {
  background: #006984 url("../assets/acad-paprty-bg.png") bottom center / 100% auto no-repeat;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.64fr 1fr;
  gap: 0;
}

.news-layout > *,
.split-grid > *,
.split-title-row > *,
.split-body-inner > *,
.academic-content > *,
.section-head > * {
  min-width: 0;
}

.academic-block {
  position: relative;
  min-height: 520px;
  padding: 42px 68px 46px 0;
  background: #fff;
}

.academic-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  background: #fff;
}

.mobile-split-head {
  display: none;
}

.split-title-head {
  height: 100px;
  align-items: center;
  padding: 0 44px 0 0;
  background: #f1f6f9;
}

.split-column + .split-column .split-title-head {
  padding: 0 0 0 64px;
}

.academic-content {
  position: relative;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  z-index: 1;
}

.academic-feature img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #fff;
}

.academic-feature time {
  display: block;
  margin-top: 22px;
  color: #7b8c91;
  font-size: 13px;
}

.academic-feature h3 {
  margin: 6px 0;
  overflow: hidden;
  color: #1a3c4d;
  font-size: 17px;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease, transform .22s ease;
}

.academic-feature:hover h3 {
  color: var(--brand);
  transform: translateX(10px);
}

.academic-feature p {
  margin: 0;
  color: #697e87;
  font-size: 14px;
  line-height: 1.8;
}

.academic-list {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-right: 18px;
}

.academic-list a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
  min-height: 54px;
  padding: 0 12px 0 58px;
  border-bottom: 2px solid #666666;
  border-radius: 4px;
}

.academic-list time {
  display: grid;
  position: absolute;
  top: 50%;
  left: 0;
  width: 44px;
  height: 52px;
  grid-template-rows: 28px 24px;
  background: url("../assets/academ-datbg.png") center/44px 52px no-repeat;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}

.academic-list time b {
  display: grid;
  place-items: center;
  font-size: 15px;
}

.academic-list time span {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
}

.academic-list strong {
  display: block;
  min-width: 0;
  margin: 0 0 2px;
  overflow: hidden;
  color: #17384b;
  font-size: 15px;
  line-height: 1.28;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease, transform .22s ease;
}

.academic-list p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  color: #6b7f87;
  font-size: 12px;
  line-height: 1.35;
  transition: color .22s ease, transform .22s ease;
}

.academic-list a:hover strong,
.academic-list a:focus-visible strong {
  color: var(--brand);
}

.academic-list a:hover p,
.academic-list a:focus-visible p {
  color: #385f6e;
}

.academic-list a:hover,
.academic-list a:focus-visible {
  background: #f5fbfd;
  box-shadow: 0 10px 24px rgba(0, 65, 90, .08);
  transform: translateX(10px);
}

.party-block {
  min-height: 520px;
  padding: 0 0 62px 72px;
  color: #fff;
  background: transparent;
}

.party-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
}

.party-image-link img {
  width: 100%;
  aspect-ratio: 530 / 249;
  object-fit: cover;
  transition: transform .5s ease;
}

.party-image-link:hover img,
.party-image-link:focus-visible img {
  transform: scale(1.04);
}

.party-block > .party-image-link {
  width: calc(100% - 72px);
  max-width: 760px;
}

.party-block ul {
  max-width: 760px;
  margin: 0 72px 0 0;
  padding: 0;
  list-style: none;
}

.party-block li {
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.party-block li a {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 15px 12px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.party-block li a:hover,
.party-block li a:focus-visible {
  color: #f4d267;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 10px 24px rgba(0, 42, 60, .1);
  transform: translateX(10px);
}

.party-block li a::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 12px;
  background: url("../assets/party-ico.png") center/contain no-repeat;
}

.platform-section {
  padding: 54px 0 64px;
  background: #eff8fa;
}

.platform-section .section-head {
  min-height: 80px;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  margin-top: 28px;
  padding: 2px 0;
  background:
    url("../assets/resar-line.png") top center / 100% 2px no-repeat,
    url("../assets/resar-line.png") bottom center / 100% 2px no-repeat;
}

.platform-links a {
  min-width: 0;
  padding: 22px 10px;
  color: #60747d;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-links a:hover,
.platform-links a:focus-visible {
  color: #fff;
  background: var(--brand);
  transform: translateX(10px);
}

.site-footer {
  color: rgba(255, 255, 255, .92);
  text-align: center;
  background: url("../assets/footer-bg.png") center bottom/cover no-repeat;
}

.site-footer .container {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block: 130px 28px;
  background: transparent;
}

.site-footer img {
  width: min(350px, 80vw);
  margin-bottom: 18px;
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
  margin: 4px auto 0;
  font-size: 12px;
  line-height: 1.7;
  white-space: nowrap;
}

.footer-info img {
  flex: 0 0 auto;
  width: 28px;
  height: 34px;
  margin: 0;
  object-fit: contain;
}

.inner-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #d9edf1;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 81, 109, .72), rgba(0, 81, 109, .18) 58%, rgba(0, 81, 109, .04));
}

.inner-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  color: #fff;
}

.inner-banner-content h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.inner-banner-content p {
  margin: 14px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.8;
}

.inner-page {
  padding: 56px 0 76px;
  background:
    linear-gradient(180deg, #f1f6f9 0, #fff 230px),
    #fff;
}

.inner-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.inner-sidebar {
  position: sticky;
  top: 128px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 65, 90, .1);
}

.side-title {
  padding: 28px 30px;
  color: #fff;
  background: var(--brand);
}

.side-title span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-title strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.2;
}

.side-nav {
  padding: 12px 0;
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 30px;
  color: #315061;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 86, 112, .1);
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.side-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(0, 107, 136, .32);
}

.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a.active {
  color: var(--brand);
  background: #eef7fa;
  transform: translateX(10px);
}

.side-nav a.active {
  font-weight: 700;
}

.inner-content {
  min-width: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6f8792;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--brand);
  transition: color .22s ease, transform .22s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--brand-dark);
  transform: translateX(10px);
}

.inner-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(0, 107, 136, .16);
}

.inner-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
}

.inner-title span {
  color: rgba(0, 107, 136, .14);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.inner-list {
  display: grid;
  gap: 0;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 65, 90, .08);
}

.inner-list-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(0, 86, 112, .12);
  transition: background-color .22s ease, transform .22s ease;
}

.inner-list-no-date .inner-list-item {
  grid-template-columns: minmax(0, 1fr);
}

.inner-list-item:hover,
.inner-list-item:focus-visible {
  background: #f5fbfd;
  transform: translateX(10px);
}

.inner-date {
  color: var(--brand);
  text-align: center;
}

.inner-date strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.inner-date span {
  display: block;
  margin-top: 8px;
  color: #6f8792;
  font-size: 12px;
}

.inner-list-item h3 {
  margin: 0 0 10px;
  overflow: hidden;
  color: #16384a;
  font-size: 19px;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .22s ease;
}

.inner-list-item p {
  margin: 0;
  overflow: hidden;
  color: #6b7f87;
  font-size: 14px;
  line-height: 1.75;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inner-list-item:hover h3,
.inner-list-item:focus-visible h3 {
  color: var(--brand);
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pager a {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 12px;
  color: #60747d;
  background: #fff;
  border: 1px solid rgba(0, 86, 112, .14);
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.pager a:hover,
.pager a:focus-visible,
.pager a.active {
  color: #fff;
  background: var(--brand);
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.profile-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 65, 90, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.profile-card:hover,
.profile-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 65, 90, .14);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #edf7fa;
}

.profile-card-content {
  padding: 22px 24px 24px;
}

.profile-card-content span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-card-content h3 {
  margin: 10px 0 10px;
  color: #17384b;
  font-size: 20px;
  line-height: 1.35;
  transition: color .22s ease, transform .22s ease;
}

.profile-card-content p {
  margin: 0;
  color: #6b7f87;
  font-size: 14px;
  line-height: 1.75;
}

.profile-card:hover h3,
.profile-card:focus-visible h3 {
  color: var(--brand);
  transform: translateX(10px);
}

.organization-panel {
  display: grid;
  gap: 26px;
  padding: 38px 44px 44px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 65, 90, .08);
}

.organization-section {
  position: relative;
  padding: 0 0 26px 30px;
  border-bottom: 1px solid rgba(0, 86, 112, .12);
}

.organization-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.organization-section::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--brand);
  box-shadow: 12px 12px 0 rgba(0, 107, 136, .18);
}

.organization-section h3 {
  margin: 0 0 18px;
  color: #b71d2b;
  font-size: 22px;
  line-height: 1.35;
}

.organization-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.organization-links-compact {
  grid-template-columns: repeat(2, minmax(0, 240px));
}

.organization-links a {
  position: relative;
  min-width: 0;
  padding: 15px 18px 15px 38px;
  color: #315061;
  background: #f7fbfc;
  border: 1px solid rgba(0, 86, 112, .12);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.45;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.organization-links a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 107, 136, .45);
  transform: translateY(-50%);
}

.organization-links a:hover,
.organization-links a:focus-visible {
  color: var(--brand);
  background: #eef7fa;
  border-color: rgba(0, 107, 136, .28);
  box-shadow: 0 10px 24px rgba(0, 65, 90, .08);
  transform: translateX(10px);
}

.article-detail {
  padding: 44px 56px 58px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 65, 90, .08);
}

.article-detail h2 {
  margin: 0;
  color: #17384b;
  font-size: 34px;
  line-height: 1.35;
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 34px;
  padding-bottom: 22px;
  color: #7b8c91;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 86, 112, .14);
}

.article-body {
  color: #314f5f;
  font-size: 16px;
  line-height: 2;
}

.article-body p {
  margin: 0 0 20px;
  text-indent: 2em;
}

.article-body img {
 display: inline-block;
  max-height: 420px;
  margin: 30px 0;
  object-fit: cover;
}

.article-tools {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 86, 112, .14);
}

.article-tools a {
  min-width: 0;
  color: #60747d;
  font-size: 14px;
  transition: color .22s ease, transform .22s ease;
}

.article-tools a:hover,
.article-tools a:focus-visible {
  color: var(--brand);
  transform: translateX(10px);
}

@media (max-width: 1600px) {
  .academic-block {
    padding-right: 44px;
  }

  .academic-content {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1320px) {
  .academic-block {
    padding-right: 32px;
  }

  .academic-content {
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 28px;
  }

  .academic-list {
    padding-right: 0;
  }

  .academic-list strong {
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 300px 1fr;
  }

  .brand img {
    width: 260px;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .notice-grid {
    gap: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
  }

  .brand img {
    width: 230px;
  }

  .header-tools {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 4px;
    background: transparent;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    width: 100%;
    align-items: stretch;
    gap: 0;
    white-space: normal;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 8px 20px;
    background: #006984;
    box-shadow: 0 16px 30px rgba(0, 51, 70, .18);
  }

  .site-nav.open {
    display: block;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 11px 0;
    font-size: 14px;
  }

  .nav-item > a.active::after {
    display: none;
  }

  .nav-item.has-sub > a::after {
    content: "+";
    display: inline-grid;
    width: 22px;
    height: 22px;
    margin-left: 12px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1;
  }

  .nav-item.has-sub.open > a {
    color: #f4d267;
  }

  .nav-item.has-sub.open > a::after {
    content: "-";
    color: #f4d267;
    border-color: rgba(244, 210, 103, .72);
  }

  .subnav {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .subnav::before {
    display: none;
  }

  .subnav a {
    padding: 8px 0 8px 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-align: left;
  }

  .nav-item.open .subnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
  }

  .news-layout,
  .academic-content,
  .split-grid,
  .split-body-inner {
    grid-template-columns: 1fr;
  }

  .news-section::before {
    right: 0;
    height: 38%;
  }

  .feature-card {
    margin-top: 0;
  }

  .feature-actions {
    bottom: 0;
  }

  .notice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    background: #f1f6f9;
  }

  .split-title-row {
    display: none;
  }

  .mobile-split-head {
    display: flex;
    height: 100px;
    margin-inline: calc(50% - 50vw);
    padding-block: 0;
    padding-inline: 16px;
    overflow: hidden;
    background: #f1f6f9;
    box-shadow: 0 0 0 100vmax #f1f6f9;
    clip-path: inset(0 -100vmax);
  }

  .academic-block {
    min-height: 0;
    padding: 36px 0 44px;
  }

  .party-block {
    min-height: 0;
    margin: 0;
    padding: 44px 16px 52px;
    background: transparent;
  }

  .party-block > .party-image-link {
    width: 100%;
    max-width: none;
  }

  .party-block ul {
    max-width: none;
    margin: 0;
  }

  .inner-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inner-sidebar {
    position: static;
  }

  .side-title {
    position: relative;
    cursor: pointer;
  }

  .side-title::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
  }

  .inner-sidebar.side-open .side-title::after {
    content: "-";
    color: #f4d267;
    border-color: rgba(244, 210, 103, .75);
  }

  .side-nav {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-sidebar.side-open .side-nav {
    display: grid;
  }

  .article-detail {
    padding: 34px 28px 42px;
  }

  .organization-links,
  .organization-links-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 210px;
  }

  .hero-track {
    height: 260px;
  }

  .hero-pager {
    display: none;
  }

  .section-head,
  .section-head.centered {
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .section-head h2 {
    font-size: 27px;
  }

  .news-section,
  .notice-section,
  .academic-block,
  .platform-section {
    padding: 42px 0;
  }

  .split-body-bg {
    padding: 0 0 36px;
    background-size: cover;
  }

  .mobile-split-head {
    height: auto;
    min-height: 92px;
    padding: 28px 16px 20px;
  }

  .academic-block {
    margin-bottom: 28px;
    padding: 32px 24px 42px;
  }

  .split-title-head {
    height: 100px;
    align-items: center;
    padding-left: 0;
  }

  .split-title-head,
  .split-column + .split-column .split-title-head {
    justify-content: space-between;
  }

  .academic-content {
    gap: 28px;
  }

  .academic-list {
    gap: 0;
    padding-top: 24px;
    padding-right: 0;
  }

  .academic-list a {
    min-height: 86px;
    padding: 14px 10px 14px 66px;
  }

  .academic-list time {
    left: 0;
  }

  .news-list {
    padding: 12px 18px;
  }

  .news-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .feature-caption strong,
  .party-block li a {
    white-space: normal;
  }

  .section-head {
    gap: 12px;
  }

  .more {
    flex: 0 0 auto;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .notice-card:nth-child(n + 4) {
    display: none;
  }

  .notice-card {
    min-height: 126px;
    padding: 32px 82px 28px 22px;
  }

  .platform-links {
    grid-template-columns: 1fr;
  }

  .platform-links a {
    padding: 14px 0;
    text-align: center;
    white-space: normal;
    border-bottom: 1px solid var(--line);
  }

  .site-footer .container {
    min-height: 0;
    padding-block: 96px 24px;
    overflow-x: auto;
  }

  .footer-info {
    justify-content: flex-start;
    font-size: 11px;
  }

  .footer-info span:not(:nth-of-type(5)),
  .footer-info img {
    display: none;
  }

  .footer-info {
    justify-content: center;
    white-space: normal;
  }

  .inner-banner {
    height: 260px;
  }

  .inner-page {
    padding: 36px 0 50px;
  }

  .side-nav,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .inner-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-list-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 18px;
  }

  .inner-list-no-date .inner-list-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .inner-date strong {
    font-size: 30px;
  }

  .article-detail h2 {
    font-size: 26px;
  }

  .organization-panel {
    padding: 26px 18px 30px;
  }

  .organization-section {
    padding-left: 22px;
  }

  .organization-section h3 {
    font-size: 20px;
  }

  .organization-links,
  .organization-links-compact {
    grid-template-columns: 1fr;
  }

  .article-tools {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}