/* ============================================================
   荣誉资质页面专属样式 — hc- 前缀，不与原站 style.css 冲突
   部署路径: /skin/css/honor.css
   设计风格: 互联网大厂风格，简洁高效高大上
   ============================================================ */

/* ===== CSS Variables ===== */
:root{
  --hc-primary:#0f6ab4;
  --hc-primary-dark:#0a4d80;
  --hc-primary-light:#e8f4fc;
  --hc-accent:#00c6ff;
  --hc-gold:#d4a843;
  --hc-text:#1a1a2e;
  --hc-text-secondary:#555;
  --hc-text-light:#999;
  --hc-bg:#f7f9fc;
  --hc-white:#fff;
  --hc-border:#eef0f4;
  --hc-shadow:0 4px 24px rgba(15,106,180,0.06);
  --hc-shadow-md:0 8px 30px rgba(15,106,180,0.10);
  --hc-shadow-hover:0 16px 48px rgba(15,106,180,0.16);
  --hc-radius:16px;
  --hc-radius-sm:10px;
  --hc-radius-lg:24px;
  --hc-transition:all .4s cubic-bezier(0.4,0,0.2,1);
}

/* ===== Reset (scoped) ===== */
.hc-page *{margin:0;padding:0;box-sizing:border-box}
.hc-page html{scroll-behavior:smooth}
.hc-page body{font-family:"Microsoft YaHei","微软雅黑",-apple-system,BlinkMacSystemFont,sans-serif}

/* ===== Container ===== */
.hc-container{width:75%;max-width:1200px;margin:0 auto;position:relative}
@media screen and (max-width:1024px){.hc-container{width:92%}}
@media screen and (max-width:768px){.hc-container{width:94%}}

/* ===== Hero ===== */
.hc-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(135deg,#0a1628 0%,#0f6ab4 50%,#0a4d80 100%);
  color:#fff;
  padding:120px 0 60px;
}
.hc-hero::before{
  content:'';
  position:absolute;top:0;left:0;width:100%;height:100%;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:40px 40px;
}
.hc-hero::after{
  content:'';
  position:absolute;bottom:-80px;right:-80px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,198,255,.12) 0%,transparent 70%);
}
.hc-hero .hc-container{position:relative;z-index:2}

/* Hero Tag */
.hc-hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 16px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:30px;
  font-size:13px;color:rgba(255,255,255,.8);
  margin-bottom:24px;
  backdrop-filter:blur(8px);
}
.hc-hero-tag::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--hc-accent);
  box-shadow:0 0 8px var(--hc-accent);
}

/* Hero Title */
.hc-hero h1{
  font-size:42px;font-weight:700;line-height:1.3;
  margin-bottom:20px;letter-spacing:1px;
}
.hc-hero h1 span{color:var(--hc-accent)}
.hc-hero-desc{
  font-size:18px;line-height:1.8;
  color:rgba(255,255,255,.75);
  max-width:600px;margin-bottom:32px;
}

/* Hero Meta */
.hc-hero-meta{display:flex;flex-wrap:wrap;gap:40px}
.hc-hero-meta-item{display:flex;align-items:baseline;gap:8px}
.hc-hero-meta-item .num{
  font-size:36px;font-weight:700;color:var(--hc-accent);
  line-height:1;
}
.hc-hero-meta-item .label{
  font-size:14px;color:rgba(255,255,255,.6);
}

/* Breadcrumb (inside hero) */
.hc-hero-breadcrumb.hc-hero-breadcrumb{
  position:relative;z-index:2;margin-bottom:28px;
}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol{
  display:flex;align-items:center;gap:10px;
  font-size:13px;color:rgba(255,255,255,.55);
  list-style:none;padding:0;margin:0;flex-wrap:wrap;
}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol li{
  list-style:none;padding:0;margin:0;
}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol li a{
  color:rgba(255,255,255,.7);transition:color .3s;
}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol li a:hover{color:#fff}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol li:not(:last-child)::after{
  content:'/';margin-left:10px;color:rgba(255,255,255,.3);
}
.hc-hero-breadcrumb.hc-hero-breadcrumb ol li:last-child{
  color:rgba(255,255,255,.9);
}

/* ===== Section ===== */
.hc-section{padding:80px 0}
.hc-section-header{text-align:center;margin-bottom:50px}
.hc-section-header .hc-eyebrow{
  display:inline-block;font-size:14px;
  color:var(--hc-primary);font-weight:600;
  letter-spacing:2px;text-transform:uppercase;
  margin-bottom:12px;
}
.hc-section-header h2{
  font-size:32px;font-weight:700;
  color:var(--hc-text);margin-bottom:16px;
}
.hc-section-header p{
  font-size:16px;color:var(--hc-text-secondary);
  max-width:600px;margin:0 auto;
}

@media screen and (max-width:768px){
  .hc-section{padding:50px 0}
  .hc-section-header h2{font-size:24px}
  .hc-section-header p{font-size:14px}
  .hc-hero{min-height:340px;padding:90px 0 40px}
  .hc-hero h1{font-size:28px}
  .hc-hero-desc{font-size:15px}
  .hc-hero-meta{gap:24px}
  .hc-hero-meta-item .num{font-size:28px}
}

/* ===== Stats Bar ===== */
.hc-stats{
  background:var(--hc-white);
  padding:0;
  margin-top:-40px;
  position:relative;z-index:10;
}
.hc-stats-inner{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;
  border-radius:var(--hc-radius);
  box-shadow:var(--hc-shadow-md);
  overflow:hidden;
}
.hc-stat-item{
  text-align:center;padding:36px 20px;
  border-right:1px solid var(--hc-border);
  transition:var(--hc-transition);
}
.hc-stat-item:last-child{border-right:none}
.hc-stat-item:hover{background:var(--hc-primary-light)}
.hc-stat-item .hc-stat-icon{
  width:48px;height:48px;margin:0 auto 16px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--hc-primary-light),#d1e9f9);
  color:var(--hc-primary);font-size:22px;
}
.hc-stat-item .hc-stat-num{
  font-size:36px;font-weight:700;color:var(--hc-text);
  line-height:1;margin-bottom:8px;
}
.hc-stat-item .hc-stat-num .hc-stat-suffix{
  font-size:18px;color:var(--hc-primary);
}
.hc-stat-item .hc-stat-label{
  font-size:14px;color:var(--hc-text-secondary);
}

@media screen and (max-width:768px){
  .hc-stats-inner{grid-template-columns:repeat(2,1fr)}
  .hc-stat-item{
    padding:24px 12px;
    border-right:1px solid var(--hc-border);
    border-bottom:1px solid var(--hc-border);
  }
  .hc-stat-item:nth-child(2n){border-right:none}
  .hc-stat-item:nth-last-child(-n+2){border-bottom:none}
  .hc-stat-item .hc-stat-num{font-size:28px}
  .hc-stat-item .hc-stat-icon{width:40px;height:40px;font-size:18px}
}

/* ===== Software Copyrights ===== */
.hc-copyright{background:var(--hc-bg)}
.hc-copyright-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
@media screen and (max-width:1024px){.hc-copyright-grid{grid-template-columns:repeat(2,1fr)}}
@media screen and (max-width:600px){.hc-copyright-grid{grid-template-columns:1fr}}

.hc-copyright-card{
  background:var(--hc-white);
  border-radius:var(--hc-radius);
  padding:32px 28px;
  box-shadow:var(--hc-shadow);
  transition:var(--hc-transition);
  position:relative;overflow:hidden;
  border:1px solid transparent;
}
.hc-copyright-card::before{
  content:'';position:absolute;top:0;left:0;
  width:100%;height:4px;
  background:linear-gradient(90deg,var(--hc-primary),var(--hc-accent));
  transform:scaleX(0);transform-origin:left;
  transition:transform .4s ease;
}
.hc-copyright-card::after{
  content:'';position:absolute;top:-40px;right:-40px;
  width:120px;height:120px;border-radius:50%;
  background:radial-gradient(circle,var(--hc-primary-light) 0%,transparent 70%);
  opacity:0;transition:opacity .4s ease;
}
.hc-copyright-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--hc-shadow-hover);
  border-color:var(--hc-primary);
}
.hc-copyright-card:hover::before{transform:scaleX(1)}
.hc-copyright-card:hover::after{opacity:1}

.hc-copyright-card .hc-cr-head{
  display:flex;align-items:center;gap:16px;
  margin-bottom:20px;position:relative;z-index:2;
}
.hc-copyright-card .hc-cr-icon{
  width:52px;height:52px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--hc-primary),var(--hc-primary-dark));
  color:#fff;font-size:24px;flex-shrink:0;
  box-shadow:0 4px 12px rgba(15,106,180,.25);
}
.hc-copyright-card .hc-cr-badge{
  display:inline-block;
  padding:3px 10px;border-radius:20px;
  font-size:11px;font-weight:600;
  background:var(--hc-primary-light);color:var(--hc-primary);
  letter-spacing:.5px;
}
.hc-copyright-card h3{
  font-size:17px;font-weight:700;
  color:var(--hc-text);margin-bottom:12px;
  line-height:1.4;position:relative;z-index:2;
}
.hc-copyright-card .hc-cr-desc{
  font-size:13px;line-height:1.7;
  color:var(--hc-text-secondary);
  margin-bottom:20px;position:relative;z-index:2;
}
.hc-copyright-card .hc-cr-meta{
  display:flex;flex-direction:column;gap:8px;
  padding-top:16px;border-top:1px solid var(--hc-border);
  position:relative;z-index:2;
}
.hc-copyright-card .hc-cr-meta-item{
  display:flex;align-items:center;gap:8px;
  font-size:12px;color:var(--hc-text-light);
}
.hc-copyright-card .hc-cr-meta-item .hc-cr-meta-label{
  color:var(--hc-text-light);flex-shrink:0;
}
.hc-copyright-card .hc-cr-meta-item .hc-cr-meta-value{
  color:var(--hc-text-secondary);font-weight:500;
}

/* ===== Certificate Gallery ===== */
.hc-gallery{background:var(--hc-white)}
.hc-gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
@media screen and (max-width:1024px){.hc-gallery-grid{grid-template-columns:repeat(3,1fr)}}
@media screen and (max-width:768px){.hc-gallery-grid{grid-template-columns:repeat(2,1fr);gap:16px}}
@media screen and (max-width:480px){.hc-gallery-grid{grid-template-columns:1fr}}

.hc-gallery-item{
  cursor:pointer;
  border-radius:var(--hc-radius);
  overflow:hidden;
  background:var(--hc-white);
  box-shadow:var(--hc-shadow);
  transition:var(--hc-transition);
  border:1px solid var(--hc-border);
  position:relative;
}
.hc-gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:var(--hc-shadow-hover);
  border-color:var(--hc-primary);
}
.hc-gallery-item .hc-gallery-img-wrap{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--hc-bg);
}
.hc-gallery-item .hc-gallery-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.hc-gallery-item:hover .hc-gallery-img-wrap img{
  transform:scale(1.05);
}
.hc-gallery-item .hc-gallery-overlay{
  position:absolute;top:0;left:0;width:100%;height:100%;
  background:linear-gradient(180deg,transparent 50%,rgba(15,106,180,.6) 100%);
  opacity:0;transition:opacity .4s ease;
  display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:20px;
}
.hc-gallery-item:hover .hc-gallery-overlay{opacity:1}
.hc-gallery-item .hc-gallery-overlay span{
  color:#fff;font-size:13px;font-weight:600;
  padding:6px 16px;border:1px solid rgba(255,255,255,.5);
  border-radius:20px;backdrop-filter:blur(4px);
}
.hc-gallery-item .hc-gallery-info{
  padding:14px 16px 16px;
}
.hc-gallery-item .hc-gallery-info h4{
  font-size:14px;font-weight:600;color:var(--hc-text);
  line-height:1.4;
  overflow:hidden;text-overflow:ellipsis;
  white-space:nowrap;
  transition:color .3s;
}
.hc-gallery-item:hover .hc-gallery-info h4{color:var(--hc-primary)}
.hc-gallery-item .hc-gallery-info .hc-gallery-date{
  font-size:12px;color:var(--hc-text-light);
  margin-top:4px;
}

/* ===== Lightbox Modal ===== */
.hc-lightbox{
  display:none;
  position:fixed;top:0;left:0;
  width:100%;height:100%;
  z-index:99999 !important;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(6px);
}
.hc-lightbox.hc-show{display:flex;align-items:center;justify-content:center}
.hc-lightbox-content{
  position:relative;
  max-width:80%;max-height:85vh;
  border-radius:var(--hc-radius);
  overflow:hidden;
  background:var(--hc-white);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  animation:hcZoomIn .3s ease;
}
@keyframes hcZoomIn{
  from{opacity:0;transform:scale(.9)}
  to{opacity:1;transform:scale(1)}
}
.hc-lightbox-content img{
  max-width:100%;max-height:75vh;
  display:block;object-fit:contain;
}
.hc-lightbox-info{
  padding:20px 28px;
  text-align:center;
  border-top:1px solid var(--hc-border);
}
.hc-lightbox-info h4{
  font-size:18px;font-weight:700;color:var(--hc-text);
}
.hc-lightbox-close{
  position:absolute;top:12px;right:12px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:20px;color:var(--hc-text);
  transition:var(--hc-transition);z-index:10;
}
.hc-lightbox-close:hover{
  background:var(--hc-white);
  transform:rotate(90deg);
}

/* ===== Achievement Banner ===== */
.hc-achievement{
  background:linear-gradient(135deg,var(--hc-primary) 0%,var(--hc-primary-dark) 100%);
  padding:60px 0;
  position:relative;overflow:hidden;
}
.hc-achievement::before{
  content:'';position:absolute;top:0;left:0;
  width:100%;height:100%;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:30px 30px;
}
.hc-achievement .hc-container{position:relative;z-index:2}
.hc-achievement-inner{
  display:flex;align-items:center;gap:40px;
}
.hc-achievement-text{flex:1}
.hc-achievement-text h2{
  font-size:28px;font-weight:700;color:#fff;
  margin-bottom:12px;
}
.hc-achievement-text p{
  font-size:16px;color:rgba(255,255,255,.7);
  line-height:1.7;
}
.hc-achievement-visual{
  display:flex;gap:16px;flex-shrink:0;
}
.hc-achievement-badge{
  text-align:center;
  padding:24px 32px;
  border-radius:var(--hc-radius);
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.15);
}
.hc-achievement-badge .num{
  font-size:42px;font-weight:700;color:var(--hc-accent);
  line-height:1;
}
.hc-achievement-badge .label{
  font-size:13px;color:rgba(255,255,255,.6);
  margin-top:8px;
}

@media screen and (max-width:768px){
  .hc-achievement-inner{flex-direction:column;text-align:center}
  .hc-achievement-text h2{font-size:22px}
  .hc-achievement-text p{font-size:14px}
  .hc-achievement-visual{justify-content:center}
  .hc-achievement-badge{padding:16px 24px}
  .hc-achievement-badge .num{font-size:32px}
}

/* ===== CTA ===== */
.hc-cta{
  background:linear-gradient(135deg,#0a1628 0%,#0f6ab4 100%);
  padding:60px 0;text-align:center;color:#fff;
  position:relative;overflow:hidden;
}
.hc-cta::before{
  content:'';position:absolute;top:0;left:0;
  width:100%;height:100%;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:30px 30px;
}
.hc-cta .hc-container{position:relative;z-index:2}
.hc-cta h2{
  font-size:28px;font-weight:700;margin-bottom:16px;
}
.hc-cta p{
  font-size:16px;color:rgba(255,255,255,.7);
  margin-bottom:32px;
}
.hc-cta-btns{
  display:flex;gap:16px;justify-content:center;flex-wrap:wrap;
}
.hc-cta-btns a{
  padding:14px 36px;border-radius:30px;
  font-size:15px;font-weight:600;
  transition:var(--hc-transition);
  display:inline-flex;align-items:center;gap:8px;
}
.hc-cta-btns .hc-btn-primary{
  background:var(--hc-accent);color:#fff;
}
.hc-cta-btns .hc-btn-primary:hover{
  background:#fff;color:var(--hc-primary);
  transform:translateY(-2px);
}
.hc-cta-btns .hc-btn-outline{
  border:1px solid rgba(255,255,255,.3);color:#fff;
}
.hc-cta-btns .hc-btn-outline:hover{
  border-color:#fff;background:rgba(255,255,255,.1);
}

@media screen and (max-width:768px){
  .hc-cta h2{font-size:22px}
  .hc-cta p{font-size:14px}
  .hc-cta-btns a{padding:12px 28px;font-size:14px}
}

/* ===== Pagination ===== */
.hc-pagination{
  display:flex;justify-content:center;align-items:center;
  gap:8px;margin-top:50px;
}
.hc-pagination a,.hc-pagination span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:40px;height:40px;padding:0 12px;
  border-radius:8px;font-size:14px;
  border:1px solid var(--hc-border);
  color:var(--hc-text-secondary);
  transition:var(--hc-transition);
}
.hc-pagination a:hover{
  border-color:var(--hc-primary);color:var(--hc-primary);
}
.hc-pagination .hc-page-active{
  background:var(--hc-primary);color:#fff;
  border-color:var(--hc-primary);
}

/* ===== Scroll Animation ===== */
@keyframes hcFadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.hc-animate{opacity:0}
.hc-animate.hc-in{animation:hcFadeUp .6s ease forwards}

/* ===== Empty State ===== */
.hc-empty{
  text-align:center;padding:80px 20px;
  color:var(--hc-text-light);
}
.hc-empty .hc-empty-icon{
  font-size:48px;margin-bottom:16px;opacity:.3;
}
.hc-empty p{font-size:15px}

/* ============================================================
   荣誉资质详情页 — honor-detail
   ============================================================ */

/* ===== Detail Hero (compact) ===== */
.hc-hero-detail{
  min-height:300px;
  padding:100px 0 50px;
}
.hc-hero-detail h1{
  font-size:30px;
  margin-bottom:16px;
  line-height:1.4;
}
.hc-detail-meta{
  display:flex;flex-wrap:wrap;gap:24px;
  font-size:14px;color:rgba(255,255,255,.55);
}
.hc-detail-meta span{
  display:inline-flex;align-items:center;gap:6px;
}
.hc-detail-meta span::before{
  content:'';width:4px;height:4px;border-radius:50%;
  background:var(--hc-accent);
}

/* ===== Detail Content ===== */
.hc-detail{
  padding:60px 0 80px;
  background:var(--hc-white);
}
.hc-detail-wrapper{
  max-width:860px;margin:0 auto;
}
.hc-detail-image{
  text-align:center;margin-bottom:48px;
}
.hc-detail-image img{
  max-width:100%;max-height:620px;
  border-radius:var(--hc-radius);
  box-shadow:var(--hc-shadow-md);
  border:1px solid var(--hc-border);
  display:block;margin:0 auto;
}
.hc-detail-image-caption{
  margin-top:16px;
  font-size:13px;color:var(--hc-text-light);
  text-align:center;
}
.hc-detail-body{
  font-size:16px;line-height:1.9;
  color:var(--hc-text-secondary);
}
.hc-detail-body h2{
  font-size:22px;font-weight:700;
  color:var(--hc-text);
  margin:32px 0 16px;
  padding-left:14px;
  border-left:4px solid var(--hc-primary);
}
.hc-detail-body h3{
  font-size:18px;font-weight:600;
  color:var(--hc-text);
  margin:24px 0 12px;
}
.hc-detail-body p{margin-bottom:16px}
.hc-detail-body img{
  max-width:100%;border-radius:var(--hc-radius-sm);
  margin:16px 0;
}
.hc-detail-body ul,.hc-detail-body ol{
  padding-left:20px;margin-bottom:16px;
}
.hc-detail-body li{
  margin-bottom:8px;line-height:1.8;
}
.hc-detail-body blockquote{
  margin:20px 0;padding:16px 24px;
  background:var(--hc-primary-light);
  border-left:4px solid var(--hc-primary);
  border-radius:0 var(--hc-radius-sm) var(--hc-radius-sm) 0;
  color:var(--hc-text-secondary);
  font-size:15px;line-height:1.7;
}
.hc-detail-body strong{color:var(--hc-text)}

/* ===== Detail Info Card ===== */
.hc-detail-info-card{
  display:flex;flex-wrap:wrap;gap:16px;
  padding:24px 28px;margin-bottom:40px;
  background:var(--hc-bg);
  border-radius:var(--hc-radius);
  border:1px solid var(--hc-border);
}
.hc-detail-info-item{
  display:flex;align-items:center;gap:8px;
  font-size:13px;
}
.hc-detail-info-item .label{
  color:var(--hc-text-light);
}
.hc-detail-info-item .value{
  color:var(--hc-text-secondary);font-weight:600;
}

/* ===== Prev/Next Navigation ===== */
.hc-detail-nav{
  display:flex;justify-content:space-between;align-items:center;
  gap:20px;
  margin-top:60px;padding-top:40px;
  border-top:1px solid var(--hc-border);
}
.hc-detail-prev,.hc-detail-next{
  flex:1;max-width:280px;
}
.hc-detail-next{text-align:right}
.hc-detail-nav-label{
  display:block;font-size:12px;
  color:var(--hc-text-light);
  margin-bottom:6px;letter-spacing:1px;
  text-transform:uppercase;
}
.hc-detail-prev a,.hc-detail-next a{
  font-size:15px;font-weight:600;
  color:var(--hc-text);
  transition:color .3s;
  display:block;
  overflow:hidden;text-overflow:ellipsis;
  white-space:nowrap;
  text-decoration:none;
}
.hc-detail-prev a:hover,.hc-detail-next a:hover{
  color:var(--hc-primary);
}
.hc-detail-back{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;border-radius:30px;
  font-size:14px;font-weight:600;
  background:var(--hc-primary-light);
  color:var(--hc-primary);
  transition:var(--hc-transition);
  white-space:nowrap;text-decoration:none;
}
.hc-detail-back::before{content:'\2190'}
.hc-detail-back:hover{
  background:var(--hc-primary);color:#fff;
  transform:translateY(-2px);
}

/* ===== Detail Page Responsive ===== */
@media screen and (max-width:768px){
  .hc-hero-detail{
    min-height:240px;padding:80px 0 40px;
  }
  .hc-hero-detail h1{font-size:22px}
  .hc-detail-meta{flex-direction:column;gap:8px;font-size:13px}
  .hc-detail{padding:40px 0 50px}
  .hc-detail-body{font-size:15px}
  .hc-detail-body h2{font-size:18px}
  .hc-detail-body h3{font-size:16px}
  .hc-detail-image{margin-bottom:32px}
  .hc-detail-info-card{
    flex-direction:column;gap:10px;
    padding:20px;
  }
  .hc-detail-nav{
    flex-direction:column;gap:16px;text-align:center;
  }
  .hc-detail-prev,.hc-detail-next{
    max-width:100%;text-align:center;
  }
  .hc-detail-back{order:-1}
}
@media screen and (max-width:480px){
  .hc-hero-detail h1{font-size:19px}
  .hc-detail-body{font-size:14px;line-height:1.8}
}
