/* ===== GAADI Website Stylesheet ===== */
/* Color Palette:
   Primary Blue: #1a5276
   Secondary Blue: #2c7fb8
   Accent Gold: #c8a951
   Dark: #1a1a2e
   Light Gray: #f5f7fa
   Text: #333
*/

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html.en { font-family: "Helvetica Neue", Arial, sans-serif; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Language Toggle ===== */
.lang-en { display: none; }
html.en .lang-zh { display: none !important; }
html.en .lang-en.lang-block,
html.en div.lang-en,
html.en p.lang-en,
html.en li.lang-en,
html.en h1.lang-en,
html.en h2.lang-en,
html.en h3.lang-en,
html.en h4.lang-en,
html.en section.lang-en { display: block !important; }
html.en .lang-en.lang-flex { display: flex !important; }
html.en span.lang-en,
html.en a.lang-en,
html.en strong.lang-en,
html.en em.lang-en,
html.en i.lang-en,
html.en label.lang-en,
html.en button.lang-en { display: inline !important; }
html.en .header-inner { max-width: 1360px; }
html.en .logo { gap: 8px; }
html.en .logo img { height: 48px; }
html.en .logo-text .zh { font-size: 12px; line-height: 1.22; max-width: 230px; }
html.en .nav-menu > li > a { padding-left: 9px; padding-right: 9px; font-size: 14px; letter-spacing: 0; }
html.en .header-right { gap: 8px; }
html.en .dropdown-menu { min-width: 210px; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 52px; width: auto;
  background: rgba(255,255,255,0.9); border-radius: 8px; padding: 4px;
}
.logo-text {
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 45px;
}
.logo-text .zh {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 1px;
}

/* Navigation */
.nav-menu { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 0 16px; line-height: 70px;
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
  transition: all 0.3s; letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: #c8a951; }
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: #c8a951; transition: width 0.3s;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after { width: 60%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 70px; left: 50%; transform: translateX(-50%);
  background: #fff; min-width: 180px; padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 4px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px; color: #333;
  transition: all 0.3s;
}
.dropdown-menu a:hover { background: #f5f7fa; color: #1a5276; padding-left: 25px; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 15px; }
.btn-contact {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  min-width: 92px; min-height: 38px; white-space: nowrap; text-align: center; line-height: 1.2;
  padding: 8px 20px; background: linear-gradient(135deg, #c8a951, #d4b96a);
  color: #1a1a2e; border-radius: 4px; font-size: 13px; font-weight: 600;
  transition: all 0.3s;
}
.btn-contact:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(200,169,81,0.4); }
.lang-switch { color: rgba(255,255,255,0.7); font-size: 13px; cursor: pointer; }
.lang-toggle-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.6);
  background: transparent; color: #c8a951;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle-btn:hover { background: #c8a951; color: #1a1a2e; }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; }

/* ===== Header Search Toggle ===== */
.search-toggle {
  background: none; border: none; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); transition: all 0.3s;
}
.search-toggle:hover { background: rgba(255,255,255,0.1); color: #c8a951; }

/* ===== Search Overlay ===== */
.search-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,0.96);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.search-overlay.active { display: flex; opacity: 1; }
.search-close {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none; color: #fff;
  font-size: 42px; line-height: 1; cursor: pointer;
  width: 50px; height: 50px; border-radius: 50%;
  transition: all 0.3s;
}
.search-close:hover { color: #c8a951; transform: rotate(90deg); }
.search-box {
  width: 90%; max-width: 680px; padding: 0 20px;
  text-align: center;
}
.search-box .search-en {
  color: #c8a951; font-size: 13px; letter-spacing: 4px;
  font-weight: 500; margin-bottom: 12px;
}
.search-box h3 {
  color: #fff; font-size: 30px; letter-spacing: 3px;
  font-weight: 700; margin-bottom: 35px;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(200,169,81,0.5);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  transition: all 0.3s;
}
.search-input-wrap:focus-within {
  border-color: #c8a951;
  background: rgba(255,255,255,0.12);
}
.search-input-wrap svg { flex-shrink: 0; color: #c8a951; }
.search-input-wrap input {
  flex: 1; height: 50px; margin-left: 14px;
  background: none; border: none;
  color: #fff; font-size: 16px;
  outline: none;
}
.search-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.search-submit {
  padding: 0 32px; height: 50px;
  background: linear-gradient(135deg, #c8a951, #d4b96a);
  border: none; border-radius: 50px;
  color: #1a1a2e; font-size: 15px; font-weight: 600;
  letter-spacing: 2px; cursor: pointer;
  transition: all 0.3s;
}
.search-submit:hover {
  background: linear-gradient(135deg, #d4b96a, #e0c87a);
  box-shadow: 0 4px 20px rgba(200,169,81,0.5);
}
.search-box .search-hint {
  color: rgba(255,255,255,0.5); font-size: 13px;
  margin-top: 20px; letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .search-close { top: 20px; right: 20px; font-size: 36px; }
  .search-box h3 { font-size: 22px; letter-spacing: 2px; margin-bottom: 25px; }
  .search-box .search-en { font-size: 11px; letter-spacing: 2px; }
  .search-input-wrap { padding: 6px 6px 6px 18px; flex-wrap: wrap; }
  .search-input-wrap input { height: 44px; font-size: 14px; margin-left: 10px; min-width: 0; }
  .search-submit { padding: 0 22px; height: 40px; font-size: 13px; }
}

/* ===== Hero Banner ===== */
.hero {
  position: relative; height: 600px; margin-top: 70px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide .bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(26,82,118,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  color: #fff;
}
.hero-content .subtitle-top {
  font-size: 16px; color: #c8a951; font-weight: 500;
  letter-spacing: 3px; margin-bottom: 15px;
}
.hero-content h1 {
  font-size: 42px; font-weight: 700; letter-spacing: 3px;
  margin-bottom: 10px;
}
.hero-content .subtitle {
  font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 8px;
}
.hero-content .desc {
  font-size: 14px; color: rgba(255,255,255,0.7); max-width: 700px;
  line-height: 1.8; margin-top: 15px;
}
.hero-buttons { display: flex; gap: 15px; margin-top: 30px; }
.btn-primary {
  padding: 12px 32px; background: linear-gradient(135deg, #c8a951, #d4b96a);
  color: #1a1a2e; border: none; border-radius: 4px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,81,0.4); }
.btn-outline {
  padding: 12px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  border-radius: 4px; font-size: 14px; cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: #c8a951; color: #c8a951; }

/* Hero Dots */
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dots .dot {
  width: 30px; height: 3px; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.3s;
}
.hero-dots .dot.active { background: #c8a951; width: 50px; }

/* ===== Stats Section ===== */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #1a5276 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-size: 48px; font-weight: 700; color: #c8a951;
  line-height: 1;
}
.stat-number .unit { font-size: 24px; margin-left: 2px; }
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 10px;
}

/* ===== Section Common ===== */
.section { padding: 80px 0; }
.section-light { background: #f5f7fa; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: 30px; font-weight: 700; color: #1a1a2e;
  margin-bottom: 10px;
}
.section-header .en-title {
  font-size: 13px; color: #999; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 15px;
}
.section-header p {
  font-size: 15px; color: #666; max-width: 700px; margin: 0 auto;
  line-height: 1.8;
}
.section-header .divider {
  width: 50px; height: 3px; background: #c8a951; margin: 15px auto;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}
.service-card {
  background: #fff; border-radius: 8px; padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: linear-gradient(90deg, #1a5276, #c8a951);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, #e8f4fd, #d1ecf9);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 28px;
}
.service-card h3 { font-size: 18px; color: #1a1a2e; margin-bottom: 12px; font-weight: 600; }
.service-card p { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 15px; }
.service-card .meta { font-size: 12px; color: #999; margin-bottom: 5px; }
.service-card .link {
  display: inline-flex; align-items: center; gap: 5px;
  color: #1a5276; font-size: 13px; font-weight: 500; margin-top: 10px;
}
.service-card .link:hover { color: #c8a951; }

/* Two-col service row */
.services-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 25px; }

.certificate-contents-section .services-grid {
  gap: 28px;
}
.certificate-contents-section .services-grid + .services-grid {
  margin-top: 28px;
}

/* ===== GAIEA Section ===== */
.gaiea-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.gaiea-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.1), transparent);
}
.gaiea-content { position: relative; z-index: 2; text-align: center; }
.gaiea-content h2 { font-size: 30px; color: #c8a951; margin-bottom: 5px; }
.gaiea-content .en-name { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 15px; }
.gaiea-content .tagline { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 25px; }
.gaiea-content .desc { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 800px; margin: 0 auto 30px; line-height: 1.8; }
.gaiea-stats {
  display: flex; justify-content: center; gap: 50px; margin-bottom: 35px;
  flex-wrap: wrap;
}
.gaiea-stat { text-align: center; }
.gaiea-stat .label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 5px; }
.gaiea-stat .value { font-size: 20px; font-weight: 700; color: #c8a951; }
.btn-gaiea {
  display: inline-block; padding: 14px 40px;
  background: linear-gradient(135deg, #c8a951, #d4b96a);
  color: #1a1a2e; border-radius: 4px; font-size: 15px;
  font-weight: 600; transition: all 0.3s;
}
.btn-gaiea:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,169,81,0.4); }

/* ===== Advantages ===== */
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; overflow: hidden; }
.advantage-wide { grid-column: span 2; }
.advantage-item {
  display: flex; gap: 20px; padding: 25px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.advantage-item:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.advantage-num {
  flex-shrink: 0; width: 45px; height: 45px; border-radius: 10px;
  background: linear-gradient(135deg, #1a5276, #2c7fb8);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.advantage-text h4 { font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.advantage-text p { font-size: 13px; color: #666; line-height: 1.7; }

/* ===== News Section ===== */
.news-list { display: flex; flex-direction: column; gap: 15px; }
.news-item {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px; background: #fff; border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.news-item:hover { transform: translateX(5px); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.news-tag {
  flex-shrink: 0; padding: 4px 12px; border-radius: 3px;
  font-size: 12px; font-weight: 500;
}
.news-tag.news { background: #e8f4fd; color: #1a5276; }
.news-tag.notice { background: #fef3e2; color: #b8860b; }
.news-tag.event { background: #e8f5e9; color: #2e7d32; }
.news-tag.info { background: #f3e5f5; color: #7b1fa2; }
.news-item .title { flex: 1; font-size: 14px; color: #333; }
.news-item .title:hover { color: #1a5276; }
.news-item .date { flex-shrink: 0; font-size: 13px; color: #999; }
.view-all {
  display: inline-flex; align-items: center; gap: 5px;
  color: #1a5276; font-size: 14px; margin-top: 20px;
}
.view-all:hover { color: #c8a951; }

/* ===== Footer ===== */
.footer {
  background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 2fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .name { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.footer-brand .en-name { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 15px; }
.footer-brand .info { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-links h4 { color: #fff; font-size: 14px; margin-bottom: 15px; font-weight: 600; }
.footer-links a { display: block; font-size: 13px; padding: 4px 0; transition: all 0.3s; }
.footer-links a:hover { color: #c8a951; padding-left: 5px; }
.footer-contact h4 { color: #fff; font-size: 14px; margin-bottom: 15px; font-weight: 600; }
.footer-contact p { font-size: 13px; margin-bottom: 8px; line-height: 1.6; }
.footer-bottom {
  text-align: center; padding: 20px 0;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ===== Page Banner ===== */
.page-banner {
  height: 300px; margin-top: 70px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center; color: #fff; position: relative;
}
.page-banner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,82,118,0.75) 100%);
  z-index: 0;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.page-banner .subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.breadcrumb {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: rgba(255,255,255,0.5); z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #c8a951; }

/* ===== Content Page ===== */
.content-section { padding: 60px 0; }
.content-body { }
.content-body h2 {
  font-size: 24px; color: #1a1a2e; margin: 40px 0 15px;
  padding-bottom: 10px; border-bottom: 2px solid #f0f0f0;
}
.content-body h3 { font-size: 18px; color: #1a5276; margin: 25px 0 10px; }
.content-body p { font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 15px; }
.content-body ul { margin: 10px 0 20px 20px; }
.content-body ul li {
  position: relative; padding-left: 15px; font-size: 14px;
  color: #555; line-height: 1.9; margin-bottom: 5px;
}
.content-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: #c8a951;
}

/* ===== Timeline ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: #e0e0e0; transform: translateX(-50%);
}
.timeline-item {
  position: relative; width: 50%; padding: 0 40px 40px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item .year {
  display: inline-block; padding: 6px 20px;
  background: linear-gradient(135deg, #1a5276, #2c7fb8);
  color: #fff; border-radius: 20px; font-size: 14px; font-weight: 600;
  margin-bottom: 10px;
}
.timeline-item .dot {
  position: absolute; top: 8px; width: 14px; height: 14px;
  border-radius: 50%; background: #c8a951; border: 3px solid #fff;
  box-shadow: 0 0 0 2px #c8a951;
}
.timeline-item:nth-child(odd) .dot { right: -7px; }
.timeline-item:nth-child(even) .dot { left: -7px; }
.timeline-item h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.timeline-item p { font-size: 13px; color: #666; line-height: 1.7; }

/* ===== Table ===== */
.data-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 13px; background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.data-table thead th {
  background: #1a5276; color: #fff; padding: 14px 16px;
  text-align: left; font-weight: 500;
}
.data-table tbody td {
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
}
.data-table tbody tr:hover { background: #f8f9fd; }
.data-table .check { color: #2e7d32; font-weight: bold; }
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive .data-table {
  min-width: 680px;
}

/* ===== Org Chart ===== */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.org-level { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.org-box {
  padding: 15px 25px; border-radius: 8px; text-align: center;
  min-width: 200px; transition: all 0.3s;
}
.org-box.level-1 {
  background: linear-gradient(135deg, #1a1a2e, #1a5276);
  color: #fff; font-weight: 600;
}
.org-box.level-2 {
  background: linear-gradient(135deg, #1a5276, #2c7fb8);
  color: #fff;
}
.org-box.level-3 { background: #e8f4fd; color: #1a5276; border: 1px solid #d1ecf9; }
.org-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.org-box p { font-size: 13px; opacity: 1; color: rgba(255,255,255,0.95); }
.org-box.level-3 p { color: #1a5276; }
.org-connector {
  width: 2px; height: 20px; background: #ccc; margin: 0 auto;
}

/* ===== Verification Form ===== */
.verify-form {
  max-width: 600px; margin: 30px auto; padding: 30px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; color: #333; margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 15px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 14px; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1a5276; outline: none; }
.btn-submit {
  width: 100%; padding: 12px; background: linear-gradient(135deg, #1a5276, #2c7fb8);
  color: #fff; border: none; border-radius: 4px; font-size: 15px;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(26,82,118,0.4); }

/* Verify Result */
.verify-result {
  max-width: 600px; margin: 20px auto; padding: 25px;
  background: #f0faf0; border: 1px solid #c8e6c9; border-radius: 8px;
  display: none;
}
.verify-result.show { display: block; }
.verify-result h3 { color: #2e7d32; margin-bottom: 15px; font-size: 16px; }
.verify-result .field { display: flex; padding: 8px 0; border-bottom: 1px solid #e0e0e0; }
.verify-result .field .label { width: 120px; font-size: 13px; color: #666; flex-shrink: 0; }
.verify-result .field .value { font-size: 13px; color: #333; font-weight: 500; }

/* ===== Contact Form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 15px; }
.contact-info-item .icon {
  width: 45px; height: 45px; border-radius: 10px;
  background: linear-gradient(135deg, #e8f4fd, #d1ecf9);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; color: #1a1a2e; margin-bottom: 5px; }
.contact-info-item p { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== Process Steps ===== */
.process-steps { display: flex; flex-direction: column; gap: 25px; margin: 30px 0; }
.process-step {
  display: flex; gap: 20px; padding: 20px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #1a5276, #2c7fb8);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.step-content h4 { font-size: 15px; color: #1a1a2e; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: #666; line-height: 1.7; }

/* ===== News Detail ===== */
.news-detail { }
.news-detail .meta {
  display: flex; gap: 20px; font-size: 13px; color: #999;
  margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0;
}
.article-content {
  min-height: 280px;
}
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.news-card {
  background: #fff; border-radius: 8px; padding: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05); transition: all 0.3s;
}
a.news-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.news-card .tag { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 11px; margin-bottom: 10px; }
.news-card h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 10px; line-height: 1.5; }
.news-card .excerpt { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 10px; }
.news-card .date { font-size: 12px; color: #999; }

/* ===== Article Navigation ===== */
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}
.article-nav a {
  flex: 1;
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: 6px;
  background: #f9f9f9;
  transition: all 0.3s;
}
.article-nav a:last-child {
  text-align: right;
}
.article-nav a:hover {
  background: #f0f4f8;
  color: #1a5276;
}

/* ===== CTA Center ===== */
.cta-center { text-align: center; margin: 40px 0; }
.cta-box {
  text-align: center; margin: 40px 0; padding: 30px;
  background: #f8f9fd; border-radius: 8px;
}
.cta-box .btn-primary,
.cta-box .btn-outline {
  display: inline-block;
  margin: 6px;
  vertical-align: middle;
}
.cta-box .btn-outline,
.cta-center .btn-outline,
.content-section .btn-outline,
.content-block .btn-outline,
.section .btn-outline {
  background: transparent; border: 2px solid #1a5276; color: #1a5276;
}
.cta-box .btn-outline:hover,
.cta-center .btn-outline:hover,
.content-section .btn-outline:hover,
.content-block .btn-outline:hover,
.section .btn-outline:hover {
  background: #1a5276; color: #fff; border-color: #1a5276;
}
.membership-cta,
.membership-apply-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  text-align: center;
  flex-wrap: wrap;
}
.membership-cta .btn-primary,
.membership-cta .btn-outline,
.membership-apply-cta .btn-primary,
.membership-apply-cta .btn-outline {
  min-width: 170px;
  text-align: center;
}

/* ===== Scroll Animation ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 45px; height: 45px; border-radius: 50%;
  background: #1a5276; color: #fff; border: none;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s; z-index: 999;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: #c8a951; transform: translateY(-3px); }

/* ===== Material Requirement Cards ===== */
.material-card {
  background: #fff; border-radius: 8px; padding: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05); margin-bottom: 25px;
}
.material-card h3 { font-size: 18px; color: #1a1a2e; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.material-list { display: flex; flex-direction: column; gap: 15px; }
.material-item { display: flex; gap: 10px; padding: 12px 15px; background: #f8f9fd; border-radius: 6px; border-left: 3px solid #1a5276; }
.material-item strong { color: #1a1a2e; white-space: nowrap; }
.material-item span { color: #555; }

/* ===== Pagination ===== */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 40px; padding: 20px 0;
}
.page-btn {
  padding: 8px 16px; border: 1px solid #ddd; border-radius: 4px;
  background: #fff; color: #333; font-size: 14px; cursor: pointer;
  transition: all 0.3s;
}
.page-btn:hover:not([disabled]):not(.active) {
  border-color: #1a5276; color: #1a5276; background: #f5f7fa;
}
.page-btn.active {
  background: #1a5276; color: #fff; border-color: #1a5276;
}
.page-btn[disabled] {
  opacity: 0.4; cursor: not-allowed;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; padding-left: 50px; text-align: left !important; }
  .timeline-item .dot { left: 13px !important; right: auto !important; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .header-inner { height: 60px; }
  .hero { margin-top: 60px; }
  .page-banner { margin-top: 60px; }
  .nav-menu {
    display: none; flex-direction: column; position: absolute;
    top: 60px; left: 0; width: 100%; background: #1a1a2e;
    padding: 15px 0; max-height: 80vh; overflow-y: auto;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { line-height: 45px; padding: 0 20px; }
  .nav-menu > li > a::after { display: none; }
  .menu-toggle { display: flex; }
  .header-right .btn-contact, .header-right .lang-switch { display: none; }
  .lang-toggle-btn { width: 34px; height: 34px; font-size: 11px; }
  /* Mobile dropdown */
  .dropdown { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(0,0,0,0.15); box-shadow: none; border-radius: 0;
    display: none; padding: 5px 0; min-width: auto;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    color: rgba(255,255,255,0.6); padding: 9px 20px 9px 35px; font-size: 13px;
    border-left: 2px solid transparent;
  }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.04); color: #c8a951; border-left-color: #c8a951; padding-left: 35px; }
  /* Hero responsive */
  .hero { height: auto; min-height: 400px; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-content .subtitle-top { font-size: 11px; letter-spacing: 1px; }
  .hero-content h1 { font-size: 24px; letter-spacing: 1px; }
  .hero-content .subtitle { font-size: 14px; }
  .hero-content .desc { font-size: 13px; display: none; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons a { text-align: center; }
  .hero-dots { bottom: 15px; }
  /* Grid responsive */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantage-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }
  .gaiea-stats { flex-wrap: wrap; gap: 15px; }
  .gaiea-stat { min-width: 40%; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .content-body > .data-table,
  .content-block > .data-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-body > .data-table th,
  .content-body > .data-table td,
  .content-block > .data-table th,
  .content-block > .data-table td {
    min-width: 160px;
    white-space: normal;
    overflow-wrap: normal;
  }
  .content-body > .data-table th:first-child,
  .content-body > .data-table td:first-child,
  .content-block > .data-table th:first-child,
  .content-block > .data-table td:first-child {
    min-width: 130px;
  }
  .content-body > .data-table th:last-child,
  .content-body > .data-table td:last-child,
  .content-block > .data-table th:last-child,
  .content-block > .data-table td:last-child {
    min-width: 320px;
  }
  .table-responsive .data-table {
    min-width: 680px;
  }
  .data-table strong {
    white-space: normal;
  }
  .cta-box {
    padding: 24px 18px;
  }
  .cta-box .btn-primary,
  .cta-box .btn-outline {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0;
    text-align: center;
  }
  .content-block > .btn-primary,
  .content-block > .btn-outline {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0 !important;
    text-align: center;
  }
  .content-body div > .btn-primary,
  .content-body div > .btn-outline {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0 !important;
    text-align: center;
  }
  .article-nav {
    flex-direction: column;
    gap: 12px;
  }
  .article-nav a,
  .article-nav a:last-child {
    width: 100%;
    text-align: left;
  }
  .news-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px 14px;
    padding: 18px;
  }
  .news-item:hover { transform: none; }
  .news-tag {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .news-item .date {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    font-size: 12px;
  }
  .news-item .title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.55;
  }
  .membership-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 32px;
  }
  .membership-apply-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 32px;
  }
  .membership-cta .btn-primary,
  .membership-cta .btn-outline,
  .membership-apply-cta .btn-primary,
  .membership-apply-cta .btn-outline {
    display: block;
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
  .article-content { min-height: 220px; }
  .page-banner { height: 220px; }
  .page-banner h1 { font-size: 24px; }
  .footer-grid { gap: 30px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 20px; }
  .hero-content .subtitle-top { font-size: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 22px; }
  .material-card {
    padding: 22px 18px;
  }
  .material-card h3 {
    font-size: 17px;
    line-height: 1.35;
  }
  .material-item {
    flex-direction: column;
    gap: 7px;
    padding: 14px 14px;
  }
  .material-item strong {
    white-space: normal;
    line-height: 1.45;
  }
  .material-item span {
    line-height: 1.65;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .article-content { min-height: 180px; }
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 6px;
  margin: 40px 0 20px;
  padding: 0;
  flex-wrap: wrap;
}
.pagination li {
  display: inline-block;
}
.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  background: #fff;
}
.pagination li a:hover {
  background: #1a5276;
  color: #fff;
  border-color: #1a5276;
}
.pagination li.active span {
  background: #1a5276;
  color: #fff;
  border-color: #1a5276;
  font-weight: 600;
}
.pagination li.disabled span {
  color: #bbb;
  background: #f5f5f5;
  border-color: #eee;
  cursor: not-allowed;
}

/* ===== PDF Resource Lists ===== */
.resource-section {
  background: #fff;
}

.resource-intro {
  max-width: 920px;
  margin: 0 auto 32px;
  text-align: center;
}

.resource-search {
  max-width: 920px;
  margin: 0 auto 34px;
  padding: 22px;
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
}

.resource-search-compact {
  max-width: 760px;
}

.resource-search-label {
  display: block;
  margin-bottom: 10px;
  color: #09142f;
  font-weight: 700;
  font-size: 15px;
}

.resource-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.resource-search-row input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 15px;
  border: 1px solid #d8e0e8;
  border-radius: 6px;
  color: #09142f;
  font-size: 15px;
  background: #fff;
}

.resource-search-row input:focus {
  border-color: #1a5276;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.12);
}

.resource-search-row .btn-primary,
.resource-search-row .btn-outline {
  height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.whitepaper-intro,
.whitepaper-search,
.whitepaper-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.translation-report-intro,
.translation-report-search,
.translation-report-empty,
.translation-report-results {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.resource-empty.translation-report-empty {
  max-width: 980px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(9, 20, 47, 0.07);
}

.resource-cover {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf5fb;
}

.resource-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.resource-card:hover .resource-cover img {
  transform: scale(1.04);
}

.resource-cover-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5276;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.whitepaper-card {
  border-color: #e5ebf1;
  box-shadow: 0 14px 32px rgba(9, 20, 47, 0.08);
}

.whitepaper-card .whitepaper-cover {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #09142f;
  text-decoration: none;
}

.whitepaper-cover-frame,
.whitepaper-cover-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.whitepaper-cover-frame {
  overflow: hidden;
  background: #fff;
}

.whitepaper-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whitepaper-cover-inner {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px 28px;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(145deg, rgba(26, 26, 46, 0.98), rgba(26, 82, 118, 0.92)),
    url('/temp/assets/images/gaadi/banner-research.jpg');
  background-position: center;
  background-size: cover;
}

.whitepaper-cover-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200, 169, 81, 0.22), transparent 42%),
    rgba(9, 20, 47, 0.2);
  pointer-events: none;
}

.whitepaper-cover-inner::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 22px;
  width: 245px;
  height: 145px;
  background-image: url('/temp/assets/images/gaadi/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.13;
  filter: grayscale(1) brightness(2.6);
  pointer-events: none;
}

.whitepaper-cover-kicker,
.whitepaper-cover-direction {
  position: relative;
  z-index: 1;
}

.whitepaper-cover-kicker {
  display: block;
  margin: 0;
  color: #d2b258;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.whitepaper-cover-direction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 15px;
  border: 1px solid rgba(210, 178, 88, 0.86);
  border-radius: 4px;
  color: #fff;
  background: rgba(210, 178, 88, 0.18);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.whitepaper-card .resource-card-body {
  padding: 20px 22px 22px;
}

.whitepaper-card h3 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitepaper-card p {
  margin-bottom: 0;
  display: -webkit-box;
  min-height: 49px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.resource-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.resource-date {
  color: #7c8794;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.resource-card h3 {
  margin: 0 0 12px;
  color: #09142f;
  font-size: 19px;
  line-height: 1.4;
}

.resource-card h3 a,
.report-result-item h3 a {
  color: inherit;
  text-decoration: none;
}

.resource-card p {
  flex: 1;
  margin: 0 0 18px;
  color: #344254;
  font-size: 14px;
  line-height: 1.75;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #1a5276;
  border-radius: 6px;
  color: #1a5276;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.resource-link:hover {
  background: #1a5276;
  color: #fff;
}

.resource-empty {
  max-width: 760px;
  margin: 28px auto;
  padding: 28px;
  border: 1px dashed #cad5df;
  border-radius: 8px;
  color: #596777;
  text-align: center;
  background: #fbfcfd;
}

.resource-query-prompt {
  margin-top: 10px;
}

.report-result-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.report-result-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 20, 47, 0.06);
}

.report-no {
  display: inline-flex;
  max-width: 100%;
  gap: 7px;
  align-items: baseline;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #677386;
  font-size: 13px;
  line-height: 1.35;
  background: #f4f8fb;
}

.report-no strong {
  color: #1a5276;
  font-size: 14px;
  white-space: nowrap;
}

.report-result-item h3 {
  margin: 0 0 10px;
  color: #09142f;
  font-size: 21px;
  line-height: 1.35;
}

.report-result-item h3 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-result-item p {
  margin: 0;
  color: #344254;
  font-size: 14px;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-result-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-height: 110px;
  padding: 16px;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  background: #f8fafc;
}

.report-result-side .resource-date {
  margin-bottom: 0;
  color: #596777;
  text-align: center;
  font-size: 14px;
}

.report-result-side .resource-link {
  width: 100%;
  align-self: stretch;
}

@media (max-width: 992px) {
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .resource-search {
    padding: 18px;
  }

  .resource-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .resource-search-row .btn-primary,
  .resource-search-row .btn-outline {
    width: 100%;
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .resource-card-body {
    padding: 18px;
  }

  .resource-card h3,
  .report-result-item h3 {
    font-size: 18px;
  }

  .whitepaper-cover-title,
  html.en .whitepaper-cover-title {
    font-size: 18px;
  }

  .report-result-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .report-result-side {
    align-items: flex-start;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
  }

  .report-result-side .resource-date {
    text-align: left;
  }

  .report-result-side .resource-link {
    width: auto;
    align-self: flex-start;
  }
}
