/* ============================================
   荣兴机械 - 公司介绍页样式
   ============================================ */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #c41230;
  --color-red-dark: #a00f28;
  --color-gray-100: #f5f5f5;
  --color-gray-300: #e0e0e0;
  --color-gray-500: #666666;
  --color-gray-600: #555555;
  --color-gray-700: #444444;
  --color-gray-900: #333333;
  --color-highlight: #7eb8da;
  --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --container-max: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-900);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 顶部导航 ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.nav-list {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  box-shadow: 0 4px 16px rgba(196, 18, 48, 0.35);
}

/* ---- 轮播 Banner ---- */
.hero-banner {
  margin-top: var(--header-height);
}

.carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--color-black);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 24px 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  max-width: var(--container-max);
  margin: 0 auto;
}

.carousel-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.carousel-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.carousel-btn--prev { left: 24px; }
.carousel-btn--next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform 0.15s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
  background: var(--color-white);
}

.carousel-dot:active {
  transform: scale(0.85);
}

/* ---- 板块一：公司介绍 ---- */
.intro-section {
  padding: 80px 0;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  align-items: stretch;
}

.intro-image-col {
  min-height: 520px;
}

.intro-building-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.intro-content-col {
  display: flex;
  flex-direction: column;
}

.content-box {

 
  padding: 48px 52px; margin-bottom: 30px
}

.content-block + .content-block {
  margin-top: 36px;
}

.content-heading {
  font-size: 35px;
  font-weight:normal;
  color: #333;
  line-height: 1.3;
  margin-bottom: 2px;
}
.uridksk2{ background: url("../images/bg216.png") no-repeat center bottom; padding-bottom: 30px; margin-bottom: 30px!important}
.content-text {
  font-size: 16px;
  font-weight:normal;
   color: #646464;
  line-height: 1.65; font-family: Arial
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-300);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 52px;
  font-weight:normal;
  color: #0057ab;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #575757;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.stat-label--vertical {



  padding-bottom: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.stat-subtext {
  font-size: 13px;
  color: var(--color-gray-500);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 72px;
  background: var(--color-gray-300);
  transform: skewX(-12deg);
  flex-shrink: 0;
}

/* ---- 板块二：核心价值（黑底） ---- */
.asset-section {
  background: #fff;
}

.asset-block {
  padding: 62px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-block:last-child {
  border-bottom: none;
}

.asset-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.asset-block--reverse .asset-inner {
  flex-direction: row-reverse;
}

.asset-text {
  flex: 1;
  min-width: 0;
}

.asset-heading {

  font-size: 32px;
  font-weight: 400;
  color: #333;
  line-height: 1.25;
  margin-bottom: 28px;
}

.asset-body {
  font-size: 16px;

  color: #646464;
  line-height: 1.7;
  margin-bottom: 36px;
}
.asset-body strong{ color:#1e48a5}
.text-highlight {
  color: var(--color-highlight);
  font-weight: 400;
}

.watch-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  cursor: pointer;
  transition: opacity var(--transition), transform 0.15s ease;
}

.watch-video-btn:hover {
  opacity: 0.75;
}

.watch-video-btn:active {
  transform: scale(0.96);
}

.asset-media {
  flex: 0 0 48%;
  max-width: 48%;
}

.media-wrap {
  position: relative;
  width: 100%;
/*  aspect-ratio: 16 / 10;*/
  overflow: hidden;
}
.asset-heading .wc {
    font-size: 54px;color: #577cd0;
 
    font-family: "Arial";
    display: inline-table; font-weight: 100
}.asset-heading i {
    font-style: normal;
    font-size: 22px;
    color: #577cd0;
    margin-right: 18px;
    display: inline-table; 
}



.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.play-icon-circle i {
  font-size: 0.55em;
  margin-left: 2px;
}

.play-icon-circle--small {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.play-icon-circle--small i {
  font-size: 11px;
}

.play-icon-circle--large {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
}

.play-icon-circle--large i {
  font-size: 18px;
}

.play-icon-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.play-icon-circle:active {
  transform: scale(0.95);
}

.asset-block--reverse .play-icon-circle--large {
  right: auto;
  left: 20px;
}

/* ---- 板块三：Private Equity ---- */
.equity-section {
  padding: 80px 0 100px;
  background: #f3f3f3
}

.equity-header {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.equity-title {
  
  font-size: 42px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.15;
}

.equity-intro {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-600);
  line-height: 2;
  padding-top: 8px;
}

.equity-hero {
  margin-bottom: 64px;
}

.equity-hero-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.equity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.equity-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.equity-card-text {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}

.equity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  transition: gap var(--transition), color var(--transition);
}

.equity-link:hover {
  gap: 14px;
  color: var(--color-red);
}

.equity-link:active {
  transform: scale(0.98);
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  font-size: 11px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.equity-link:hover .arrow-circle {
  background: var(--color-black);
  color: var(--color-white);
}

/* ---- 板块四：News ---- */
.news-section {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.news-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.news-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
}

.news-label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-black);
}

.news-title {
 
  font-size: 40px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2;margin-bottom: 8px;
  
}
.news-title-p{margin-bottom: 48px;}



.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.news-card-media {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.03);
}

.play-icon-circle--card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
}

.play-icon-circle--card i {
  font-size: 14px;
}

.news-card-title {

  font-size: 16px;
  font-weight:normal;
     color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
  transition: color var(--transition);
}

.news-card:hover .news-card-title {

}

.news-card-desc {
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.65;
}

.news-card-desc a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-card-desc a:hover {
  color: var(--color-red);
}

/* ---- 资质证书 ---- */
.cert-section {
  padding: 80px 0 100px;
  background: var(--color-gray-100);
}

.cert-header {
  text-align: center;
  margin-bottom: 48px;
}

.cert-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 12px;
}

.cert-desc {
  font-size: 15px;
  color: var(--color-gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.cert-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cert-viewport {
  flex: 1;
  overflow: hidden;
}

.cert-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item {
  flex: 0 0 calc(25% - 18px);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cert-item:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cert-item:active {
  transform: translateY(-2px) scale(0.98);
}

.cert-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cert-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.cert-nav:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.cert-nav:active {
  transform: scale(0.9);
}

.cert-scrollbar-wrap {
  padding: 0 60px;
}

.cert-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: #d0d0d0;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}

.cert-scrollbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 120px;
  height: 12px;
  background: var(--color-red);
  border-radius: 6px;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(196, 18, 48, 0.4);
  transition: background var(--transition), box-shadow var(--transition);
}

.cert-scrollbar::-webkit-slider-thumb:hover {
  background: var(--color-red-dark);
  box-shadow: 0 4px 12px rgba(196, 18, 48, 0.5);
}

.cert-scrollbar::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scaleY(1.2);
}

.cert-scrollbar::-moz-range-track {
  height: 12px;
  background: #d0d0d0;
  border-radius: 6px;
}

.cert-scrollbar::-moz-range-thumb {
  width: 120px;
  height: 12px;
  background: var(--color-red);
  border: none;
  border-radius: 6px;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(196, 18, 48, 0.4);
}

/* ---- 灯箱 ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-close:active {
  transform: scale(0.9);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform 0.15s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.9);
}

.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }

/* ---- 页脚 ---- */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  width: 16px;
  color: var(--color-red);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-white);
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
}

.social-icon:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.social-icon:active {
  transform: scale(0.9);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-image-col {
    min-height: 360px;
  }

  .intro-building-img {
    min-height: 360px;
  }

  .equity-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-item {
    flex: 0 0 calc(33.333% - 16px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .carousel {
    height: 400px;
  }

  .carousel-title {
    font-size: 32px;
  }

  .content-box {
    padding: 36px 28px;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 30%;
  }

  .asset-inner,
  .asset-block--reverse .asset-inner {
    flex-direction: column;
    gap: 36px;
  }

  .asset-media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .asset-heading {
    font-size: 26px;
  }

  .equity-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .equity-title,
  .news-title {
    font-size: 30px;
  }

  .cert-item {
    flex: 0 0 calc(50% - 12px);
  }

  .cert-nav--prev,
  .cert-nav--next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 320px;
  }

  .carousel-title {
    font-size: 26px;
  }

  .stat-number {
    font-size: 40px;
  }

  .cert-item {
    flex: 0 0 80%;
  }

  .cert-scrollbar-wrap {
    padding: 0 16px;
  }
}
