/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


/* Main Page Content Block */

.entry-content.is-layout-constrained {
    padding-top: 20px;
}

/* Nav Bar */

ul.sub-menu {
    padding-bottom: 12px;
    padding-top: 3px;
}

.ct-header-cta a.ct-button {
	box-shadow: 0px 4px 12px #00000069;
}

.ct-header-cta a.ct-button  {
	transition: all 300ms ease 0ms;
}

.ct-header-cta a.ct-button:hover {
    box-shadow: none;
}

/* Social trust badge */

.crm-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    /*border: 1px solid #cbcbcb6b;*/
    border-radius: 999px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

.crm-trust-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: #1f7a45;
    font-size: 15px;
    font-weight: 700;

    /* Optional subtle green glow */
    box-shadow:
        0 0 8px rgba(31, 122, 69, 0.25),
        0 0 18px rgba(31, 122, 69, 0.12);
}

.crm-trust-badge__text {
    font-size: 15px;
    color: #4b5563;
}

.crm-trust-badge__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

/* Animate */

.crm-trust-badge__icon {
    animation: crmPulse 2.6s ease-in-out infinite;
}

@keyframes crmPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(31, 122, 69, 0),
            0 0 8px rgba(31, 122, 69, 0.18);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(31, 122, 69, 0.10),
            0 0 18px rgba(31, 122, 69, 0.35),
            0 0 30px rgba(31, 122, 69, 0.18);
        transform: scale(1.05);
    }
}




/* Pricing Table */

.crm-pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px 50px;
}

.crm-pricing-card {
    position: relative;
    border: 1px solid #f1f1f1;
    border-radius: 14px;
    padding: 48px 28px 36px;
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
    overflow: hidden;
	background:
        radial-gradient(circle at top center,
            rgba(31,41,55,.08) 0%,
            rgba(31,41,55,.03) 30%,
            rgba(255,255,255,0) 70%),
        linear-gradient(
            to bottom,
            #F5F7FA 0%,
            #FFFFFF 38%
        );
}


/* Standard Card */

.card-white {
    background-color: #f8f8f8;
    border-radius: 12px;
}

/* Featured Card */

.crm-featured {
    padding: 0;
    border: 2px solid #1f73ff;
}

.crm-featured-inner {
    padding: 48px 28px 36px;
}

.crm-badge {
    display: block;
    background: #1F2937;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Featured Card Now Shadow */

.wp-block-column.has-background.is-layout-flow.wp-block-column-is-layout-flow.no-shadow {
    box-shadow: none;
}

/* Alignment */

.crm-card-main {
    min-height: 395px;
    display: flex;
    flex-direction: column;
}

.crm-card-main .crm-btn {
    margin-top: auto;
}

/* Typography */

.crm-pricing-card h3 {
    min-height: 95px;
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
    color: #242a31;
}

.crm-desc {
    min-height: 135px;
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.4;
    text-align: center;
    color: #000;
}

.crm-price-wrap {
    min-height: 78px;
    text-align: center;
    margin-bottom: 22px;
}

.crm-price-wrap span {
    display: block;
    font-size: 17px;
    line-height: 1.3;
    color: #000;
}

.crm-price-wrap strong {
    display: block;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
}


/* Gradiant Heading */

.blc-grad-css {
    color: #fff;
    background: linear-gradient(135deg, #000000eb, #666), radial-gradient(circle at top right, rgba(199, 42, 45, .18), transparent 35%);
}

.blc-no-txt-grad-css {
    background: linear-gradient(135deg, #000000eb, #666), radial-gradient(circle at top right, rgba(199, 42, 45, .18), transparent 35%);
}

/* Enterprise card adjustment */

.crm-pricing-card:last-child .crm-price-wrap strong {
    font-size: 22px;
    line-height: 1.2;
}

/* Buttons */

.crm-btn {
    display: block;
    width: 100%;
    max-width: 275px;
    margin: 0 auto 34px;
    padding: 12px 22px;
    background: #cf252b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    transition: all .2s ease;
}

.crm-btn:hover {
    background: #b91f25;
    color: #fff;
}

/* Divider */

.crm-pricing-card hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 0 0 34px;
}

/* Includes */

.crm-pricing-card h4 {
    margin: 0 0 28px;
    font-size: 18px;
    font-weight: 800;
    color: #242a31;
}

.crm-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crm-pricing-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.4;
    color: #242a31;
}

.crm-pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d1242a;
    font-weight: 800;
}

/* Align all headings */

.crm-pricing-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Align all descriptions */

.crm-desc {
    min-height: 165px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

/* Align all price sections */

.crm-price-wrap {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Push buttons to same location */

.crm-card-main {
    min-height: 470px;
    display: flex;
    flex-direction: column;
}

.crm-card-main .crm-btn {
    margin-top: auto;
}

.crm-pricing-card:last-child .crm-price-wrap strong {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-trade-label {margin-top: 46px;}
.crm-essentials-label {margin-top: 46px;}
.crm-comprehensive-label {margin-top: 45px;}
.crm-enterprise-label {margin-top: 21px;}

.crm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
  margin-bottom: 42px;
}
}

.crm-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.crm-card-top {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.crm-card-bottom {
  width: 100%;
}

.crm-featured {
  position: relative;
}

@media (max-width: 900px) {
  .crm-pricing-grid {
    grid-template-columns: 1fr;
  }
}


/* Tablet */

@media (max-width: 1100px) {

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

}

/* Mobile */

@media (max-width: 650px) {

    .crm-pricing-table {
        grid-template-columns: 1fr;
        padding: 30px 18px;
    }

    .crm-card-main,
    .crm-pricing-card h3,
    .crm-desc,
    .crm-price-wrap {
        min-height: auto;
    }

    .crm-pricing-card:last-child .crm-price-wrap strong {
        font-size: 24px;
    }

}

.crm-featured {
    transform: translateY(-12px);
}

.crm-featured .crm-card-top {
    padding: 19px 30px 0;
    grid-template-rows: 90px 190px 90px 60px;
}

.crm-featured .crm-card-bottom {
    padding: 0px 30px 48px;
}
.crm-featured hr {
    margin: 0 0 34px;
}

.crm-featured {
    border: 2px solid #1F2937;
    box-shadow:
        0 12px 30px rgba(0,0,0,.12),
        0 0 0 1px rgba(31,115,255,.15);
}

.crm-featured {
    margin-top: -18px;
    margin-bottom: -18px;
}

.crm-pricing-card {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.crm-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.crm-featured:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 50px rgba(0,0,0,.20),
        0 0 0 1px rgba(31,115,255,.15);
}

.crm-supplychain-pricing .crm-pricing-table {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1500px;
    gap: 24px;
}

.crm-supplychain-pricing .crm-featured {
    margin-top: -20px;
    margin-bottom: -20px;
}

/* Press Boiler */

.crm-press-boilerplate {
	margin-top: 50px;
	padding-top: 35px;
	border-top: 1px solid #e5e5e5;
	font-size: 16px;
	line-height: 1.65;
}

.crm-press-boilerplate h3 {
	margin-top: 28px;
	font-size: 20px;
}

/* Press Index */

.crm-press-room {
	background: #fff;
	padding-top: 145px;
}

.crm-press-hero {
	padding: 10px 0 75px;
    background: linear-gradient(135deg, rgba(0, 0, 0, .92), rgb(102 102 102)), radial-gradient(circle at top right, rgba(199, 42, 45, .18), transparent 35%);
	color: #fff;
}

.crm-press-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 50px;
	align-items: center;
}

.crm-eyebrow {
	color: #e14a4d;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	margin-bottom: 14px;
}

.crm-press-hero h1 {
	font-size: clamp(44px, 6vw, 76px);
	line-height: .95;
	margin-bottom: 20px;
	color: #fff;
}

.crm-press-intro {
	max-width: 720px;
	font-size: 21px;
	line-height: 1.55;
	color: rgba(255,255,255,.82);
}

.crm-press-contact-card {
	background: #fff;
	color: #222;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 20px 60px rgba(0,0,0,.22);
	margin-top: 90px;
}

.crm-press-contact-card p {
    margin-bottom: 16px;
}

.crm-press-contact-card h2 {
	font-size: 20px;
	margin-bottom: 18px;
}

.crm-press-contact-card a {
	color: #c72a2d;
}

.crm-press-stats {
	padding: 26px 0;
	background: #f7f8f9;
	border-bottom: 1px solid #ececec;
}

.crm-press-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.crm-press-stats-grid div {
	background: #fff;
	border-radius: 14px;
	padding: 22px;
	box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.crm-press-stats-grid strong {
	display: block;
	font-size: 32px;
	line-height: 1;
	color: #c72a2d;
	margin-bottom: 8px;
}

.crm-press-stats-grid span {
	font-size: 14px;
	color: #555;
}

.crm-press-toolbar {
	padding: 44px 0 20px;
}

.crm-press-toolbar-inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	margin-bottom: 22px;
}

.crm-press-toolbar h2 {
	font-size: 34px;
	margin: 0;
}

.crm-press-search {
	display: flex;
	gap: 10px;
}

.crm-press-search input {
	min-width: 300px;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 12px 18px;
}

.crm-press-search button {
	border: 0;
	border-radius: 999px;
	background: #c72a2d;
	color: #fff;
	padding: 12px 22px;
	font-weight: 700;
}

.crm-press-years {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.crm-press-years a {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e1e1e1;
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	background: #fff;
}

.crm-press-years a:hover {
	background: #c72a2d;
	border-color: #c72a2d;
	color: #fff;
}

.crm-press-listing {
	padding: 20px 0 80px;
}

.crm-press-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
}

.crm-press-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0,0,0,.08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.crm-press-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 65px rgba(0,0,0,.12);
}

.crm-press-card-image {
	display: block;
	aspect-ratio: 16 / 8.5;
	overflow: hidden;
	background: #f4f4f4;
}

.crm-press-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.crm-press-card-body {
	padding: 28px;
}

.crm-press-meta {
	font-size: 13px;
	font-weight: 700;
	color: #c72a2d;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 12px;
}

.crm-press-card h2 {
	font-size: clamp(14px, 3vw, 24px);
	line-height: 1.25;
	margin-bottom: 18px;
}

.crm-press-card h2 a {
	color: #202020;
	text-decoration: none;
}

.crm-press-card p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 24px;
}

.crm-read-release {
	color: #c72a2d;
	font-weight: 700;
	text-decoration: none;
}

.crm-read-release:after {
	content: " →";
}

.crm-press-pagination {
	margin-top: 50px;
}

@media (max-width: 900px) {
	.crm-press-hero-inner,
	.crm-press-grid,
	.crm-press-stats-grid {
		grid-template-columns: 1fr;
	}

	.crm-press-toolbar-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.crm-press-search {
		width: 100%;
	}

	.crm-press-search input {
		min-width: 0;
		width: 100%;
	}
}

.crm-press-card-image {
	position: relative;
	overflow: hidden;
}

.crm-press-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(200 43 45 / 13%);
	pointer-events: none;
}

/* Modern Insights Blog Roll */

.crm-insights-page {
	background: #fff;
	padding-top: 145px;
}

.crm-insights-hero {
	padding: 91px 0 75px;
    background: linear-gradient(135deg, rgba(0, 0, 0, .92), rgb(102 102 102)), radial-gradient(circle at top right, rgba(199, 42, 45, .18), transparent 35%);
	color: #fff;
}

.crm-insights-hero h1 {
	color: #fff;
	max-width: 920px;
	font-size: clamp(52px, 6vw, 82px);
	line-height: .92;
	letter-spacing: -0.04em;
	margin-bottom: 22px;
}

.crm-insights-hero p {
	max-width: 740px;
	font-size: 18px;
	line-height: 1.55;
	color: rgba(255,255,255,.82);
	margin-bottom: 34px;
}

.crm-hero-search {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 760px;
}

.crm-hero-search input {
	flex: 1;
	width: auto;
	min-width: 0;
	height: 52px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	padding: 0 22px;
	background: #fff;
	color: #222;
	box-shadow: none;
}

.crm-hero-search input::placeholder {
	color: #777;
}

.crm-hero-search button {
	width: auto;
	height: 52px;
	border: 0;
	border-radius: 999px;
	background: #c72a2d;
	color: #fff;
	padding: 0 26px;
	font-weight: 700;
	white-space: nowrap;
}

.crm-eyebrow {
	color: #e14a4d;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	margin-bottom: 14px;
}

.crm-insights-hero h1 {
	color: #fff;
	max-width: 900px;
	font-size: clamp(52px, 6vw, 86px);
	line-height: .92;
	letter-spacing: -0.04em;
	margin-bottom: 22px;
}

.crm-insights-hero p {
	max-width: 760px;
	font-size: 21px;
	line-height: 1.55;
	color: rgba(255,255,255,.82);
}

.crm-insights-toolbar {
	padding: 58px 0 30px;
	background: #fff;
}

.crm-insights-toolbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
}

.crm-insights-toolbar h2 {
	font-size: 36px;
	margin: 0;
}

.crm-insights-search {
	display: flex;
	gap: 10px;
}

.crm-insights-search input {
	min-width: 320px;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 13px 18px;
	background: #fff;
	color: #222;
}

.crm-insights-search button {
	border: 0;
	border-radius: 999px;
	background: #c72a2d;
	color: #fff;
	padding: 13px 24px;
	font-weight: 700;
}

.crm-insights-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 960px;
}

.crm-insights-cats a {
	border: 1px solid #e1e1e1;
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	background: #fff;
	transition: all .2s ease;
}

.crm-insights-cats a:hover {
	background: #c72a2d;
	border-color: #c72a2d;
	color: #fff;
}

.crm-insights-listing {
	padding: 20px 0 90px;
}

.crm-featured-insight {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 48px;
	align-items: center;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 62px;
}

.crm-featured-image {
	min-height: 430px;
	border-radius: 20px;
	overflow: hidden;
	background: #f4f4f4;
	box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.crm-featured-image img,
.crm-insight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.crm-featured-image:hover img,
.crm-insight-card:hover .crm-insight-image img {
	transform: scale(1.04);
}

.crm-featured-content {
	padding: 20px 0;
}

.crm-featured-label {
	display: inline-flex;
	align-items: center;
	background: rgba(199,42,45,.1);
	color: #c72a2d;
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 18px;
}

.crm-featured-content h2 {
	font-size: clamp(42px, 4.8vw, 46px);
	letter-spacing: -0.05em;
	line-height: 1.15;
	margin: 16px 0 20px;
}

.crm-featured-content h2 a,
.crm-insight-card h3 a {
	color: #202020;
	text-decoration: none;
}

.crm-featured-content p {
	font-size: 17px;
	line-height: 1.65;
	color: #555;
	max-width: 540px;
}

.crm-insight-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #777;
}

.crm-insight-meta span {
	color: #c72a2d;
}

.crm-insights-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 20px;
}

.crm-insight-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0,0,0,.08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.crm-insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 70px rgba(0,0,0,.13);
}

.crm-insight-image {
	display: block;
	aspect-ratio: 16 / 9;
	background: #f4f4f4;
	overflow: hidden;
}

.crm-insight-body {
	padding: 28px;
}

.crm-insight-card h3 {
	font-size: 25px;
	line-height: 1.1;
	margin: 14px 0;
}

.crm-insight-card p {
	color: #555;
	line-height: 1.65;
	margin-bottom: 24px;
}

.crm-read-more {
	color: #c72a2d;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	transition: transform .2s ease;
}

.crm-read-more:after {
	content: " →";
}

.crm-read-more:hover {
	transform: translateX(4px);
}

.crm-insights-pagination {
	margin-top: 55px;
}

.crm-hero-search input,
.crm-hero-search input[type="search"] {
	background: #fff !important;
	color: #222 !important;
	border: 2px solid #c72a2d;
}

.crm-hero-search input::placeholder {
	color: #777 !important;
	opacity: 1;
}

.crm-hero-search input:focus {
	background: #fff !important;
	color: #222 !important;
	border-color: #c72a2d;
	outline: none;
	box-shadow: 0 0 0 4px rgba(199, 42, 45, 0.16);
}


/* Insights closing CTA */
.crm-insights-cta {
	margin: 80px 0 60px;
	padding: 70px 40px;
	background: #f7f8fa;
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.crm-insights-cta .crm-eyebrow {
	margin-bottom: 14px;
}

.crm-insights-cta h2 {
	max-width: 780px;
	margin: 0 auto 18px;
	font-size: clamp(36px, 4vw, 46px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.crm-insights-cta p {
	max-width: 760px;
	margin: 0 auto 32px;
	font-size: 20px;
	line-height: 1.55;
	color: #444;
}

.crm-insights-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 999px;
	background: #c72a2d;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(199,42,45,.22);
	transition: transform .2s ease, box-shadow .2s ease;
}

.crm-insights-cta a:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(199,42,45,.28);
	color: #fff;
}

/* Pagination spacing */
.crm-insights-pagination {
	margin-top: 60px;
	text-align: center;
}

.crm-insights-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.crm-insights-pagination a,
.crm-insights-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid #e2e2e2;
	color: #333;
	text-decoration: none;
}

.crm-insights-pagination .current,
.crm-insights-pagination a:hover {
	background: #c72a2d;
	border-color: #c72a2d;
	color: #fff;
}

/* Custom Template breadcrumbs */

.crm-breadcrumb-wrap {
	padding: 14px 0 10px;
	font-size: 13px;
	line-height: 1.4;
	color: #777;
}

.crm-breadcrumb-wrap a {
	color: #a01315;
	text-decoration: none;
	font-weight: 600;
	font-size: 12px;
}

.crm-breadcrumb-wrap a:hover {
	text-decoration: underline;
}

.crm-breadcrumb-wrap span,
.crm-breadcrumb-wrap p,
.crm-breadcrumb-wrap .ct-breadcrumbs {
	margin: 0;
}

.crm-breadcrumb-wrap + .crm-press-hero {
	margin-top: 0;
}

/* Video Embed Styles */

.crm-video-stage {
    position: relative;
    padding: 80px 55px 36px;
    overflow: visible;
}

.crm-video-stage-in-txt {
    position: relative;
    padding: 38px 27px 38px;
	overflow: visible;
}

.crm-video-stage::before, .crm-video-stage-in-txt::before  {
    content: "";
    position: absolute;

    width: 155%;
    height: 150%;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background-image: url("https://creditriskmonitor.kinsta.cloud/wp-content/uploads/2026/07/VIdeo_BG-feathered.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: 0;
    pointer-events: none;
}

.crm-video-bkg {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.crm-video-bkg iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 760px) {
	.crm-insights-cta {
		margin: 60px 0 45px;
		padding: 48px 24px;
	}
}

@media (max-width: 1000px) {
	.crm-featured-insight,
	.crm-insights-grid {
		grid-template-columns: 1fr;
	}

	.crm-featured-image {
		min-height: 300px;
	}
}

@media (max-width: 760px) {
	.crm-insights-hero {
		padding: 75px 0 70px;
	}

	.crm-insights-toolbar-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.crm-insights-search {
		width: 100%;
	}

	.crm-insights-search input {
		min-width: 0;
		width: 100%;
	}

	.crm-featured-content,
	.crm-insight-body {
		padding: 28px 0;
	}
}

/* Custom Enterprise Footer */
.crm-site-footer {
	background: #2a2a2a;
	color: rgba(255, 255, 255, .82);
	padding: 72px 0 32px;
}

.crm-footer-inner {
	max-width: 1500px;
}

.crm-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(320px, 420px);
	gap: 54px;
	align-items: start;
}

.crm-footer-column h2,
.crm-footer-cta h2 {
	margin: 0 0 9px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 800;
}

.crm-footer-column h2 a {
	color: #9d9d9d;
}


.crm-footer-column .crm-footer-subheading {
	margin-top: 34px;
}

.crm-footer-menu,
.crm-footer-legal-menu,
.crm-footer-social-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.crm-footer-menu li {
	
}

.crm-footer-menu a,
.crm-footer-legal-menu a,
.crm-footer-social-menu a {
	color: rgba(255, 255, 255, .84);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
	transition: color .18s ease, opacity .18s ease;
}

.crm-footer-menu a:hover,
.crm-footer-legal-menu a:hover,
.crm-footer-social-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.crm-footer-cta {
	background: rgba(0, 0, 0, .18);
	border: 1px solid #ffffff17;
	border-radius: 18px;
	padding: 36px;
	box-shadow: 0 24px 70px rgb(199 42 45 / 14%);
	transition: all 300ms ease 0ms;
}

.crm-footer-cta:hover {
	box-shadow: none;
}

.crm-footer-cta .crm-footer-kicker {
	margin: 0 0 12px;
	color: #878787;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.crm-footer-cta h2 {
	color: #fff;
	font-size: 26px;
	letter-spacing: -0.03em;
	margin-bottom: 14px;
}

.crm-footer-cta p {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	line-height: 1.6;
}

.crm-footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 999px;
	background: #c72a2d;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(199, 42, 45, .28);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.crm-footer-button:hover {
	background: #ad2025;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(199, 42, 45, .34);
}

.crm-footer-bottom {
	display: grid;
	grid-template-columns: minmax(260px, auto) 1fr auto;
	gap: 28px;
	align-items: center;
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.crm-footer-brand {
	display: flex;
	align-items: center;
	gap: 18px;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
}

.crm-footer-brand .custom-logo-link img {
	width: 170px;
	height: auto;
	filter: brightness(0) invert(1);
}

.crm-footer-site-name {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.crm-footer-legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	justify-content: center;
}

.crm-footer-legal-menu a {
	font-size: 14px;
	color: rgba(255, 255, 255, .70);
}

.crm-footer-social-menu {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.crm-footer-social-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: rgba(0, 0, 0, .18);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.crm-footer-social-menu a:hover {
	background: #c72a2d;
	text-decoration: none;
}

.crm-footer-heading-secondary {
	margin-top: 28px;
}

.crm-footer-grid {
	display: grid;
	grid-template-columns: 1fr 1.35fr 1fr minmax(360px, 520px);
	gap: 56px;
	align-items: start;
}

.crm-footer-cta {
	min-width: 360px;
	max-width: 520px;
	width: 100%;
}

.crm-footer-cta h2 {
	max-width: 100%;
	word-break: normal;
	overflow-wrap: normal;
}

.crm-footer-heading {
    margin: 0 0 18px;
}

.crm-footer-heading-secondary {
    padding-top: 36px;
}

.crm-footer-trust {
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.10);
}

.crm-footer-trust-label {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
}

.crm-footer-trust-logos {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.crm-footer-trust-logos a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.crm-footer-trust-logos img {
	display: block;
	max-height: 70px;
	width: auto;
	object-fit: contain;
}

.crm-footer-stock {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.08);
}

.crm-footer-stock-icon{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border-radius:50%;
    background: #3c3c3c;
    color: #4CAF50;
    flex-shrink:0;
    z-index:1;
}

.crm-footer-stock-icon svg{
    position:relative;
    z-index:3;
}

.crm-footer-stock-icon::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background: rgb(255 255 255 / 43%);
    z-index:-1;
    animation:stockPulse 3.5s ease-out infinite;
}

@keyframes stockPulse{
    0%{
        transform:scale(1);
        opacity:.5;
    }

    70%{
        transform:scale(1.55);
        opacity:0;
    }

    100%{
        transform:scale(1.55);
        opacity:0;
    }
}

.crm-footer-stock-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.65);
	margin-bottom: 2px;
}

.crm-footer-stock strong {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.crm-footer-stock-link {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}



/* List item check mark fix */

.gs_icon_list_873 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gs_icon_list_873 .icon-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gs_icon_list_873 .icon-list-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

/*.gs_icon_list_873 .icon-list-icon {
    display: block;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    flex-shrink: 0;
}*/

.gs_icon_list_873 .icon-list-text {
    line-height: 1.4;
}

.crm-data-fields-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e3e8ef;
	border-radius: 12px;
	box-shadow: 0 12px 35px rgba(16, 24, 40, 0.07);
}

.crm-data-fields-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	padding: 30px 32px;
	background:
		linear-gradient(135deg, rgba(236, 4, 44, 0.045), transparent 55%),
		#ffffff;
	border-bottom: 1px solid #e8edf3;
}

.crm-data-fields-eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	color: #d72638;
}

.crm-data-fields-header h2 {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.2;
	color: #182230;
}

.crm-data-fields-header p {
	max-width: 600px;
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #667085;
}

.crm-data-fields-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.crm-data-fields-summary span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 11px;
	background: #f6f8fa;
	border: 1px solid #e3e8ef;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	color: #667085;
}

.crm-data-fields-summary strong {
	color: #182230;
}

.crm-data-fields-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.crm-data-fields-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: 14px;
	color: #344054;
}

.crm-data-fields-table thead {
	background: #f7f9fb;
}

.crm-data-fields-table th {
	padding: 14px 22px;
	border-bottom: 1px solid #dfe5ec;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-align: left;
	text-transform: uppercase;
	color: #667085;
}

.crm-data-fields-table td {
	padding: 17px 22px;
	border-bottom: 1px solid #edf0f4;
	line-height: 1.5;
	vertical-align: middle;
}

.crm-data-fields-table tbody tr {
	transition:
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.crm-data-fields-table tbody tr:hover {
	background: #fafbfc;
	box-shadow: inset 3px 0 0 #d72638;
}

.crm-data-fields-table tbody tr:last-child td {
	border-bottom: 0;
}

.crm-data-fields-table td:first-child {
	width: 25%;
	color: #182230;
}

.crm-data-fields-table td:nth-child(2) {
	width: 130px;
}

.crm-field-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.crm-field-required {
	background: #fff0f1;
	border: 1px solid #ffd4d8;
	color: #c71f31;
}

.crm-field-optional {
	background: #f2f4f7;
	border: 1px solid #e1e5ea;
	color: #596273;
}

.crm-data-fields-table code {
	padding: 2px 6px;
	background: #f2f4f7;
	border: 1px solid #e2e6eb;
	border-radius: 5px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 12px;
	color: #344054;
}

.crm-data-fields-table {
	border: 0 !important;
}

.crm-data-fields-table th,
.crm-data-fields-table td {
	border-left: 0 !important;
	border-right: 0 !important;
	border-top: 0 !important;
}

.crm-data-fields-table th {
	border-bottom: 1px solid #dfe5ec !important;
}

.crm-data-fields-table td {
	border-bottom: 1px solid #edf0f4 !important;
}

.crm-data-fields-table tbody tr:last-child td {
	border-bottom: 0 !important;
}

/* Gartner rating */

.gartner-rating{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 14px;
    margin-bottom:20px;
    background:#eeeff0;
    border:1px solid #e1e1e1;
    border-radius:999px;
    box-shadow:0 3px 12px rgba(0,0,0,.06);
}

.gartner-rating img{
    height:22px;
    width:auto;
    display:block;
}

.gartner-rating span{
    font-size:13px;
    color:#222;
    white-space:nowrap;
}

.gartner-rating strong{
    font-size:15px;
    font-weight:700;
}


@media (max-width: 800px) {
	.crm-data-fields-header {
		align-items: flex-start;
		flex-direction: column;
		padding: 24px;
	}

	.crm-data-fields-summary {
		justify-content: flex-start;
	}

	.crm-data-fields-table,
	.crm-data-fields-table tbody,
	.crm-data-fields-table tr,
	.crm-data-fields-table td {
		display: block;
		width: 100%;
	}

	.crm-data-fields-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.crm-data-fields-table tr {
		padding: 20px 22px;
		border-bottom: 1px solid #e7ebf0;
	}

	.crm-data-fields-table td,
	.crm-data-fields-table td:first-child,
	.crm-data-fields-table td:nth-child(2) {
		width: 100%;
		padding: 0;
		border: 0;
	}

	.crm-data-fields-table td + td {
		margin-top: 12px;
	}

	.crm-data-fields-table td::before {
		display: block;
		margin-bottom: 5px;
		content: attr(data-label);
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #98a2b3;
	}

	.crm-data-fields-table tbody tr:hover {
		box-shadow: none;
	}
}

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

	.crm-footer-cta {
		grid-column: 1 / -1;
	}

	.crm-footer-bottom {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.crm-footer-legal-menu,
	.crm-footer-social-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.crm-site-footer {
		padding: 54px 0 28px;
	}

	.crm-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.crm-footer-cta {
		padding: 28px;
	}

	.crm-footer-brand {
		align-items: flex-start;
		flex-direction: column;
	}
	.gartner-rating img {
		height: 19px;
	}
	.gartner-rating {
		gap: 0px;
	}
	.gartner-rating span {
		font-size: 11px;
	}
}

/* Blog breadcrumbs */

@media (max-width: 767px) {

  .single-post .crm-breadcrumbs {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 20px;
    font-size: 12px;
    line-height: 1.4;
  }

  .single-post .crm-breadcrumbs * {
    width: auto;
    min-width: 0;
  }

  .single-post .crm-breadcrumbs a {
    white-space: nowrap;
  }

  .single-post .crm-breadcrumbs .breadcrumb_last,
  .single-post .crm-breadcrumbs [aria-current="page"] {
    display: none;
  }
	
	.gs-accordion-item>.gs-accordion-item__title>.gs-accordion-item__heading {
	color: #000 !important;
	}
}


