/* ============================
   全局样式 & 变量
============================ */
:root {
    --primary-red: #C82B2B;
    --accent-gold: #EAA827;
    --light-gold: #F8E9C6;
    --dark-text: #332A2A;
    --light-text: #6D5D5D;
    --bg-white: #ffffff;
    --bg-off-white: #FDF9F3;
    --header-height-desktop: 90px;
    --header-height-mobile: 70px;
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-size-h1: clamp(2.25rem, 5vw, 4rem);
    --font-size-h2: clamp(2rem, 4.5vw, 2.625rem);
    --font-size-h3: clamp(1.25rem, 2.5vw, 1.5rem);
    --font-size-p: clamp(0.9rem, 1.5vw, 1rem);
    --font-size-large-p: clamp(1rem, 2vw, 1.125rem);
    --section-padding: clamp(4rem, 10vw, 6.25rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height-desktop); }
body { font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', 'Noto Sans SC', 'Poppins', sans-serif; color: var(--dark-text); line-height: 1.7; background-color: var(--bg-off-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--accent-gold); outline-offset: 3px; border-radius: 4px; }
input:focus-visible, textarea:focus-visible, button:focus-visible { outline-offset: 0; }
.slider-nav:focus-visible { outline: 3px solid white; }

/* ============================
   通用组件
============================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 14px 38px; background: var(--primary-red); color: var(--bg-white); border-radius: 50px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); border: 2px solid transparent; cursor: pointer; text-align: center; font-size: 1rem; position: relative; overflow: hidden; z-index: 1; }
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: rgba(255, 255, 255, 0.2); transition: width 0.4s ease; z-index: -1; }
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(200, 43, 43, 0.3); }
.btn:hover::before { width: 100%; }
.btn-secondary { background: var(--accent-gold); color: var(--dark-text); }
.btn-secondary:hover { box-shadow: 0 10px 25px rgba(234, 168, 39, 0.4); }
.section { padding: var(--section-padding) 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: var(--font-size-h2); color: var(--primary-red); font-weight: 700; position: relative; display: inline-block; margin-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent-gold); border-radius: 2px; }
.section-title p { color: var(--light-text); font-size: var(--font-size-large-p); max-width: 700px; margin: 30px auto 0; }

/* ============================
   滚动动画
============================ */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================
   头部导航 Header
============================ */
#header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; transition: all 0.4s ease; height: var(--header-height-desktop); }
#header.scrolled { background: var(--bg-white); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); height: 75px; }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; transition: var(--transition); }
.logo img { height: 45px; margin-right: 12px; transition: var(--transition); }
.logo h1 { font-family: 'STXingkai', '华文行楷', cursive; font-size: 2rem; color: var(--bg-white); font-weight: 700; transition: color 0.4s ease; white-space: nowrap; }
.logo span { color: var(--accent-gold); font-weight: 700; }
#header.scrolled .logo h1 { color: var(--primary-red); }
#header.scrolled .logo img { transform: scale(1.1); }
.nav-menu { display: flex; align-items: center; }
.nav-menu li { margin: 0 18px; }
.nav-menu .nav-menu-btn-wrapper { display: none; }
.nav-link { color: var(--bg-white); font-weight: 500; font-size: 1rem; padding-bottom: 5px; position: relative; transition: color 0.4s ease; }
#header.scrolled .nav-link { color: var(--dark-text); }
#header.scrolled .nav-link:hover { color: var(--primary-red); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--accent-gold); transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-btns { display: flex; align-items: center; gap: 15px; }
.nav-btns .btn-desktop-only { padding: 8px 24px; font-size: 14px; border: 1px solid var(--bg-white); background: transparent; transition: var(--transition); }
.nav-btns .btn-desktop-only:hover { background: var(--bg-white); color: var(--primary-red); }
#header.scrolled .nav-btns .btn-desktop-only { background: var(--primary-red); border-color: var(--primary-red); color: var(--bg-white); }
#header.scrolled .nav-btns .btn-desktop-only:hover { background: #A32222; border-color: #A32222; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200, 43, 43, 0.2); }
.hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--bg-white); background: none; border: none; padding: 10px; transition: color 0.4s ease, transform 0.3s ease; z-index: 1001; }
#header.scrolled .hamburger { color: var(--dark-text); }
.hamburger:hover { transform: scale(1.1); }

/* ============================
   英雄/轮播图区域 Hero Section
============================ */
.hero { padding: 0; height: 100vh; width: 100%; position: relative; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); }
.slide.active { opacity: 1; }
.slide-content { max-width: 800px; padding: 20px; color: var(--bg-white); position: relative; z-index: 2; }
.slide.active .slide-content { animation: fadeInZoom 1.5s ease-out forwards; }
@keyframes fadeInZoom { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.slide-content h2 { font-size: var(--font-size-h1); font-weight: 700; margin-bottom: 20px; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.slide-content p { font-size: var(--font-size-large-p); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; z-index: 10; align-items: center; gap: 15px; }
.slider-nav { background: rgba(255, 255, 255, 0.2); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.slider-nav:hover { background: var(--accent-gold); color: var(--dark-text); }
.slider-dots { display: flex; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); margin: 0 8px; cursor: pointer; transition: all 0.4s ease; border: none; padding: 0; }
.dot.active { background: var(--accent-gold); transform: scale(1.3); }

/* ============================
   关于我们 About
============================ */
.about { background-color: var(--bg-off-white); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: var(--accent-gold); opacity: 0.1; border-radius: 50%; z-index: 0; }
.about-container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.about-image { flex: 1; }
.about-image .img-main { border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: var(--transition); transform: rotate(0deg) scale(1); }
.about-image .img-main:hover { transform: rotate(0deg) scale(1.05); }
.about-content { flex: 1.2; }
.about-content .section-title { text-align: left; margin-bottom: 30px; }
.about-content .section-title h2 { font-size: var(--font-size-h2); display: block; margin-bottom: 25px; }
.about-content .section-title h2::after { left: 0; transform: translateX(0); }
.about-content p { color: var(--light-text); margin-bottom: 15px; font-size: var(--font-size-p); line-height: 1.8; }
.about-content .btn { margin-top: 20px; }

/* ============================
   数据统计 Stats
============================ */
.stats-section { background: linear-gradient(135deg, var(--primary-red), #a32222); color: var(--bg-white); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="8" fill="%23ffffff" opacity="0.1"/><circle cx="150" cy="100" r="5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="180" r="6" fill="%23ffffff" opacity="0.1"/><circle cx="180" cy="40" r="10" fill="%23ffffff" opacity="0.1"/></svg>'); background-size: 300px; opacity: 0.2; }
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item i { font-size: 48px; color: var(--accent-gold); margin-bottom: 15px; transition: var(--transition); }
.stat-item:hover i { transform: scale(1.1); }
.stat-item .stat-number { font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 700; margin-bottom: 5px; color: var(--bg-white); }
.stat-item p { font-size: 1rem; opacity: 0.9; font-weight: 500; }

/* ============================
   服务项目 Services
============================ */
.services { background-color: var(--bg-white); position: relative; }
.services::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: var(--accent-gold); opacity: 0.05; border-radius: 50%; z-index: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; position: relative; z-index: 1; }
.service-card { background: var(--bg-off-white); border-radius: var(--border-radius); padding: 40px 30px; text-align: center; transition: var(--transition); border: 1px solid #eee; perspective: 1000px; min-height: 280px; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: transparent; }
.service-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-red), #a32222); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; color: white; font-size: 30px; box-shadow: 0 10px 20px rgba(200, 43, 43, 0.25); transition: var(--transition); flex-shrink: 0; }
.service-card:hover .service-icon { transform: rotateY(360deg); background: linear-gradient(135deg, var(--accent-gold), #e0a027); }
.service-card h3 { font-size: var(--font-size-h3); margin-bottom: 15px; color: var(--dark-text); }
.service-card p { color: var(--light-text); font-size: var(--font-size-p); line-height: 1.7; }

/* ============================
   环境展示 Environment
============================ */
.environment { background-color: var(--bg-off-white); position: relative; overflow: hidden; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.gallery-item { position: relative; border-radius: var(--border-radius); overflow: hidden; height: 280px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: var(--transition); }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; transform: translateY(100%); transition: transform 0.4s ease; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h3 { font-size: 1.25rem; font-weight: 600; }
.environment-quote { text-align: center; margin: 60px auto 40px; max-width: 800px; position: relative; padding: 30px; background: linear-gradient(135deg, rgba(200, 43, 43, 0.08), rgba(234, 168, 39, 0.08)); border-radius: var(--border-radius); border-left: 4px solid var(--accent-gold); }
.environment-quote p { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; color: var(--primary-red); line-height: 1.5; position: relative; }
.environment-quote p::before, .environment-quote p::after { content: '"'; font-size: 60px; position: absolute; color: var(--accent-gold); opacity: 0.3; }
.environment-quote p::before { top: -20px; left: -40px; }
.environment-quote p::after { bottom: -50px; right: -40px; }
        
/* ============================
   新闻区域
============================ */
.news-combined { background-color: var(--bg-white); position: relative; }
.news-layout-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 50px; }
.news-column-title { font-size: 1.75rem; color: var(--dark-text); margin-bottom: 30px; padding-bottom: 15px; border-bottom: 3px solid var(--accent-gold); position: relative; }
.news-column-title::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: var(--primary-red); }
.news-content-area { display: block; }
.news-container { display: grid; grid-template-columns: 1fr; gap: 30px; }
.news-card { background: var(--bg-off-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.news-image { height: 200px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-image img { transform: scale(1.1); }
.news-card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { display: block; color: var(--accent-gold); font-weight: 500; margin-bottom: 10px; font-size: 14px; }
.news-card-content h4 { font-size: 1.125rem; margin-bottom: 10px; line-height: 1.4; }
.news-card-content h4 a:hover { color: var(--primary-red); }
.news-excerpt { color: var(--light-text); font-size: var(--font-size-p); margin-bottom: 15px; line-height: 1.6; flex-grow: 1; }
.read-more { color: var(--primary-red); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; align-self: flex-start; }
.read-more:hover { color: #A32222; }
.read-more i { margin-left: 5px; transition: transform 0.3s ease; }
.read-more:hover i { transform: translateX(4px); }
.industry-news-list { margin: 0 auto; }
.industry-news-item { display: block; background-color: var(--bg-off-white); padding: 25px; border-radius: var(--border-radius); margin-bottom: 20px; transition: var(--transition); border: 1px solid #eee; }
.industry-news-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: transparent; }
.industry-news-item .news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; width: auto; background: none; padding: 0; }
.industry-news-item .news-meta span:first-child { font-size: 1.5rem; display: block; font-weight: 700; color: var(--primary-red); line-height: 1; }
.industry-news-item .news-meta span:last-child { font-size: 0.9rem; display: block; color: var(--primary-red); margin-top: 0; line-height: 1; }
.industry-news-item .news-details { width: 100%; }
.industry-news-item h4 { font-size: 1.125rem; margin-bottom: 10px; }
.industry-news-item .news-excerpt { margin-bottom: 15px; }
.industry-news-item .news-category { display: inline-block; background-color: rgba(234, 168, 39, 0.15); color: var(--accent-gold); padding: 4px 12px; border-radius: 15px; font-size: 13px; font-weight: 600; margin-top: 10px; }

/* ============================
   联系我们 Contact
============================ */
.contact { background-color: var(--bg-off-white); }
.contact-container { display: flex; gap: 50px; align-items: stretch; position: relative; z-index: 1; }
.contact-info { flex: 1; background: var(--bg-white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 15px 40px rgba(0,0,0,0.07); }
.contact-info h3 { font-size: var(--font-size-h2); color: var(--primary-red); margin-bottom: 20px; }
.contact-info p { color: var(--light-text); margin-bottom: 30px; font-size: var(--font-size-p); }
.contact-info ul li { display: flex; align-items: center; margin-bottom: 15px; font-size: 1rem; }
.contact-info ul li i { font-size: 20px; color: var(--primary-red); margin-right: 15px; width: 25px; text-align: center; }
.contact-form-wrapper { flex: 1.2; background: var(--bg-white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 15px 40px rgba(0,0,0,0.07); }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border-radius: 8px; border: 1px solid #ddd; background: var(--bg-off-white); color: var(--dark-text); font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.form-control:focus { border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(200, 43, 43, 0.15); outline: none; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ============================
   底部 Footer
============================ */
#footer { background: var(--dark-text); color: #ccc; padding: 70px 0 0; position: relative; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-col h3 { font-size: 1.25rem; margin-bottom: 25px; color: var(--bg-white); }
.footer-about p { color: #aaa; margin-bottom: 25px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; transition: var(--transition); }
.social-links a:hover { background: var(--accent-gold); color: var(--dark-text); transform: translateY(-5px); }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-contact li { color: #aaa; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; margin-bottom: 12px; }
.footer-contact i { margin-right: 15px; margin-top: 4px; color: var(--accent-gold); }
.copyright { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #888; font-size: 14px; }
        
/* ============================
   返回顶部按钮
============================ */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease; z-index: 999; border: none; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #A32222; transform: translateY(-5px); }

/* ============================
   响应式设计 Media Queries
============================ */
@media (max-width: 991px) {
    html { scroll-padding-top: var(--header-height-mobile); }
    #header { height: var(--header-height-mobile); }
    #header.scrolled { height: 65px; }
    .logo h1 { font-size: 1.25rem; }
    .logo img { height: 38px; margin-right: 10px; }
    .nav-btns .btn-desktop-only { display: none; }
    .hamburger { display: block; }
    .nav-menu { position: fixed; top: 0; left: -100%; width: min(100%, 320px); height: 100vh; background: var(--bg-white); flex-direction: column; align-items: flex-start; padding: 100px 30px 40px; transition: left 0.4s ease; box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1); overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 0; width: 100%; }
    .nav-menu li:not(.nav-menu-btn-wrapper) { border-bottom: 1px solid #f0f0f0; }
    .nav-link, #header.scrolled .nav-link { color: var(--dark-text); display: block; padding: 15px 10px; width: 100%; }
    .nav-link::after { display: none; }
    .nav-link.active { color: var(--primary-red); background-color: #f8f8f8; font-weight: 600; }
    .nav-menu .nav-menu-btn-wrapper { display: block; margin-top: 30px; padding: 0 10px; }
    .nav-menu .nav-menu-btn { width: 100%; text-align: center; background: var(--primary-red); color: white; padding: 12px 20px; border-radius: 50px; }
    .nav-menu .nav-menu-btn:hover { background: #A32222; transform: translateY(-3px); }
    .about-container, .contact-container { flex-direction: column; gap: 40px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .news-layout-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-col, .social-links, .footer-contact li { text-align: center; justify-content: center; }
    .environment-quote p::before, .environment-quote p::after { left: -20px; right: -20px; }
}

@media (max-width: 767px) {
    .btn { padding: 12px 32px; font-size: 0.9rem; }
    .stats-container, .services-grid { grid-template-columns: 1fr; }
    .environment-quote p { font-size: var(--font-size-h3); }
}

@media (max-width: 576px) {
    .news-card .news-image { height: 180px; }
    .industry-news-item { padding: 20px; }
    .contact-info, .contact-form-wrapper { padding: 25px; }
    .environment-quote p { font-size: 1.1rem; }
    .environment-quote p::before, .environment-quote p::after { display: none; }
}

/* !!! 新增：分页组件样式 (为 ThinkPHP 原生分页定制) !!! */
.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: var(--bg-white);
    padding: 5px;
}
.pagination li {
    margin: 0 3px;
}
.pagination li a,
.pagination li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 500;
}
.pagination li a:hover {
    background-color: var(--light-gold);
    color: var(--primary-red);
}
.pagination li.active span {
    background-color: var(--primary-red);
    color: var(--bg-white);
    cursor: default;
}
.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
}
