/* ==========================================================
   CLUTCH RESOURCES FAMILY V1
   Owner: clutch-resources.css
   ========================================================== */

.page-id-370 .clutch-page-rail,
body.page-parent .clutch-page-rail {
  width: 100%;
  max-width: none;
  padding: 0;
}

.clutch-resource-rail {
  width: min(calc(100% - 64px), 1230px);
  margin-inline: auto;
}


/* HERO */

.clutch-resource-hero {
  padding: 86px 0 76px;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(21,94,239,.09),
      transparent 31%
    ),
    #ffffff;

  border-bottom: 1px solid #dbe3ea;
}

.clutch-resource-hero-inner {
  padding-bottom: 70px;
}

.clutch-resource-eyebrow {
  margin: 0 0 18px;

  color: #68a9df;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: .15em;
  text-transform: uppercase;
}

.clutch-resource-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(300px, .75fr);

  gap: 72px;
  align-items: end;
}

.clutch-resource-hero h1 {
  max-width: 790px;

  margin: 0;

  color: #0d1723;

  font-size: clamp(46px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.01;

  letter-spacing: -.045em;
}

.clutch-resource-lead {
  max-width: 480px;

  margin: 0;

  color: #45566b;

  font-size: 18px;
  line-height: 1.75;
}


/* SECTIONS */

.clutch-resource-section {
  padding: 88px 0;
  background: #ffffff;
}

.clutch-resource-soft {
  background: #f5f8fb;
}

.clutch-resource-reading {
  max-width: 980px;
}

.clutch-resource-reading > h2 {
  max-width: 820px;

  margin: 0 0 26px;

  color: #0d1723;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.06;

  letter-spacing: -.035em;
}

.clutch-resource-reading > p {
  max-width: 780px;

  color: #36465a;

  font-size: 17px;
  line-height: 1.8;
}


/* LANDING CARDS */

.clutch-resource-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border: 1px solid #24374d;
  border-radius: 12px;

  overflow: hidden;
}

.clutch-resource-card {
  min-height: 300px;

  padding: 38px;

  color: #0d1723;

  text-decoration: none;

  border-right: 1px solid #24374d;
  border-bottom: 1px solid #24374d;

  transition:
    background-color .16s ease,
    transform .16s ease;
}

.clutch-resource-card:nth-child(2n) {
  border-right: 0;
}

.clutch-resource-card:nth-last-child(-n+2) {
  border-bottom: 0;
}

.clutch-resource-card:hover {
  background: #f5f9fd;
}

.clutch-resource-number,
.clutch-resource-three article > span {
  display: block;

  margin-bottom: 22px;

  color: #68a9df;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .10em;
}

.clutch-resource-card h2 {
  margin: 0 0 14px;

  color: #0d1723;

  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;

  letter-spacing: -.03em;
}

.clutch-resource-card p {
  max-width: 470px;

  margin: 0 0 28px;

  color: #405166;

  font-size: 16px;
  line-height: 1.75;
}

.clutch-resource-link {
  color: #155eef;

  font-size: 15px;
  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 4px;
}


/* THREE-COLUMN CONTENT */

.clutch-resource-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 42px;

  border: 1px solid #24374d;
  border-radius: 10px;

  overflow: hidden;
}

.clutch-resource-three article {
  padding: 34px;

  border-left: 1px solid #24374d;
}

.clutch-resource-three article:first-child {
  border-left: 0;
}

.clutch-resource-three h3 {
  margin: 0 0 14px;

  color: #0d1723;

  font-size: 25px;
  font-weight: 800;

  letter-spacing: -.02em;
}

.clutch-resource-three p {
  margin: 0;

  color: #405166;

  line-height: 1.75;
}


/* FAQ */

.clutch-resource-faq {
  max-width: 980px;
}

.clutch-resource-faq article {
  padding: 32px 0;

  border-top: 1px solid #24374d;
}

.clutch-resource-faq article:last-child {
  border-bottom: 1px solid #24374d;
}

.clutch-resource-faq h2 {
  margin: 0 0 13px;

  color: #0d1723;

  font-size: 25px;
  font-weight: 800;
}

.clutch-resource-faq p {
  max-width: 800px;

  margin: 0;

  color: #405166;

  font-size: 16px;
  line-height: 1.8;
}


/* BLOG */

.clutch-resource-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid #24374d;
  border-radius: 10px;

  overflow: hidden;
}

.clutch-resource-post {
  min-height: 280px;

  padding: 32px;

  border-left: 1px solid #24374d;
  border-bottom: 1px solid #24374d;
}

.clutch-resource-post:nth-child(3n+1) {
  border-left: 0;
}

.clutch-resource-post h2 {
  margin: 0 0 14px;

  font-size: 23px;
  line-height: 1.15;
}

.clutch-resource-post h2 a {
  color: #0d1723;
  text-decoration: none;
}

.clutch-resource-post p {
  color: #405166;
  line-height: 1.7;
}


/* DARK BAND */

.clutch-resource-band {
  padding: 78px 0;

  background: #0d1723;

  color: #ffffff;
}

.clutch-resource-band-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;

  gap: 72px;
  align-items: center;
}

.clutch-resource-band h2 {
  max-width: 650px;

  margin: 0;

  color: #ffffff;

  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.04;

  letter-spacing: -.035em;
}

.clutch-resource-band-grid > div:last-child > p {
  margin: 0 0 25px;

  color: #c7d0db;

  font-size: 17px;
  line-height: 1.7;
}


/* CTA — CLUTCH STANDARD */





.clutch-resource-note {
  margin-top: 38px;

  color: #66778a;

  font-size: 14px;
}



/* CTA — CLUTCH CANONICAL STANDARD */






/* CTA — CLUTCH CANONICAL STANDARD START */

/* WordPress may inject BRs inside anchors; never let them affect CTA geometry. */
.clutch-resource-cta br {
  display: none !important;
}

.clutch-resource-cta {
  box-sizing: border-box !important;

  width: 204px !important;
  min-width: 204px !important;

  height: 50px !important;
  min-height: 50px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* Proven Clutch optical-centering adjustment */
  padding: 2px 18px 0 !important;

  background: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  border-radius: 5px !important;

  color: #155eef !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  transition:
    transform .15s ease,
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease !important;
}

.clutch-resource-cta:hover,
.clutch-resource-cta:focus-visible {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;

  transform: translateY(-2px) !important;
}

/* CTA — CLUTCH CANONICAL STANDARD END */

/* RESPONSIVE */

@media (max-width: 900px) {

  .clutch-resource-rail {
    width: calc(100% - 36px);
  }

  .clutch-resource-hero {
    padding: 60px 0;
  }

  .clutch-resource-hero-grid,
  .clutch-resource-band-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .clutch-resource-card-grid,
  .clutch-resource-three,
  .clutch-resource-post-grid {
    grid-template-columns: 1fr;
  }

  .clutch-resource-card,
  .clutch-resource-three article,
  .clutch-resource-post {
    border-left: 0;
    border-right: 0;

    border-bottom: 1px solid #24374d;
  }

  .clutch-resource-card:last-child,
  .clutch-resource-three article:last-child,
  .clutch-resource-post:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 600px) {

  .clutch-resource-section {
    padding: 58px 0;
  }

  .clutch-resource-card {
    min-height: 0;
    padding: 28px 24px;
  }

  

}
