:root {
  --article-primary: #000000;
  --article-accent: #3b82f6;
  --article-bg: #ffffff;
  --article-bg-soft: #f8f9fa;
  --article-text: #1f2937;
  --article-muted: #6b7280;
  --article-border: #e5e7eb;
  --article-radius: 12px;
  --article-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kg-card {
  background: white;
  border-radius: var(--article-radius);
  padding: 1.75rem;
  -webkit-box-shadow: var(--article-shadow);
          box-shadow: var(--article-shadow);
  border: 1px solid var(--article-border);
}

#main {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--article-primary);
  line-height: 1.7;
}

.static-article {
  color: var(--article-text);
  line-height: 1.75;
  font-size: 16px;
}

.static-article div,
.static-article span,
.static-article p,
.static-article li,
.static-article h2,
.static-article h3,
.static-article h4,
.static-article h5,
.static-article h6 {
  color: var(--article-text);
}

.static-article__header {
  margin-bottom: 32px;
}

.static-article__meta {
  color: var(--article-muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.static-article__meta .category {
  color: var(--article-accent);
  font-weight: 600;
}

.static-article__body h2 {
  font-size: 28px;
  line-height: 1.35;
  margin: 40px 0 16px;
  color: var(--article-primary);
  font-weight: 700;
}

.static-article__body h2:first-child {
  margin-top: 0;
}

.static-article__body h3 {
  font-size: 22px;
  line-height: 1.4;
  margin: 32px 0 12px;
  color: var(--article-primary);
  font-weight: 600;
}

.static-article__body h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 24px 0 8px;
  color: var(--article-primary);
  font-weight: 600;
}

.static-article__body p {
  margin: 0 0 16px;
}

.static-article__body ul,
.static-article__body ol {
  margin: 0 0 20px;
  padding-left: 1.5rem;
}

.static-article__body ul li,
.static-article__body ol li {
  margin-bottom: 8px;
}

.static-article__body ul li::marker,
.static-article__body ol li::marker {
  color: var(--article-accent);
}

.static-article__body strong {
  color: var(--article-primary);
  font-weight: 700;
}

.static-article__body a {
  color: var(--article-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.static-article__body a:hover {
  opacity: 0.7;
}

.static-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--article-radius);
  margin: 16px 0;
}

.static-article__body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--article-accent);
  background: var(--article-bg-soft);
  border-radius: 0 var(--article-radius) var(--article-radius) 0;
}

.static-article__body code {
  background: var(--article-bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d6336c;
}

.static-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.static-article__body table th,
.static-article__body table td {
  padding: 12px;
  border: 1px solid var(--article-border);
  text-align: left;
}

.static-article__body table th {
  background: var(--article-bg-soft);
  font-weight: 600;
}

.edu-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.edu-offices .edu-office {
  padding: 20px;
  background: var(--article-bg-soft);
  border-radius: var(--article-radius);
  border: 1px solid var(--article-border);
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
}

.edu-offices .edu-office:hover {
  -webkit-box-shadow: var(--article-shadow);
          box-shadow: var(--article-shadow);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.edu-offices .edu-office h4 {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--article-accent);
}

.edu-offices .edu-office p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
}

.edu-offices .edu-office p strong {
  color: var(--article-muted);
  font-weight: 600;
  margin-right: 4px;
}

.edu-offices .edu-office p:last-child {
  margin-bottom: 0;
}

.u-page-header {
  margin-bottom: 50px;
  text-align: center;
}

.school-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.school-type-card {
  padding: 24px;
  background: white;
  border-radius: var(--article-radius);
  border: 1px solid var(--article-border);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  position: relative;
  overflow: hidden;
}

.school-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--article-accent);
}

.school-type-card:hover {
  -webkit-box-shadow: var(--article-shadow);
          box-shadow: var(--article-shadow);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.school-type-card h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--article-border);
  font-size: 18px;
  font-weight: 700;
  color: var(--article-primary);
  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: 8px;
}

.school-type-card h3 .num {
  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;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--article-accent);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.school-type-card h3 small {
  font-size: 13px;
  font-weight: 400;
  color: var(--article-muted);
  font-style: italic;
}

.school-type-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 8px 16px;
}

.school-type-card dl dt {
  font-weight: 600;
  color: var(--article-muted);
  font-size: 13px;
  white-space: nowrap;
}

.school-type-card dl dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--article-text);
}

.u-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.u-page-title-slash {
  color: #ede473;
  margin: 0 8px;
}

.u-page-line {
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#ede473), to(#59c3c3));
  background: linear-gradient(90deg, #ede473, #59c3c3);
  margin: 0 auto;
  border-radius: 2px;
  max-width: 1680px;
}

@media (max-width: 768px) {
  .static-article {
    font-size: 15px;
  }

  .static-article__body h2 {
    font-size: 22px;
  }

  .static-article__body h3 {
    font-size: 18px;
  }

  .school-type-grid {
    grid-template-columns: 1fr;
  }
}

