/* ═══════════════════════════════════════
   ABOUT PAGE — about.css
   Save to: clicklink-website/css/about.css
═══════════════════════════════════════ */

/* ── HERO ── */
.abt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.abt-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/about-hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  animation: abtZoom 18s ease-in-out infinite alternate;
}
@keyframes abtZoom { from{transform:scale(1.03);} to{transform:scale(1.09);} }
.abt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,18,40,.96) 0%, rgba(0,35,70,.88) 55%, rgba(0,15,35,.6) 100%);
}
.abt-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: clamp(90px,12vw,120px) clamp(20px,5vw,56px) clamp(60px,8vw,80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
@media(max-width:900px){ .abt-hero-content { grid-template-columns: 1fr; } }

.abt-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px; padding: 5px 14px; margin-bottom: 18px;
}
.abt-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #e00611; }
.abt-pill span { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.75); }

.abt-hero-title {
  font-size: clamp(28px,4.5vw,50px); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 16px; letter-spacing: -.5px;
}
.abt-hero-title span { color: #e00611; }
.abt-hero-desc {
  font-size: clamp(13px,1.4vw,15px); color: rgba(255,255,255,.72);
  line-height: 1.85; margin-bottom: 28px; word-wrap: break-word;
}
.abt-hero-stats {
  display: flex; align-items: center;
  gap: clamp(12px,2vw,24px);
  flex-wrap: nowrap; /* keep all 4 stats on one line on desktop */
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
  overflow: hidden; /* prevent any overflow */
}
.abt-stat { flex-shrink: 0; }
.abt-stat-n { font-size: clamp(16px,2vw,26px); font-weight: 800; color: #fff; white-space: nowrap; }
.abt-stat-l { font-size: 9px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; white-space: nowrap; }
.abt-stat-div { width: 1px; height: 30px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.abt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.abt-btn-red {
  background: #e00611; color: #fff; padding: 13px 26px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.abt-btn-red:hover { background: #c0050e; transform: translateY(-2px); }
.abt-btn-outline {
  background: transparent; color: #fff; padding: 13px 26px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none; display: inline-block;
  border: 1.5px solid rgba(255,255,255,.3); transition: all .2s; white-space: nowrap;
}
.abt-btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* hero right image */
.abt-hero-right { position: relative; }
.abt-hero-img-wrap { position: relative; }
.abt-hero-img {
  width: 100%; border-radius: 20px;
  object-fit: cover; height: clamp(280px,40vw,480px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: block;
}
.abt-founded-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #e00611; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(224,6,17,.4);
  text-align: center;
}
.abt-founded-yr  { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.abt-founded-lbl { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 2px; letter-spacing: 1px; text-transform: uppercase; }
.abt-location-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,20,45,.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
@media(max-width:900px){ .abt-founded-badge { bottom: -14px; left: 14px; } }

/* ── MARQUEE BAND ── */
.abt-marquee-band {
  background: #e00611; padding: 12px 0; overflow: hidden;
}
.abt-marquee-track {
  display: flex; gap: 24px; align-items: center;
  width: max-content;
  animation: abtMarquee 28s linear infinite;
}
.abt-marquee-track span { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }
.abt-dot { color: rgba(255,255,255,.5) !important; font-size: 8px !important; }
@keyframes abtMarquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── SHARED SECTION STYLES ── */
.abt-section { padding: clamp(48px,7vw,80px) 0; }
.abt-section-alt { background: #f8fafd; }
.abt-section-dark { background: linear-gradient(160deg, #001a38, #002d59, #001228); }
.abt-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px,5vw,56px); }
.abt-center-head { text-align: center; margin-bottom: 44px; }
.abt-pill-light {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #dde4ef;
  border-radius: 30px; padding: 5px 14px; margin-bottom: 14px;
}
.abt-pill-dot-r { width: 6px; height: 6px; border-radius: 50%; background: #e00611; }
.abt-pill-light span { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #5a6a82; }
.abt-pill-dark-inner {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px; padding: 5px 14px; margin-bottom: 14px;
}
.abt-pill-dark-inner span { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.abt-section-title {
  font-size: clamp(22px,3.5vw,32px); font-weight: 800; color: #002d59;
  margin-bottom: 10px; line-height: 1.15;
}
.abt-section-title span { color: #e00611; }
.abt-section-sub {
  font-size: clamp(12px,1.4vw,14px); color: #5a6a82;
  line-height: 1.8; max-width: 560px; margin: 0 auto; word-wrap: break-word;
}
.abt-body-text { font-size: clamp(13px,1.4vw,14px); color: #3a4a5c; line-height: 1.85; margin-bottom: 16px; word-wrap: break-word; }

/* ── STORY SECTION ── */
/* story grid handled in alignment fix section below */
@media(max-width:768px){ .abt-story-grid { grid-template-columns: 1fr; } }
.abt-story-img-wrap { position: relative; }
.abt-story-badge {
  position: absolute; bottom: 24px; right: -18px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0,45,89,.18);
  display: flex; align-items: center; gap: 12px;
}
.abt-story-badge-icon { font-size: 24px; }
.abt-story-badge-n { font-size: 22px; font-weight: 800; color: #002d59; line-height: 1; }
.abt-story-badge-l { font-size: 11px; color: #5a6a82; margin-top: 2px; }
@media(max-width:768px){ .abt-story-badge { right: 14px; bottom: -14px; } }
.abt-story-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.abt-pillar { display: flex; align-items: center; gap: 14px; background: #f8fafd; border: 1px solid #dde4ef; border-radius: 12px; padding: 14px 16px; }
.abt-pillar-icon { font-size: 22px; flex-shrink: 0; }
.abt-pillar-text { display: flex; flex-direction: column; gap: 2px; }
.abt-pillar-text strong { font-size: 13px; font-weight: 700; color: #002d59; }
.abt-pillar-text span   { font-size: 11px; color: #5a6a82; }

/* ── VISION / MISSION ── */
.abt-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:680px){ .abt-vm-grid { grid-template-columns: 1fr; } }
.abt-vm-card { border-radius: 18px; overflow: hidden; border: 1.5px solid #dde4ef; background: #fff; box-shadow: 0 4px 20px rgba(0,45,89,.06); transition: transform .25s, box-shadow .25s; }
.abt-vm-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,45,89,.12); }
.abt-vm-icon-wrap {
  position: relative; height: clamp(160px,22vw,220px); overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
}
.abt-vm-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.abt-vm-card:hover .abt-vm-bg-img { transform: scale(1.05); }
.abt-vm-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,18,40,.85) 0%, rgba(0,45,89,.5) 60%, transparent 100%); }
.abt-vm-icon { position: relative; z-index: 1; font-size: 32px; }
.abt-vm-label { position: relative; z-index: 1; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-left: 8px; }
.abt-vm-body { padding: 24px; }
.abt-vm-body h3 { font-size: 15px; font-weight: 800; color: #002d59; margin-bottom: 10px; }
.abt-vm-body p  { font-size: 13px; color: #5a6a82; line-height: 1.8; word-wrap: break-word; }

/* ── VALUES ── */
.abt-values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 18px; }
.abt-value-card {
  background: #fff; border: 1.5px solid #dde4ef; border-radius: 16px;
  padding: 26px 22px; position: relative; overflow: hidden;
  transition: all .25s;
}
.abt-value-card:hover { border-color: #004a94; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,45,89,.1); }
.abt-value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#e00611,#004a94); opacity: 0; transition: opacity .25s; }
.abt-value-card:hover::before { opacity: 1; }
.abt-value-num { font-size: 44px; font-weight: 800; color: #f0f4fa; line-height: 1; margin-bottom: -8px; }
.abt-value-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.abt-value-card h3 { font-size: 14px; font-weight: 800; color: #002d59; margin-bottom: 8px; }
.abt-value-card p  { font-size: 12px; color: #5a6a82; line-height: 1.75; word-wrap: break-word; }

/* ── TIMELINE ── */
.abt-timeline {
  position: relative; max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.abt-timeline::before {
  content: ''; position: absolute; left: 96px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,.1);
}
@media(max-width:560px){ .abt-timeline::before { left: 56px; } }
.abt-timeline-item {
  display: grid; grid-template-columns: 88px 32px 1fr;
  gap: 0 16px; align-items: flex-start; padding: 0 0 32px;
}
@media(max-width:560px){ .abt-timeline-item { grid-template-columns: 48px 24px 1fr; gap: 0 10px; } }
.abt-timeline-year {
  font-size: clamp(14px,1.8vw,17px); font-weight: 800; color: #e00611;
  padding-top: 4px; text-align: right; white-space: nowrap;
}
.abt-timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.3);
  margin-top: 6px; flex-shrink: 0; position: relative; z-index: 1;
}
.abt-timeline-dot-active {
  background: #e00611; border-color: #e00611;
  box-shadow: 0 0 0 4px rgba(224,6,17,.2);
}
.abt-timeline-content { padding-top: 2px; }
.abt-timeline-content h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.abt-timeline-content p  { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.7; word-wrap: break-word; }

/* ── TEAM ── */
.abt-team-card {
  background: #fff;
  border: 1.5px solid #dde4ef;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
@media (max-width:560px) {
  .abt-team-card { padding:16px 14px; }
  .abt-team-avatar { width:52px; height:52px; font-size:16px; margin-bottom:10px; }
  .abt-team-desc { font-size:11px; line-height:1.6; margin-bottom:10px; }
  .abt-team-name { font-size:14px; }
}
/* Default state visible */
.abt-team-card-front {
  transition: opacity .3s, transform .3s;
}
/* Hover state (navy blue overlay) — hidden by default */
.abt-team-card-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #002d59 0%, #004a94 100%);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
/* Activate hover for non-founder cards */
.abt-team-card.abt-hoverable:hover {
  border-color: #004a94;
  box-shadow: 0 16px 44px rgba(0,45,89,.2);
}
.abt-team-card.abt-hoverable:hover .abt-team-card-front {
  opacity: 0;
  transform: translateY(-6px);
}
.abt-team-card.abt-hoverable:hover .abt-team-card-back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Founder card — subtle lift only */
.abt-team-card.abt-founder:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,45,89,.1);
}
/* Back card content styles */
.abt-team-back-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  color: #fff; font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 4px;
  border: 2px solid rgba(255,255,255,.3);
}
.abt-team-back-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.abt-team-back-role { font-size: 10px; font-weight: 700; color: #e00611; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.abt-team-back-bio  { font-size: 11px; color: rgba(255,255,255,.75); line-height: 1.65; text-align: left; word-wrap: break-word; margin-bottom: 10px; }
.abt-team-back-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.abt-team-back-tag  { background: rgba(255,255,255,.12); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2); }

.abt-team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.abt-team-name { font-size: 15px; font-weight: 800; color: #002d59; margin-bottom: 4px; }
.abt-team-role { font-size: 11px; font-weight: 700; color: #e00611; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.abt-team-desc { font-size: 12px; color: #5a6a82; line-height: 1.7; margin-bottom: 14px; word-wrap: break-word; }
.abt-team-skills { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.abt-team-cta { text-align: center; font-size: 13px; color: #5a6a82; }
.abt-team-cta a { color: #e00611; font-weight: 700; text-decoration: none; }
.abt-team-cta a:hover { text-decoration: underline; }

/* ── TESTIMONIALS ── */
.abt-testi-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; align-items: start; }
@media(max-width:900px){ .abt-testi-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .abt-testi-grid { grid-template-columns: 1fr; } }
.abt-testi-card {
  background: #fff; border: 1.5px solid #dde4ef; border-radius: 18px;
  padding: 28px 24px; position: relative; transition: all .25s;
}
.abt-testi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,45,89,.09); }
.abt-testi-featured { border-color: #e00611; background: linear-gradient(135deg,#fef2f2,#fff); }
.abt-testi-quote { font-size: 64px; font-weight: 800; color: #e00611; line-height: .8; margin-bottom: 8px; font-family: Georgia, serif; opacity: .25; }
.abt-testi-text { font-size: 13px; color: #3a4a5c; line-height: 1.8; margin-bottom: 20px; font-style: italic; word-wrap: break-word; }
.abt-testi-author { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.abt-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.abt-testi-name    { font-size: 13px; font-weight: 700; color: #002d59; }
.abt-testi-company { font-size: 11px; color: #5a6a82; margin-top: 1px; }
.abt-testi-stars   { margin-left: auto; color: #fbbf24; font-size: 13px; letter-spacing: 1px; }

/* ── CTA SECTION ── */
.abt-cta-section {
  position: relative; padding: clamp(60px,9vw,100px) 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.abt-cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/about-cta-bg.jpg');
  background-size: cover; background-position: center;
  animation: abtZoom 20s ease-in-out infinite alternate;
}
.abt-cta-overlay { position: absolute; inset: 0; background: rgba(0,15,35,.88); }
.abt-cta-content { position: relative; z-index: 2; max-width: 660px; padding: 0 clamp(16px,5vw,40px); }
.abt-cta-title {
  font-size: clamp(24px,4vw,40px); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 14px;
}
.abt-cta-title span { color: #e00611; }
.abt-cta-sub { font-size: clamp(13px,1.5vw,15px); color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 32px; }
.abt-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.abt-btn-wa {
  background: #25d366; color: #fff; padding: 13px 26px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.abt-btn-wa:hover { background: #1ebe5d; }

/* ── RESPONSIVE ── */
@media(max-width:600px){
  .abt-hero-stats { flex-wrap: wrap; gap: 12px; }
  .abt-hero-stats .abt-stat-div { display: none; }
  .abt-hero-btns { flex-direction: column; }
  .abt-btn-red, .abt-btn-outline { text-align: center; }
  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-team-grid   { grid-template-columns: 1fr 1fr; }
}
@media(max-width:420px){
  .abt-team-grid { grid-template-columns: 1fr; }
}

/* ── STORY GRID ALIGNMENT FIX ── */
.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,72px);
  align-items: stretch; /* both columns same height */
}
.abt-story-img-col {
  display: flex;
  align-items: stretch;
}
.abt-story-img-wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.abt-story-img {
  width: 100%;
  flex: 1; /* fill the full column height */
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,45,89,.14);
}
@media(max-width:768px){
  .abt-story-grid { grid-template-columns: 1fr; }
  .abt-story-img { min-height: 280px; flex: none; height: clamp(260px,55vw,380px); }
  .abt-story-badge { right: 14px; bottom: -14px; }
}

/* ── TIMELINE FUTURE DOT ── */
.abt-timeline-dot-future {
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.3);
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}

/* ── TEAM CAROUSEL ── */
.abt-team-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.abt-team-carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.abt-team-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.abt-team-carousel-track .abt-team-card {
  min-width: calc(33.333% - 14px);
  flex-shrink: 0;
}
@media(max-width:900px){
  .abt-team-carousel-track .abt-team-card { min-width: calc(50% - 10px); }
}
@media(max-width:560px){
  .abt-team-carousel-track .abt-team-card { min-width: 100%; }
}
.abt-team-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid #dde4ef;
  background: #fff;
  color: #002d59;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  font-family: 'Sora', sans-serif;
}
.abt-team-arrow:hover { background: #002d59; color: #fff; border-color: #002d59; }
.abt-team-dots {
  display: flex; gap: 7px; justify-content: center; margin-bottom: 20px;
}
.abt-team-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dde4ef; cursor: pointer; transition: all .2s;
  border: none;
}
.abt-team-dot.active { background: #e00611; transform: scale(1.3); }

/* ── SKILL LOGO TAGS ── */
.abt-skill-logo {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0f4fa; color: #002d59;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px 4px 7px; border-radius: 8px;
  border: 1px solid #dde4ef;
  line-height: 1;
}
.abt-skill-logo span { flex-shrink: 0; }

/* ── TESTIMONIAL INFINITE BELT ── */
.abt-testi-belt-wrap {
  overflow: hidden;
  position: relative;
  padding: 12px 0 20px;
}
.abt-testi-belt-wrap::before,
.abt-testi-belt-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.abt-testi-belt-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.abt-testi-belt-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.abt-testi-belt {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testiBeltScroll 32s linear infinite;
}
.abt-testi-belt:hover { animation-play-state: paused; }
@keyframes testiBeltScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.abt-testi-card-mini {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #dde4ef;
  border-radius: 16px;
  padding: 22px 20px;
  transition: box-shadow .2s;
}
.abt-testi-card-mini:hover { box-shadow: 0 8px 24px rgba(0,45,89,.1); }
.abt-testi-stars-mini { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.abt-testi-text-mini {
  font-size: 12px; color: #3a4a5c; line-height: 1.75;
  margin-bottom: 16px; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.abt-testi-meta-mini { display: flex; align-items: center; gap: 10px; }
.abt-testi-av-mini {
  width: 36px; height: 36px; border-radius: 50%;
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.abt-testi-nm-mini { font-size: 12px; font-weight: 700; color: #002d59; }
.abt-testi-co-mini { font-size: 10px; color: #5a6a82; margin-top: 1px; }
