/*
 * HostScout Insights
 * Shared stylesheet for /insights/ index and all insight/article pages.
 */

:root {
  --insight-red: #AD0000;
  --insight-red-dark: #8f0000;
  --insight-ink: #17191d;
  --insight-body: #474b52;
  --insight-muted: #6f737a;
  --insight-subtle: #8e939a;
  --insight-surface: #f4f4f6;
  --insight-surface-soft: #f8f8f9;
  --insight-line: #e4e4e7;
  --insight-line-soft: #efeff1;
  --insight-white: #fff;
  --insight-dark: #0d1018;
  --insight-max: 1180px;
  --insight-article: 800px;
  --insight-sidebar: 280px;
}

.insights-page,
.insight-post {
  background: var(--insight-white);
  color: var(--insight-body);
  font-family: inherit;
}

.insights-page *,
.insights-page *::before,
.insights-page *::after,
.insight-post *,
.insight-post *::before,
.insight-post *::after {
  box-sizing: border-box;
}

.insights-wrap {
  width: min(var(--insight-max), calc(100% - 40px));
  margin: 0 auto;
}

.insights-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 22px 0 0;
  color: #8b8f95;
  font-size: 12px;
  line-height: 1.4;
}

.insights-breadcrumbs a {
  color: #676c74;
  text-decoration: none;
}

.insights-breadcrumbs a:hover {
  color: var(--insight-red);
}

.insights-breadcrumbs svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: #b0b3b8;
}

/* =========================
   INDEX
   ========================= */

.insights-index-hero {
  padding: 58px 0 34px;
}

.insights-index-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--insight-red);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.insights-index-title {
  max-width: 790px;
  margin: 0;
  color: var(--insight-ink);
  font-size: clamp(42px, 5.5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 800;
}

.insights-index-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #5f6267;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -.01em;
}

.insights-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.insights-filter-bar::-webkit-scrollbar {
  display: none;
}

.insights-filter {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #dedfe2;
  border-radius: 7px;
  background: #fff;
  color: #555b64;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.insights-filter:hover {
  border-color: #c9cbd0;
  background: #fafafa;
  color: var(--insight-ink);
}

.insights-filter.is-active {
  border-color: var(--insight-red);
  background: var(--insight-red);
  color: #fff;
}

.insights-index-main {
  padding: 18px 0 92px;
}

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

.insights-section-head h2 {
  margin: 0;
  color: var(--insight-ink);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.insights-section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--insight-muted);
  font-size: 13px;
  line-height: 1.6;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--insight-line);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17,17,17,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: #d1d4d8;
  box-shadow: 0 22px 44px rgba(17,17,17,.08);
}

.insight-card.is-hidden {
  display: none;
}

.insight-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--insight-surface);
}

.insight-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.insight-card:hover .insight-card-media img {
  transform: scale(1.025);
}

.insight-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 21px;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 11px;
  color: #878b91;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 600;
}

.insight-card-category {
  color: var(--insight-red);
  font-weight: 800;
}

.insight-card h2 {
  margin: 0;
  color: var(--insight-ink);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.025em;
  transition: color .18s ease;
}

.insight-card:hover h2 {
  color: var(--insight-red);
}

.insight-card-excerpt {
  margin: 11px 0 20px;
  color: #5a6069;
  font-size: 14px;
  line-height: 1.68;
}

.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--insight-line-soft);
}

.insight-author-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}

.insight-author-lockup img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid #e1e2e5;
  border-radius: 50%;
  object-fit: cover;
}

.insight-author-lockup span {
  overflow: hidden;
  color: #30343a;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-card-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  color: var(--insight-red);
  font-size: 12px;
  font-weight: 800;
}

.insight-card-read svg {
  width: 14px;
  height: 14px;
}

.insights-empty {
  display: none;
  padding: 34px;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  background: var(--insight-surface);
  color: var(--insight-muted);
  text-align: center;
  font-size: 14px;
}

.insights-empty.is-visible {
  display: block;
}

/* =========================
   ARTICLE
   ========================= */

.insight-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.insight-progress-fill {
  width: 0;
  height: 100%;
  background: var(--insight-red);
  transition: width .08s linear;
}

.insight-post-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 92px;
}

.insight-post-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--insight-article)) var(--insight-sidebar);
  gap: 56px;
  justify-content: center;
  align-items: start;
}

.insight-article {
  min-width: 0;
}

.insight-article-header {
  margin-bottom: 34px;
}

.insight-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 17px;
  color: #858a92;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.insight-post-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid #dedfe2;
  border-radius: 5px;
  background: var(--insight-surface);
  color: #30343a;
  font-size: 11.5px;
  font-weight: 800;
}

.insight-post-title {
  margin: 0;
  color: var(--insight-ink);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 800;
}

.insight-post-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #5a6069;
  font-size: 18px;
  line-height: 1.68;
}

.insight-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding: 16px 0;
  border-top: 1px solid var(--insight-line-soft);
  border-bottom: 1px solid var(--insight-line-soft);
}

.insight-post-author img {
  width: 46px;
  height: 46px;
  border: 1px solid #e0e2e5;
  border-radius: 50%;
  object-fit: cover;
}

.insight-post-author-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insight-post-author-name {
  color: var(--insight-ink);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
}

.insight-post-author-name:hover {
  color: var(--insight-red);
}

.insight-post-author-role {
  color: #7b8088;
  font-size: 11.5px;
  line-height: 1.4;
}

.insight-feature {
  margin: 0 0 46px;
  overflow: hidden;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  background: var(--insight-surface);
}

.insight-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.insight-feature figcaption {
  padding: 11px 15px;
  border-top: 1px solid var(--insight-line-soft);
  background: #fff;
  color: #81858c;
  font-size: 11.5px;
  line-height: 1.5;
  text-align: center;
}

.insight-inline-figure {
  margin: 34px 0 40px;
  overflow: hidden;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  background: var(--insight-surface);
}

.insight-inline-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.insight-inline-figure figcaption {
  padding: 11px 15px;
  border-top: 1px solid var(--insight-line-soft);
  background: #fff;
  color: #81858c;
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
}

.insight-article-body {
  color: var(--insight-body);
  font-size: 17px;
  line-height: 1.78;
}

.insight-article-body section {
  margin-bottom: 54px;
  scroll-margin-top: 78px;
}

.insight-article-body h2 {
  margin: 0 0 18px;
  color: var(--insight-ink);
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 800;
}

.insight-article-body h3 {
  margin: 31px 0 12px;
  color: #20242a;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.insight-article-body p {
  margin: 0 0 24px;
}

.insight-article-body p:last-child {
  margin-bottom: 0;
}

.insight-article-body strong {
  color: #17191d;
  font-weight: 700;
}

.insight-article-body a {
  color: var(--insight-red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.insight-article-body ul,
.insight-article-body ol {
  margin: 8px 0 27px 23px;
  padding: 0;
}

.insight-article-body li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.insight-article-body li::marker {
  color: var(--insight-red);
  font-weight: 800;
}

.insight-callout {
  margin: 31px 0;
  padding: 21px 22px;
  border: 1px solid #dedfe2;
  border-left: 3px solid var(--insight-red);
  border-radius: 7px;
  background: var(--insight-surface);
}

.insight-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--insight-ink);
  font-size: 14px;
}

.insight-callout p {
  margin: 0;
  color: #565c65;
  font-size: 14px;
  line-height: 1.67;
}

.insight-quote {
  margin: 32px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid #c7c9cd;
}

.insight-quote blockquote {
  margin: 0;
  color: #24282e;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -.015em;
  font-weight: 650;
}

.insight-quote cite {
  display: block;
  margin-top: 9px;
  color: #7b8088;
  font-size: 12px;
  font-style: normal;
}

.insight-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 32px;
}

.insight-stat {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--insight-line);
  border-radius: 7px;
  background: var(--insight-surface);
}

.insight-stat small,
.insight-stat strong,
.insight-stat span {
  display: block;
}

.insight-stat small {
  color: #858a92;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-stat strong {
  margin-top: 6px;
  color: var(--insight-ink);
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.insight-stat span {
  margin-top: 5px;
  color: #747981;
  font-size: 11.5px;
  line-height: 1.45;
}

.insight-table-wrap {
  margin: 29px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
}

.insight-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  color: #454b54;
  font-size: 13.5px;
  line-height: 1.55;
}

.insight-table th,
.insight-table td {
  padding: 13px 15px;
  border-bottom: 1px solid #eceef0;
  text-align: left;
  vertical-align: top;
}

.insight-table th {
  background: var(--insight-surface);
  color: #24282e;
  font-weight: 800;
}

.insight-table tr:last-child td {
  border-bottom: 0;
}

.insight-table--stackable td:first-child {
  color: var(--insight-ink);
  font-weight: 700;
}

.insight-source-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.insight-source-list li {
  margin: 0;
  padding: 14px 15px;
  border: 1px solid var(--insight-line);
  border-radius: 7px;
  background: #fff;
  color: #555b64;
  font-size: 13px;
  line-height: 1.55;
}

.insight-source-list a {
  color: #25292f;
  font-weight: 800;
}

.insight-faq {
  border-top: 1px solid var(--insight-line);
}

.insight-faq-item {
  padding: 21px 0;
  border-bottom: 1px solid var(--insight-line);
}

.insight-faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.insight-faq-item p {
  margin: 0;
  color: #565c65;
  font-size: 15.5px;
  line-height: 1.72;
}

.insight-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--insight-line);
}

.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.insight-tag {
  padding: 5px 9px;
  border: 1px solid #dedfe2;
  border-radius: 5px;
  background: var(--insight-surface);
  color: #676c74;
  font-size: 11.5px;
  font-weight: 700;
}

.insight-share {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #d9dbdf;
  border-radius: 6px;
  background: #fff;
  color: #2d3137;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.insight-share:hover {
  color: var(--insight-red);
  border-color: #c9cbd0;
}

.insight-return {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--insight-line-soft);
}

.insight-return a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--insight-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.insight-return a:hover {
  color: var(--insight-red);
}

/* Sidebar / TOC */

.insight-sidebar {
  position: sticky;
  top: 26px;
}

.insight-toc-card,
.insight-about-card {
  padding: 18px;
  border: 1px solid var(--insight-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17,17,17,.045);
}

.insight-about-card {
  margin-top: 14px;
  background: var(--insight-surface);
  box-shadow: none;
}

.insight-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--insight-line-soft);
}

.insight-toc-head strong {
  color: var(--insight-ink);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-read-progress {
  color: var(--insight-red);
  font-size: 10.5px;
  font-weight: 800;
}

.insight-toc-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-toc-list a {
  display: block;
  padding: 8px 9px;
  border-left: 2px solid transparent;
  border-radius: 5px;
  color: #686d75;
  font-size: 12.5px;
  line-height: 1.4;
  text-decoration: none;
}

.insight-toc-list a:hover {
  background: var(--insight-surface);
  color: #282c32;
}

.insight-toc-list a.is-active {
  border-left-color: var(--insight-red);
  background: var(--insight-surface);
  color: var(--insight-red);
  font-weight: 700;
}

.insight-about-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--insight-ink);
  font-size: 13px;
}

.insight-about-card p {
  margin: 0;
  color: #666c74;
  font-size: 12.5px;
  line-height: 1.6;
}

.insight-about-card a {
  color: var(--insight-red);
  font-weight: 700;
}

/* Mobile TOC */

.insight-mobile-toc {
  display: none;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--insight-line);
  background: rgba(255,255,255,.98);
}

.insight-mobile-toc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}

.insight-mobile-current {
  overflow: hidden;
  color: #454a52;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-mobile-toggle {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #dedfe2;
  border-radius: 5px;
  background: var(--insight-surface);
  color: #2f3339;
  font: inherit;
  font-size: 11.5px;
  font-weight: 800;
}

.insight-mobile-drawer {
  display: none;
  padding: 8px 16px 14px;
  border-top: 1px solid var(--insight-line-soft);
  background: #fff;
  box-shadow: 0 12px 24px rgba(17,17,17,.07);
}

.insight-mobile-drawer.is-open {
  display: block;
}

.insight-mobile-drawer .insight-toc-list a {
  padding: 9px 10px;
  font-size: 13px;
}

.insight-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: calc(100vw - 40px);
  padding: 10px 13px;
  border-radius: 5px;
  background: var(--insight-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.insight-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-post-layout {
    grid-template-columns: minmax(0, 800px);
  }

  .insight-sidebar {
    display: none;
  }

  .insight-mobile-toc {
    display: block;
  }
}

@media (max-width: 640px) {
  .insights-wrap,
  .insight-post-shell {
    width: min(100% - 28px, var(--insight-max));
  }

  .insights-breadcrumbs {
    padding-top: 16px;
    font-size: 11px;
  }

  .insights-index-hero {
    padding: 38px 0 25px;
  }

  .insights-index-title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .insights-index-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.68;
  }

  .insights-index-main {
    padding: 14px 0 68px;
  }

  .insights-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .insights-section-head h2 {
    font-size: 25px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .insight-card-body {
    padding: 18px;
  }

  .insight-card h2 {
    font-size: 19px;
  }

  .insight-post-shell {
    padding: 24px 0 68px;
  }

  .insight-post-title {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .insight-post-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .insight-post-author {
    margin-top: 23px;
  }

  .insight-feature {
    margin-bottom: 36px;
    border-radius: 6px;
  }

  .insight-article-body {
    font-size: 16px;
    line-height: 1.76;
  }

  .insight-article-body section {
    margin-bottom: 45px;
  }

  .insight-article-body h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .insight-article-body h3 {
    font-size: 18px;
  }

  .insight-article-body p {
    margin-bottom: 23px;
  }

  .insight-callout {
    margin: 27px 0;
    padding: 18px 17px;
  }

  .insight-quote blockquote {
    font-size: 18px;
  }

  .insight-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .insight-stat {
    padding: 13px;
  }

  .insight-stat strong {
    font-size: 20px;
  }

  .insight-table-wrap--stackable {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .insight-table--stackable {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .insight-table--stackable thead {
    display: none;
  }

  .insight-table--stackable tbody,
  .insight-table--stackable tr,
  .insight-table--stackable td {
    display: block;
    width: 100%;
  }

  .insight-table--stackable tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--insight-line);
    border-radius: 7px;
    background: #fff;
  }

  .insight-table--stackable tr:last-child {
    margin-bottom: 0;
  }

  .insight-table--stackable td {
    display: grid;
    grid-template-columns: minmax(102px, .78fr) minmax(0, 1.35fr);
    gap: 12px;
    padding: 12px 13px;
    border-bottom: 1px solid var(--insight-line-soft);
    overflow-wrap: anywhere;
  }

  .insight-table--stackable td:last-child {
    border-bottom: 0;
  }

  .insight-table--stackable td::before {
    content: attr(data-label);
    color: #8a8f96;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .insight-inline-figure {
    margin: 29px 0 34px;
    border-radius: 6px;
  }

  .insight-faq-item {
    padding: 18px 0;
  }

  .insight-faq-item h3 {
    font-size: 17px;
  }

  .insight-faq-item p {
    font-size: 15px;
  }

  .insight-article-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .insight-share {
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 390px) {
  .insight-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* Linked author/title refinements */
.insight-card-title-link {
  color: inherit;
  text-decoration: none;
}

.insight-author-lockup {
  color: inherit;
  text-decoration: none;
}

.insight-author-lockup:hover span {
  color: var(--insight-red);
}

.insight-card-read {
  text-decoration: none;
}

.insight-post-author-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.insight-post-author-link:hover .insight-post-author-name {
  color: var(--insight-red);
}
