/*
      Release: 1.0.2
      - major: 1 (Dark Prism direction)
      - minor: 2 (unify magenta rgba → variable)
      - dev:   0 (base layout/typography unchanged)
    */

:root {
  /* Core brand & neutrals */
  --bg: #0B1021;
  /* near-black blue */
  --surface: #0F172A;
  /* slate-900 */
  --surface-2: #111827;
  /* gray-900 */
  --text: #F8FAFC;
  /* very light */
  --text-dim: #E2E8F0;
  /* slightly brighter for mobile legibility (kept from 1.0.1) */
  --muted: #94A3B8;
  /* slate-400 */

  /* Dark Prism spectrum (Data → Insight) */
  --brand-green: #00B37E;
  /* OneLeaf leaf */
  --blue: #2F6BFF;
  --violet: #8B5CF6;

  /* --magenta: #FF2D8D;  */
  /* opaque magenta */
  /* --magenta-rgb: 255,45,141; */

  /* NEW: RGB triplet for alpha uses */
  /* --magenta: #E98D2E; */
  /* Opaque warm orange */
  /* --magenta-rgb: 233, 141, 46; */
  /* For rgba(...) uses */

  /* --magenta: #F35870; */
  /* opaque red-leaf */
  /* --magenta-rgb: 243, 88, 112; */
  /* for rgba(...) alpha uses */

  /* --magenta: #8B1E3A; */
  /* dark red */
  /* --magenta-rgb: 139, 30, 58; */
  /* dark red */
  --magenta: #FF1A3C;
  /* vivid red */
  --magenta-rgb: 255, 26, 60;
  /* vivid red */

  --cyan: #2ED3EA;
  --amber: #FFC700;

  /* Status */
  --danger: #EF4444;
  --success: #10B981;

  /* UI tokens */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .45);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .25);
  --ring: 0 0 0 3px rgba(47, 107, 255, .35);

  /* Typography scale */
  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --fs-100: clamp(.85rem, .8rem + .2vw, .95rem);
  --fs-200: clamp(.95rem, .9rem + .3vw, 1.05rem);
  --fs-300: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  --fs-400: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  --fs-500: clamp(1.6rem, 1.3rem + .9vw, 2rem);
  --fs-600: clamp(2rem, 1.6rem + 1.5vw, 2.6rem);
  --fs-700: clamp(2.4rem, 2rem + 2vw, 3.4rem);
}

/* Global resets */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(47, 107, 255, .18), transparent 60%),
    radial-gradient(1200px 800px at 110% 10%, rgba(var(--magenta-rgb), .14), transparent 60%),
    radial-gradient(800px 600px at 50% 120%, rgba(139, 92, 246, .12), transparent 60%),
    var(--bg);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Top bar */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(180deg, rgba(11, 16, 33, .9), rgba(11, 16, 33, .55));
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--blue), var(--violet), var(--magenta), var(--blue));
  position: relative;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .06) inset, 0 8px 24px rgba(var(--magenta-rgb), .18);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
}

.brand-name {
  font-size: 1.05rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tag {
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b1021;
  background:
    linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  box-shadow: 0 10px 30px rgba(var(--magenta-rgb), .25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(var(--magenta-rgb), .35);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border-color: rgba(148, 163, 184, .25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .03);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(var(--magenta-rgb), .18), transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, .35) 70%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 64px 0 80px;
  align-items: center;
}

.eyebrow {
  font-size: .9rem;
  letter-spacing: .3px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(0, 179, 126, .15);
}

.hero h1 {
  font-size: var(--fs-700);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hero p {
  color: var(--muted);
  font-size: var(--fs-300);
  margin: 0 0 26px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual (abstract data → insight) */
.hero-viz {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: radial-gradient(1200px 500px at 30% -10%, rgba(47, 107, 255, .25), transparent 60%),
    linear-gradient(120deg, rgba(47, 107, 255, .18), rgba(139, 92, 246, .14) 45%, rgba(var(--magenta-rgb), .18));
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.glow {
  position: absolute;
  filter: blur(40px);
  opacity: .6;
}

.g1 {
  width: 320px;
  height: 320px;
  left: -40px;
  top: -40px;
  background: radial-gradient(circle, var(--blue), transparent 60%);
}

.g2 {
  width: 280px;
  height: 280px;
  right: -30px;
  top: 10%;
  background: radial-gradient(circle, var(--magenta), transparent 60%);
}

.g3 {
  width: 260px;
  height: 260px;
  right: 20%;
  bottom: -40px;
  background: radial-gradient(circle, var(--violet), transparent 60%);
}

.viz-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask: linear-gradient(180deg, black 30%, transparent);
  -webkit-mask: linear-gradient(180deg, black 30%, transparent);
}

.viz-path {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12%;
  bottom: 12%;
}

.viz-path .line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(var(--magenta-rgb), .4);
}

.viz-path .dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 5px rgba(47, 107, 255, .15);
}

/* Found Story */
section.story {
  padding: 56px 0;
}

.story-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 107, 255, .18), rgba(139, 92, 246, .18) 50%, rgba(var(--magenta-rgb), .18));
  opacity: .25;
  mask: linear-gradient(180deg, black, transparent 60%);
  -webkit-mask: linear-gradient(180deg, black, transparent 60%);
}

.story-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding: 30px;
}

.story h2 {
  font-size: var(--fs-600);
  margin: 0 0 10px;
}

.story p {
  color: var(--text-dim);
  font-size: var(--fs-200);
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(148, 163, 184, .16);
  font-size: .9rem;
  color: var(--text);
}

.story-side {
  background: linear-gradient(135deg, rgba(47, 107, 255, .22), rgba(139, 92, 246, .14) 45%, rgba(var(--magenta-rgb), .22));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, .16);
  padding: 20px;
}

.quote {
  font-size: var(--fs-300);
  line-height: 1.4;
}

.quote em {
  color: var(--text);
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Services */
section.services {
  padding: 56px 0 80px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h3 {
  font-size: var(--fs-500);
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: var(--radius-sm);
  padding: 20px 18px 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.svc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(148, 163, 184, .28);
}

.svc h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.svc p {
  margin: 0 0 10px;
  color: var(--text-dim);
  font-size: var(--fs-200);
}

.stripe {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stripe::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 6px 0 0 6px;
  background: var(--stripe, var(--blue));
  box-shadow: 0 0 24px var(--stripe, var(--blue));
  opacity: .9;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.meta .badge {
  font-size: .78rem;
  color: #0B1021;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}

.svc .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 600;
  color: var(--text);
}

.svc .link .chev {
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.svc:hover .link .chev {
  transform: translateX(2px) rotate(45deg);
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, .16);
  background: rgba(255, 255, 255, .02);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--muted);
  font-size: .92rem;
}

.foot a {
  color: var(--text-dim);
}

/* Responsiveness */
@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0 60px;
  }

  .story-inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 0;
  }

  .btn {
    padding: 12px 16px;
    min-height: 44px;
  }

  .hero h1 {
    font-size: var(--fs-600);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .story-highlights {
    grid-template-columns: 1fr 1fr;
  }

  header.site-header {
    backdrop-filter: none;
    background: rgba(11, 16, 33, .72);
  }

  .hero {
    background:
      radial-gradient(1200px 600px at 80% -10%, rgba(var(--magenta-rgb), .12), transparent 60%),
      linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, .28) 70%),
      var(--bg);
  }

  .hero-inner {
    padding: calc(42px + env(safe-area-inset-top)) 0 calc(56px + env(safe-area-inset-bottom));
  }

  .hero p {
    color: var(--text-dim);
  }

  .hero-viz {
    box-shadow: var(--shadow-md);
    background: radial-gradient(1200px 500px at 30% -10%, rgba(47, 107, 255, .18), transparent 60%),
      linear-gradient(120deg, rgba(47, 107, 255, .14), rgba(139, 92, 246, .12) 45%, rgba(var(--magenta-rgb), .14));
  }

  .glow {
    filter: blur(28px);
    opacity: .55;
  }

  .g1 {
    width: 240px;
    height: 240px;
  }

  .g2 {
    width: 220px;
    height: 220px;
  }

  .g3 {
    width: 200px;
    height: 200px;
  }

  .stripe::before {
    width: 4px;
  }

  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(var(--magenta-rgb), .28);
  }
}

.container {
  position: relative;
}

/* Hero container needs relative positioning to ensure decorative layers with absolute positioning don't affect layout */
.hero {
  position: relative;
}

/* Right-side technical line art: stick to the right, responsive, high transparency overlay */
.hero-tech {
  right: 0;
  position: absolute;
  inset: 0 0 0 auto;
  /* Stick to the right */
  width: min(48vw, 760px);
  /* Right half width, max around 760px */
  height: 100%;
  opacity: .55;
  /* Overall opacity (adjustable between 0.45 ~ 0.7) */
  mix-blend-mode: screen;
  /* Blend with dark background to avoid harsh contrast */
  pointer-events: none;
  /* Does not block interactions */
}

/* Collapse on small screens to avoid visual dominance */
@media (max-width: 900px) {
  .hero-tech {
    width: 100%;
    opacity: .35;
    mix-blend-mode: lighten;
  }
}

@media (hover: none) and (pointer: coarse) {

  .btn-primary:hover,
  .svc:hover {
    transform: none;
  }
}

@supports not (aspect-ratio: 1/1) {
  .hero-viz {
    position: relative;
  }

  .hero-viz::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
}

/* Uses your existing --accent (vivid red) / .surface / .container */
.insights-carousel .carousel-shell {
  padding: clamp(16px, 3vw, 24px);
}

.insights-carousel .slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: clamp(16px, 3vw, 24px);
  scrollbar-width: none;
}

.insights-carousel .slides::-webkit-scrollbar {
  display: none;
}

.insights-carousel .slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius, 16px);
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(12, 14, 20, .55);
  backdrop-filter: saturate(1.1) blur(4px);
}

.insights-carousel .media {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.insights-carousel .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* soft bottom fade so text feels grounded on dark theme */
.insights-carousel .media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
  pointer-events: none;
}

.insights-carousel .content {
  padding: clamp(16px, 3vw, 32px);
}

.insights-carousel .eyebrow {
  color: var(--accent, #FF2D8D);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}

.insights-carousel h3 {
  margin: 0 0 .5rem;
  font-size: clamp(20px, 3.2vw, 28px);
}

.insights-carousel p {
  margin: 0 0 1rem;
  color: var(--text-2, #b8c0d0);
}

.insights-carousel .cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent, #FF2D8D);
  font-weight: 600;
  text-decoration: none;
}

.insights-carousel .cta:hover {
  text-decoration: underline;
}

.insights-carousel .controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 12px;
}

.insights-carousel .controls button {
  min-width: 44px;
  padding: .6rem .8rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text-1, #e8ecf3);
  border-radius: 12px;
  cursor: pointer;
}

.insights-carousel .controls button:hover {
  background: rgba(255, 255, 255, .12);
}

.insights-carousel .index {
  opacity: .8;
}

@media (max-width: 900px) {
  .insights-carousel .slide {
    grid-template-columns: 1fr;
  }

  .insights-carousel .media {
    aspect-ratio: 16/9;
    min-height: auto;
  }
}

.story .surface {
  padding-block: clamp(24px, 3vw, 36px)
}

.story .content {
  max-width: 62ch
}

.story .quote {
  max-width: 56ch;
  line-height: 1.6
}

.story .surface::after {
  opacity: .5;
  height: 28px;
  filter: blur(18px);
}

.story h2 {
  font-size: clamp(26px, 3.2vw, 30px)
}

/* tighten to container edges */
.insights-carousel .carousel-shell {
  padding-block: clamp(16px, 3vw, 24px);
  padding-inline: 0;
}

/* keep controls aligned with the same grid */
.insights-carousel .controls {
  padding-inline: 0;
}

/* optional: keep inner text rhythm consistent with service cards */
:root {
  --card-pad: clamp(16px, 3vw, 24px);
}

.insights-carousel .content {
  padding: var(--card-pad);
}

.storyB-card {
  padding: clamp(20px, 3.6vw, 32px)
}

.storyB-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(340px, 34vw, 520px);
  gap: clamp(16px, 3vw, 40px);
  align-items: start
}

.storyB-left h2 {
  margin: 0 0 .5rem;
  font-size: clamp(26px, 3.2vw, 34px)
}

.storyB-left p {
  margin: .5rem 0 0;
  max-width: 68ch
}

.storyB-timeline ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative
}

.storyB-timeline ol::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06))
}

.storyB-timeline li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 18px
}

.storyB-timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(var(--pink, 255 45 141));
  box-shadow: 0 0 0 6px rgba(255, 45, 141, .12)
}

.storyB-timeline h4 {
  margin: 0 0 .25rem;
  font-size: clamp(16px, 2.4vw, 18px)
}

.storyB-timeline p {
  margin: 0;
  color: var(--text-2, #b7bfd1)
}

@media (max-width:1024px) {
  .storyB-grid {
    grid-template-columns: 1fr
  }
}


/* iOS-safe scroller */
.insights-carousel .slides {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* mobile overrides */
@media (max-width: 900px) {
  .insights-carousel .slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .insights-carousel .media {
    height: auto;
    /* override the desktop height:100% */
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .insights-carousel .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* kill default figure margins, make the media flush to the card edges */
.insights-carousel .media {
  margin: 0;
  padding: 0;
}

.insights-carousel .media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ensure clipping to the card radius */
.insights-carousel .slide {
  overflow: hidden;
}

/* optional: crisp radius per layout */
@media (min-width: 901px) {
  .insights-carousel .media {
    border-radius: inherit;
  }
}

@media (max-width: 900px) {
  .insights-carousel .media {
    border-radius: var(--radius, 16px) var(--radius, 16px) 0 0;
  }
}

.insights-carousel .slide {
  border-radius: var(--radius, 16px);
  overflow: clip;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.insights-carousel .media {
  margin: 0;
  padding: 0;
}

.insights-carousel .media,
.insights-carousel .media img,
.insights-carousel .media::before,
.insights-carousel .media::after {
  border-radius: inherit;
}

.insights-carousel .media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-bottom-nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  text-align: left;
}

.insight-bottom-home {
  text-decoration: none;
  color: inherit;
}

.insight-bottom-home:hover {
  text-decoration: underline;
}

.page-main {
  padding-bottom: 4rem;
}

@media (max-width: 900px) {
  .insights-carousel .media {
    border-radius: var(--radius, 16px) var(--radius, 16px) 0 0;
    overflow: hidden;
  }
}

