/* =========================================================
   TheClickUp — Inner pages design system
   Matches homepage premium language
   ========================================================= */

/* Alias: template used icon-close; icomoon ships icon-times-solid */
.icon-close:before {
  content: "\e951";
}

:root {
  --tcu-bg: #F4F6FB;
  --tcu-surface: #FFFFFF;
  --tcu-ink: #11131A;
  --tcu-muted: #667085;
  --tcu-blue: #075EEA;
  --tcu-blue-dark: #003FB8;
  --tcu-soft-blue: #EAF2FF;
  --tcu-soft-violet: #F0ECFF;
  --tcu-border: rgba(17, 24, 39, 0.08);
  --tcu-radius-lg: 28px;
  --tcu-radius: 22px;
  --tcu-radius-sm: 14px;
  --tcu-pill: 999px;
  --tcu-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --tcu-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --tcu-max: 1200px;
  --tcu-prose: 760px;
  --tcu-space: clamp(48px, 8vw, 96px);
}

body.tcu-inner,
body.svc-page {
  background: var(--tcu-bg) !important;
  color: var(--tcu-ink);
}

body.tcu-inner #wrapper,
body.svc-page #wrapper {
  background: transparent;
}

/* Soft page glow behind heroes */
.tcu-hero,
.svc2-hero,
.tcu-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(7, 94, 234, 0.14), transparent 55%),
    radial-gradient(700px 380px at 92% 10%, rgba(168, 140, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #EAF2FF 0%, #F8FAFF 45%, #F4F6FB 100%) !important;
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px) !important;
  text-align: center;
  border-bottom: 1px solid var(--tcu-border);
}
.tcu-hero .container,
.svc2-hero .container,
.tcu-page-hero .container { position: relative; z-index: 1; max-width: 820px; }

.svc2-eyebrow,
.tcu-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px !important;
  border-radius: var(--tcu-pill) !important;
  background: #fff !important;
  border: 1px solid rgba(7, 94, 234, 0.18) !important;
  color: var(--tcu-blue) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
  box-shadow: var(--tcu-shadow-sm);
}
.svc2-eyebrow::before,
.tcu-badge::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tcu-blue);
  box-shadow: 0 0 0 4px rgba(7, 94, 234, 0.15);
}

.svc2-hero h1,
.tcu-hero h1,
.tcu-page-hero h1 {
  color: var(--tcu-ink) !important;
  font-size: clamp(1.85rem, 4.2vw, 3rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  margin: 0 auto 16px !important;
  max-width: 18ch;
}
.svc2-hero .lead,
.tcu-hero .lead,
.tcu-page-hero .lead {
  color: var(--tcu-muted) !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  max-width: 38rem;
  margin: 0 auto 28px !important;
}

.svc2-hero .tf-btn,
.tcu-hero .tf-btn,
.tcu-cta .tf-btn {
  background: #11131A !important;
  box-shadow: 0 12px 28px rgba(17, 19, 26, 0.22) !important;
  border-radius: var(--tcu-pill) !important;
  min-height: 48px;
  padding: 12px 24px !important;
}
.svc2-hero .tf-btn-2,
.tcu-hero .tf-btn-2,
.tcu-cta .tf-btn-2 {
  background: #fff !important;
  color: var(--tcu-ink) !important;
  border: 1px solid var(--tcu-border) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
  border-radius: var(--tcu-pill) !important;
  min-height: 48px;
}

/* Breadcrumbs */
.seo-page {
  background: transparent !important;
}
.seo-page .breadcrumb {
  max-width: var(--tcu-max);
  margin-inline: auto;
  padding: 16px 20px 0 !important;
}
.seo-page .breadcrumb-item a { color: var(--tcu-blue) !important; font-weight: 600; }
.seo-page .breadcrumb-item.active { color: var(--tcu-muted) !important; }

/* Service / content sections */
.svc-v2 {
  background: var(--tcu-bg) !important;
}
.svc2-section {
  padding: clamp(40px, 6vw, 72px) 0 !important;
}
.svc2-section .container {
  max-width: var(--tcu-max) !important;
}
.svc2-section__title,
.svc2-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  color: var(--tcu-ink) !important;
  margin-bottom: 28px !important;
}

/* Icon card grid */
.tcu-icon-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.tcu-icon-grid.cols-2,
.tcu-icon-grid.cols-3,
.tcu-icon-grid.cols-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .tcu-icon-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .tcu-icon-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .tcu-icon-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .tcu-icon-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .tcu-icon-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.tcu-icon-card {
  background: var(--tcu-surface);
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 22px 22px 24px;
  box-shadow: var(--tcu-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.tcu-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tcu-shadow);
}
.tcu-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tcu-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.tcu-icon i,
.tcu-icon .icon {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
}
.tcu-icon-card h3,
.tcu-icon-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--tcu-ink);
  margin: 0 0 6px;
}
.tcu-icon-card p,
.tcu-icon-card span {
  margin: 0;
  color: var(--tcu-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Plain ul inside svc2-section → card look via wrapper */
.svc2-section > .container > ul:not(.svc-related-list):not(.breadcrumb) {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .svc2-section > .container > ul:not(.svc-related-list) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.svc2-section > .container > ul:not(.svc-related-list) > li {
  background: var(--tcu-surface);
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 20px 22px 20px 56px;
  position: relative;
  box-shadow: var(--tcu-shadow-sm);
  color: var(--tcu-ink);
  line-height: 1.55;
  font-size: 0.98rem;
}
.svc2-section > .container > ul:not(.svc-related-list) > li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--tcu-blue);
  box-shadow: inset 0 0 0 6px transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Process cards */
.svc2-process {
  background: transparent !important;
  gap: 28px !important;
}
.svc2-process__left h2 { text-align: left !important; color: var(--tcu-ink) !important; }
.svc2-process__left p { color: var(--tcu-muted) !important; }
.svc2-card {
  background: var(--tcu-surface) !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
  padding: 22px !important;
}
.svc2-card__icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: var(--tcu-blue) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.svc2-card__icon i { color: #fff !important; }
.svc2-card h3 { color: var(--tcu-ink) !important; }
.svc2-card p { color: var(--tcu-muted) !important; }
.svc2-card__step { color: var(--tcu-blue) !important; font-weight: 800; }

/* Related lists as chips/cards */
.svc-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .svc-related-list { grid-template-columns: repeat(2, 1fr); }
}
.svc-related-list li a {
  display: block;
  background: var(--tcu-surface);
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius-sm);
  padding: 16px 18px;
  color: var(--tcu-ink) !important;
  font-weight: 650;
  text-decoration: none;
  box-shadow: var(--tcu-shadow-sm);
  transition: border-color .15s ease, transform .15s ease;
}
.svc-related-list li a:hover {
  border-color: rgba(7, 94, 234, 0.35);
  transform: translateY(-2px);
  color: var(--tcu-blue) !important;
}

/* FAQ */
.svc2-faq__item {
  background: var(--tcu-surface) !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius-sm) !important;
  margin-bottom: 10px !important;
  box-shadow: var(--tcu-shadow-sm);
  overflow: hidden;
}
.svc2-faq__btn {
  color: var(--tcu-ink) !important;
  font-weight: 700 !important;
  padding: 16px 18px !important;
}
.svc2-faq__body {
  color: var(--tcu-muted) !important;
  padding: 0 18px 16px !important;
}

/* Contact band on services */
.svc2-contact {
  background:
    radial-gradient(800px 360px at 20% 0%, rgba(7, 94, 234, 0.12), transparent 55%),
    var(--tcu-soft-blue) !important;
  border-radius: var(--tcu-radius-lg);
  margin: 24px auto var(--tcu-space);
  max-width: calc(var(--tcu-max) + 40px);
  padding: 48px 24px !important;
}
.svc2-contact__title { color: var(--tcu-ink) !important; }
.svc2-contact__row .ic {
  background: var(--tcu-blue) !important;
  color: #fff !important;
  border-radius: 12px !important;
}
.svc2-contact__row .ic i { color: #fff !important; }
.svc2-form {
  background: #fff !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow) !important;
  padding: 28px !important;
}
.svc2-form h3 { color: var(--tcu-ink) !important; }
.svc2-form label { color: var(--tcu-ink) !important; font-weight: 650; }
.svc2-form input,
.svc2-form textarea {
  border: 1px solid var(--tcu-border) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

/* Insights hub */
.tcu-insights-hero { text-align: center; padding: clamp(48px, 7vw, 80px) 0 32px; }
.tcu-insights-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: var(--tcu-max);
  margin: 0 auto;
  padding: 0 20px 64px;
}
@media (min-width: 700px) {
  .tcu-insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .tcu-insights-grid { grid-template-columns: repeat(3, 1fr); }
}
.tcu-article-card {
  display: flex;
  flex-direction: column;
  background: var(--tcu-surface);
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 24px;
  box-shadow: var(--tcu-shadow-sm);
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tcu-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tcu-shadow);
}
.tcu-article-card .cat {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: var(--tcu-pill);
  background: var(--tcu-soft-blue);
  color: var(--tcu-blue);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 12px;
}
.tcu-article-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tcu-ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.tcu-article-card p {
  color: var(--tcu-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.tcu-article-card .read {
  color: var(--tcu-blue);
  font-weight: 750;
  font-size: 14px;
}
.tcu-cat-heading {
  width: min(var(--tcu-max), calc(100% - 40px));
  margin: 48px auto 18px;
  padding: 12px 18px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tcu-ink);
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-left: 4px solid var(--tcu-blue);
  border-radius: 12px;
  box-shadow: var(--tcu-shadow-sm);
}

/* Article reading */
.article-content,
.tcu-prose {
  max-width: var(--tcu-prose);
  margin-inline: auto;
  color: #2a2f3a;
  font-size: 1.05rem;
  line-height: 1.8;
}
.article-content h2,
.tcu-prose h2 {
  color: var(--tcu-ink);
  font-weight: 800;
  margin-top: 2em;
  letter-spacing: -0.02em;
}
.author-card,
.related-articles {
  max-width: var(--tcu-prose);
  margin: 32px auto;
  background: var(--tcu-surface);
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 24px;
  box-shadow: var(--tcu-shadow-sm);
}

/* Hub pages: services.html dark cards → light */
.svc-card {
  background: var(--tcu-surface) !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tcu-shadow);
  background: #fff !important;
}
.svc-card h2 { color: var(--tcu-ink) !important; }
.svc-card p { color: var(--tcu-muted) !important; }

/* Pricing cards already exist — lift surfaces */
.pricing-card {
  background: #fff !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
}

/* Contact form surfaces */
.form-contact,
.growth-audit-form {
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 28px;
  box-shadow: var(--tcu-shadow);
}
.box-contact-item {
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  padding: 24px;
  box-shadow: var(--tcu-shadow-sm);
}

/* Legal */
.tcu-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  background: #fff;
  border-radius: var(--tcu-radius-lg);
  border: 1px solid var(--tcu-border);
  box-shadow: var(--tcu-shadow-sm);
}
.tcu-legal h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; }
.tcu-legal h2 { margin-top: 2em; font-weight: 750; }
.tcu-legal p, .tcu-legal li { color: #3a4150; line-height: 1.75; }

/* Case study pages */
.tcu-case {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--tcu-radius-lg);
  border: 1px solid var(--tcu-border);
  box-shadow: var(--tcu-shadow);
}
.tcu-case h1 { font-weight: 800; letter-spacing: -0.02em; }

/* Final CTA band */
.tcu-cta-band {
  text-align: center;
  padding: clamp(56px, 8vw, 88px) 20px;
  margin: 24px 20px var(--tcu-space);
  border-radius: var(--tcu-radius-lg);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(7, 94, 234, 0.16), transparent 55%),
    radial-gradient(600px 280px at 90% 30%, rgba(168, 140, 255, 0.14), transparent 50%),
    #fff;
  border: 1px solid var(--tcu-border);
  box-shadow: var(--tcu-shadow-sm);
}
.tcu-cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.tcu-cta-band p { color: var(--tcu-muted); max-width: 480px; margin: 0 auto 24px; }

/* Focus */
.tcu-inner a:focus-visible,
.svc-page a:focus-visible,
.tcu-inner button:focus-visible,
.svc-page button:focus-visible {
  outline: 2px solid var(--tcu-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tcu-icon-card,
  .tcu-article-card,
  .svc-card { transition: none; }
}

/* Kill leftover dark insight cards when class applied */
.tcu-inner .section-services .svc-card div[style*="background:rgba"] {
  background: var(--tcu-soft-blue) !important;
}

/* =========================================================
   Soft-light heroes on template pages (about/work/contact/services)
   ========================================================= */
.tcu-inner .section-hero.v1 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(7, 94, 234, 0.14), transparent 55%),
    radial-gradient(700px 380px at 92% 10%, rgba(168, 140, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #EAF2FF 0%, #F8FAFF 45%, #F4F6FB 100%) !important;
  border-bottom: 1px solid var(--tcu-border);
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px) !important;
}
.tcu-inner .section-hero.v1 .hero-image {
  opacity: 0.08 !important;
  filter: grayscale(0.2);
}
.tcu-inner .section-hero.v1 .title1,
.tcu-inner .section-hero.v1 .title2 span,
.tcu-inner .section-hero.v1 .text-gradient-1,
.tcu-inner .section-hero.v1 h1 {
  color: var(--tcu-ink) !important;
  background: none !important;
  -webkit-text-fill-color: var(--tcu-ink) !important;
}
.tcu-inner .section-hero.v1 .text,
.tcu-inner .section-hero.v1 p {
  color: var(--tcu-muted) !important;
}

/* Headings on light bg */
.tcu-inner .heading-title.text-gradient-2,
.tcu-inner .heading-title.text-gradient-3,
.tcu-inner .heading-title {
  color: var(--tcu-ink) !important;
  background: none !important;
  -webkit-text-fill-color: var(--tcu-ink) !important;
}
.tcu-inner .heading-sub {
  color: var(--tcu-blue) !important;
}

/* Work portfolio cards */
.tcu-inner .featured-works-item .content,
.tcu-inner .featured-works-item .bot {
  background: transparent;
}
.tcu-inner .featured-works-item .heading,
.tcu-inner .featured-works-item h4 {
  color: var(--tcu-ink) !important;
}
.tcu-inner .featured-works-item .text-body-3,
.tcu-inner .featured-works-item .fw-semibold {
  color: #3a4150 !important;
}
.tcu-inner .featured-works-item .title.text-secondary {
  color: var(--tcu-blue) !important;
  font-weight: 750;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.tcu-inner .featured-works-item .image {
  border-radius: var(--tcu-radius);
  overflow: hidden;
  box-shadow: var(--tcu-shadow);
  border: 1px solid var(--tcu-border);
}

/* Pricing section */
.tcu-inner .section-pricing {
  background: transparent !important;
}
.tcu-inner .pricing-card__name,
.tcu-inner .pricing-card__price {
  color: var(--tcu-ink) !important;
}
.tcu-inner .pricing-card__desc,
.tcu-inner .pricing-card__list li,
.tcu-inner .pricing-intro {
  color: var(--tcu-muted) !important;
}
.tcu-inner .pricing-card--popular {
  border-color: rgba(7, 94, 234, 0.35) !important;
  box-shadow: var(--tcu-shadow) !important;
}

/* About / mission surfaces */
.tcu-inner .mission-box,
.tcu-inner .box-quotes {
  background: #fff !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
}
.tcu-inner .mission-box .title,
.tcu-inner .mission-box h3,
.tcu-inner .box-quotes .desc,
.tcu-inner .box-quotes .name {
  color: var(--tcu-ink) !important;
}
.tcu-inner .mission-box .text,
.tcu-inner .box-quotes .sub {
  color: var(--tcu-muted) !important;
}
.tcu-inner .section-features .box-features-item,
.tcu-inner .section-features .features-item {
  background: #fff !important;
  border: 1px solid var(--tcu-border) !important;
  border-radius: var(--tcu-radius) !important;
  box-shadow: var(--tcu-shadow-sm) !important;
}

/* Team / founder */
.tcu-inner .team-member,
.tcu-inner .box-our-team,
.tcu-inner .author-card {
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius);
  box-shadow: var(--tcu-shadow-sm);
}

/* Article reading polish */
.tcu-inner .article-meta {
  color: var(--tcu-muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.tcu-inner article.flat-spacing-1,
.tcu-inner article.flat-spacing {
  background: transparent;
}
.tcu-inner .article-content {
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--tcu-shadow-sm);
}

/* Legal pages */
.tcu-inner .tcu-legal-wrap-1 .seo-prose,
.tcu-inner .tcu-legal .seo-prose {
  background: #fff;
  border: 1px solid var(--tcu-border);
  border-radius: var(--tcu-radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--tcu-shadow-sm);
  max-width: 780px;
}
.tcu-inner .tcu-legal-wrap-1 h1,
.tcu-inner .tcu-legal-wrap-1 h2 {
  color: var(--tcu-ink) !important;
  font-weight: 800;
}

/* Services hub cards already light — ensure link color */
.tcu-inner .section-services a h2,
.tcu-inner .section-services a h3 {
  color: var(--tcu-ink) !important;
}
.tcu-inner .section-services a p {
  color: var(--tcu-muted) !important;
}

/* Featured insight spotlight */
.tcu-insights-featured {
  max-width: var(--tcu-max);
  margin: 0 auto 8px;
  padding: 0 20px;
}
.tcu-insights-featured .tcu-article-card {
  padding: 28px 28px 30px;
  background:
    radial-gradient(600px 240px at 0% 0%, rgba(7, 94, 234, 0.08), transparent 55%),
    #fff;
}

/* Process grid on services */
.svc2-process__cards.tcu-icon-grid {
  margin-top: 8px;
}

/* Skip link a11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tcu-blue);
  color: #fff;
  padding: 8px 14px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
