/* ============================================
   CJKICC 官方风格设计系统
   中日韩创新合作中心 - 来自 cjkicc.cn
   主色 #0A2463 / 辅色 #3E92CC / 金色 #C9A961
   ============================================ */

/* ===== 设计变量 ===== */
:root {
  /* 官方主色 */
  --primary: #0A2463;
  --primary-light: #3E92CC;
  --accent: #3E92CC;
  --gold: #C9A961;
  --gold-dark: #b8964e;

  /* 兼容旧变量名 - 已映射为官方色 */
  --coral: #0A2463;
  --teal: #3E92CC;
  --purple: #C9A961;
  --yellow: #C9A961;
  --pink: #3E92CC;
  --mint: #E8F4FD;
  --sky: #3E92CC;
  --lavender: #C9A961;

  /* 深色系 */
  --dark: #111827;
  --dark-soft: #4B5563;
  --dark-light: #9CA3AF;

  /* 背景色 */
  --bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F0F4FA 100%);
  --bg-card: #FFFFFF;
  --bg-section: #F8FAFC;

  /* 渐变 - 官方蓝/金 */
  --grad-coral-teal: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  --grad-purple-pink: linear-gradient(135deg, #C9A961 0%, #0A2463 100%);
  --grad-yellow-coral: linear-gradient(135deg, #C9A961 0%, #3E92CC 100%);
  --grad-sky-purple: linear-gradient(135deg, #3E92CC 0%, #C9A961 100%);
  --grad-mint-teal: linear-gradient(135deg, #E8F4FD 0%, #3E92CC 100%);

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(10,36,99,0.06);
  --shadow-md: 0 4px 20px rgba(10,36,99,0.08);
  --shadow-lg: 0 8px 40px rgba(10,36,99,0.12);
  --shadow-hover: 0 12px 48px rgba(10,36,99,0.15);

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* 过渡 */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* 字体 */
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-display: 'Poppins', 'Noto Sans SC', sans-serif;
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-gradient);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--coral); }

img { max-width: 100%; height: auto; display: block; }

/* ===== 容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  white-space: nowrap;
}
.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-coral-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}
.nav-logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo .logo-text small { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 400; }

/* 首页与关于页大Logo */
.brand-logo-hero {
  text-align: center;
  margin-bottom: 24px;
}
.brand-logo-hero img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
.about-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.about-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}
.nav-menu > li > a:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  transform: translateY(-1px);
}

/* 下拉菜单 */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: #E8F4FD; color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== Hero 区域 ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,0.85) 0%, rgba(62,146,204,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero h1 span {
  background: linear-gradient(135deg, #C9A961, #3E92CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-coral-teal);
  color: white;
  box-shadow: 0 4px 20px rgba(10,36,99,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,36,99,0.45);
  color: white;
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== Section 通用 ===== */
.section {
  padding: 80px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--dark-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* 各板块配色 */
.tag-coral { background: rgba(10,36,99,0.08); color: var(--primary); }
.tag-teal { background: rgba(62,146,204,0.1); color: var(--primary-light); }
.tag-purple { background: rgba(201,169,97,0.12); color: var(--gold-dark); }
.tag-yellow { background: rgba(62,146,204,0.1); color: var(--primary-light); }
.tag-pink { background: rgba(255,143,171,0.1); color: #E64980; }
.tag-mint { background: rgba(149,225,211,0.2); color: #2BB8AD; }
.tag-sky { background: rgba(116,192,252,0.15); color: #1971C2; }
.tag-lavender { background: rgba(177,151,252,0.15); color: #6741D9; }

/* ===== 文本内容块（详情页用） ===== */
.detail-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--purple);
  transition: transform 0.2s, box-shadow 0.2s;
}
.detail-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.detail-block:nth-child(2n) { border-left-color: var(--teal); }
.detail-block:nth-child(3n) { border-left-color: var(--coral); }
.detail-block:nth-child(4n) { border-left-color: var(--yellow); }
.detail-block:nth-child(5n) { border-left-color: var(--pink); }
.detail-block:nth-child(6n) { border-left-color: var(--sky); }
.detail-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}
.detail-block p {
  color: var(--dark-soft);
  line-height: 1.9;
  font-size: 15px;
}
.detail-image {
  margin: 18px 0 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.detail-image img,
.item-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.item-image {
  margin-top: 12px;
  margin-bottom: 4px;
  max-width: 640px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

/* ===== 卡片 ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: 28px; }
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.card-text {
  color: var(--dark-soft);
  font-size: 15px;
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
}
.card-link::after { content: '→'; transition: var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* ===== 新闻卡片 ===== */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-date {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== 海外中心卡片 ===== */
.region-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding: 40px 28px;
}
.region-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.region-flag {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}
.region-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.region-card p { color: var(--dark-soft); font-size: 14px; }

/* ===== 合作伙伴 ===== */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.partner-item {
  background: white;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--dark-soft);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--dark);
}

/* ===== 页脚 ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== 子页面 Hero ===== */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,0.88) 0%, rgba(62,146,204,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

/* ===== 统计数字 ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}
.stat-label { color: var(--dark-soft); font-size: 14px; }

/* ===== 内容区域 ===== */
.content-section {
  padding: 60px 0;
}
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.content-block:nth-child(even) .content-block-image { order: 2; }
.content-block-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-block-image img { width: 100%; height: 320px; object-fit: cover; }
.content-block-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.content-block-text p { color: var(--dark-soft); margin-bottom: 12px; }

/* ===== 联系页面 ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* 装饰圆 */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { color: rgba(255,255,255,0.95); }
  .nav-menu > li > a:hover { background: rgba(255,255,255,0.12); color: white; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block:nth-child(even) .content-block-image { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

/* ===== 语言切换器 ===== */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 1000;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.15s;
}
.lang-dropdown a:hover {
  background: var(--bg-section);
  color: var(--primary);
}
@media (max-width: 768px) {
  .lang-switcher { display: none; }
}

/* ===== Google Translate 隐藏 ===== */
.goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-te-gadget { display: none !important; }
body { top: 0 !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ===== 首页：政府与国际组织链接 ===== */
.gov-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gov-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.25s;
}
.gov-link-item:hover {
  background: var(--primary, #0A2463);
  color: #fff;
  border-color: var(--primary, #0A2463);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 36, 99, 0.18);
}

/* ===== 首页：合作伙伴 ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
  transition: all 0.25s;
  text-align: center;
}
.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}
.partner-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2463, #3E92CC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.partner-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}
