/**handles:s3m-testimonials-archive**/
/* =========================================================================
   S3M Security — Testimonials ARCHIVE (grouped by industry)
   Self-contained: every rule is scoped under .s3mt-arc, and .s3mt-arc sets a
   base line-height so children never inherit line-height:0 from an Elementor
   shortcode wrapper. Output is plain HTML from [s3m_testimonials_by_industry].
   Handle: s3m-testimonials-archive  (keep in Hummingbird Combine Exclusions)
   ========================================================================= */

.s3mt-arc {
  --s3mt-navy:     #0F1B2D;
  --s3mt-navy-2:   #16243B;
  --s3mt-orange:   #FF6B1F;
  --s3mt-orange-d: #E55A14;
  --s3mt-ink:      #0F1B2D;
  --s3mt-mute:     #5B6675;
  --s3mt-line:     #E6E9EF;
  --s3mt-tint:     #F4F6FA;
  --s3mt-font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 40px);
  font-family: var(--s3mt-font);
  line-height: 1.5;            /* base — prevents inherited line-height:0 */
  color: var(--s3mt-ink);
  -webkit-font-smoothing: antialiased;
}
.s3mt-arc * { box-sizing: border-box; }

/* ---------- Hero / intro ---------- */
.s3mt-arc-hero { max-width: 760px; margin: 0 0 clamp(32px, 4vw, 52px); }
.s3mt-arc-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
  background: rgba(255,107,31,0.08); border: 1px solid rgba(255,107,31,0.22);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; line-height: 1;
  text-transform: uppercase; color: var(--s3mt-orange-d);
}
.s3mt-arc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--s3mt-orange); box-shadow: 0 0 0 4px rgba(255,107,31,0.16); }
.s3mt-arc-h2 {
  margin: 0; color: var(--s3mt-navy);
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.025em; line-height: 1.06;
}
.s3mt-arc-sub {
  margin: 16px 0 0; max-width: 60ch;
  font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.6; color: var(--s3mt-mute); font-weight: 400;
}

/* ---------- Industry section ---------- */
.s3mt-arc-sec { margin-top: clamp(36px, 4.5vw, 60px); }
.s3mt-arc-sechead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 14px; margin-bottom: 22px;
  border-bottom: 1px solid var(--s3mt-line); position: relative;
}
.s3mt-arc-sechead::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 48px; height: 3px;
  border-radius: 2px; background: linear-gradient(90deg, var(--s3mt-orange), var(--s3mt-orange-d));
}
.s3mt-arc-ind {
  margin: 0; line-height: 1.2;
  font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 800; letter-spacing: -0.015em; color: var(--s3mt-navy);
}
.s3mt-arc-ind a { color: inherit; text-decoration: none; transition: color .2s ease; }
.s3mt-arc-ind a:hover { color: var(--s3mt-orange-d); }
.s3mt-arc-count {
  flex: 0 0 auto; line-height: 1; white-space: nowrap;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--s3mt-mute);
}

/* ---------- Card grid ---------- */
.s3mt-arc-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.s3mt-arc-card {
  position: relative; display: flex; flex-direction: column;
  padding: 24px 24px 22px; border-radius: 16px;
  background: #fff; border: 1px solid var(--s3mt-line);
  color: var(--s3mt-ink); text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.s3mt-arc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--s3mt-orange), var(--s3mt-orange-d));
  transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.s3mt-arc-card:hover,
.s3mt-arc-card:focus-visible {
  transform: translateY(-4px); border-color: rgba(255,107,31,0.55);
  box-shadow: 0 22px 44px -22px rgba(9,15,26,0.45);
  outline: none;
}
.s3mt-arc-card:hover::before,
.s3mt-arc-card:focus-visible::before { transform: scaleY(1); }
.s3mt-arc-card:focus-visible { outline: 3px solid rgba(255,107,31,0.5); outline-offset: 2px; }

.s3mt-arc-stat {
  align-self: flex-start; margin-bottom: 14px;
  padding: 4px 10px; border-radius: 999px; line-height: 1;
  background: rgba(255,107,31,0.10); color: var(--s3mt-orange-d);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
}
.s3mt-arc-co {
  margin: 0; line-height: 1.2;
  font-size: 1.2rem; font-weight: 900; letter-spacing: -0.015em; color: var(--s3mt-navy);
}
.s3mt-arc-meta {
  margin-top: 4px; line-height: 1.35;
  font-size: 12.5px; font-weight: 500; color: var(--s3mt-mute);
}
.s3mt-arc-quote {
  position: relative; margin: 16px 0 0; padding-left: 18px;
  line-height: 1.55; font-size: 14px; font-style: italic; color: #3A4452; flex: 1;
}
.s3mt-arc-quote::before {
  content: "\201C"; position: absolute; left: -2px; top: -6px;
  font-size: 26px; line-height: 1; font-style: normal; font-weight: 900; color: var(--s3mt-orange);
}
.s3mt-arc-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  line-height: 1; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--s3mt-orange-d);
}
.s3mt-arc-more em { font-style: normal; transition: transform .2s ease; }
.s3mt-arc-card:hover .s3mt-arc-more em { transform: translateX(4px); }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .s3mt-arc-grid { grid-template-columns: 1fr; }
  .s3mt-arc-sechead { flex-wrap: wrap; gap: 4px 12px; }
}