/*
Theme Name:     GeneratePress Child
Theme URI:      https://wiilove.com/
Description:    Child theme for the Twenty Ten theme
Author:         Zijian LI
Author URI:     https://wiilove.com/about/
Template:       generatepress
Version:        0.0.1
*/

/* =============================================
 * KPI Strip for About page (added 2026-07-01)
 * Used by inline HTML on page ID 155
 * ============================================= */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}
.kpi-strip .kpi-item {
  padding: 10px;
}
.kpi-strip .kpi-num {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #f0552b;
  line-height: 1.1;
  margin-bottom: 8px;
}
.kpi-strip .kpi-label {
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.kpi-strip .kpi-en {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi-strip .kpi-num {
    font-size: 32px;
  }
}


/* Contact page - 2-column layout (migrated from Elementor) */
.contact-info { gap: 30px; }
.contact-info .wp-block-column { padding: 24px; background: #fafafa; border-radius: 6px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 12px 0; font-size: 16px; line-height: 1.6; border-bottom: 1px solid #eee; }
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci-icon { display: inline-block; width: 28px; color: #f0552b; font-size: 18px; }
.contact-list strong { color: #333; margin-right: 4px; }
.contact-list a { color: #f0552b; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }


/* Home page - 3-col feature cards (migrated from Elementor) */
.home-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; max-width: 1200px; }
.home-features .hf-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-features .hf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(240,85,43,0.15);
}
.home-features .hf-icon {
  font-size: 56px;
  color: #f0552b;
  line-height: 1;
  margin-bottom: 16px;
}
.home-features h3 {
  color: #333;
  font-size: 22px;
  margin: 0 0 14px;
}
.home-features p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  min-height: 96px;
  margin: 0 0 20px;
}
.home-features .hf-link {
  display: inline-block;
  padding: 10px 24px;
  background: #f0552b;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}
.home-features .hf-link:hover { background: #d9441a; color: #fff; }
@media (max-width: 768px) {
  .home-features { grid-template-columns: 1fr; }
  .home-features p { min-height: 0; }
