.c-new-guidepoint {
	background-color: var(--color-gray-bg);
	padding: 60px clamp(24px, 4.17vw, 80px);
}

.c-new-guidepoint-title-block {
	font-weight: var(--font-weight-normal);
	max-width: var(--max-width);
	margin: 0 auto;
}

.c-new-guidepoint-title-block h2 {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: var(--heading-h1);
	text-align: center;
	line-height: 120%;
	letter-spacing: var(--heading-letter-spacing);
	color: var(--color-black);
	margin: 0 0 20px;
}

.c-new-guidepoint-title-block p {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: var(--text-lg);
	color: var(--color-black);
	margin: 0;
	text-align: center;
}

.c-new-guidepoint-pageable {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-bottom: 0 !important;
}

.c-new-guidepoint-pageable .vc_tta-panels-container {
	background-color: transparent;
	min-height: 0 !important;
}

.c-new-guidepoint-pageable .vc_tta-panel-body {
	display: flex;
	height: 370px;
}

.c-new-guidepoint-media-col {
	flex: 0 0 calc(50% - 5px);
	max-width: calc(50% - 5px);
	height: 370px;
	overflow: hidden;
	border-radius: 0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	background-color: #FFFFFF;
	padding: 15px 30px;
	box-sizing: border-box;
	order: 1;
	margin-right: 10px;
}

.c-new-guidepoint-media-col .vc_column-inner,
.c-new-guidepoint-media-col .wpb_wrapper,
.c-new-guidepoint-media-col figure.vcex-image,
.c-new-guidepoint-media-col .vcex-image-inner {
	height: 100%;
	display: block;
}
.c-new-guidepoint-media-col img{
	height: 100% !important;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}
.c-new-guidepoint-media img {
	/*
	 * removed this class on the image as it was breaking the full view of the image
	 * width: 100% !important;
	height: 100% !important;
	display: block !important;*/
	
}

.c-new-guidepoint-content-col {
	flex: 0 0 calc(50% - 5px);
	max-width: calc(50% - 5px);
	height: 370px;
	background-color: #FFFFFF;
	border-radius: 0;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	box-sizing: border-box;
	padding: 26px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	order: 2;
}

.c-new-guidepoint-content-col h2,
.c-new-guidepoint-content-col h3 {
	font-family: var(--font-primary) !important;
	font-weight: var(--font-weight-semibold) !important;
	font-size: 30px !important;
	line-height: 130% !important;
	letter-spacing: 0;
	color: var(--color-black) !important;
	margin: 0 0 16px !important;
}

.c-new-guidepoint-content-col p {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	font-size: var(--text-sm);
	line-height: 170%;
	color: var(--color-black);
	margin: 0 0 20px;
}

.c-new-guidepoint-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 88px;
	height: 56px;
	border-radius: 9999px;
	background-color: var(--color-black) !important;
	border: none !important;
	text-decoration: none;
	line-height: 0;
	padding: 0 !important;
	align-self: flex-start;
}

.c-new-guidepoint-btn .vcex-button-inner {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100%;
	height: 100%;
	font-size: 0;
}

.c-new-guidepoint-btn .vcex-button-icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
}

.c-new-guidepoint-btn svg {
	display: block;
	width: 20px !important;
	height: 20px !important;
}

.c-new-guidepoint-btn svg path {
	fill: var(--color-white);
	stroke: var(--color-white);
}

/* Pagination dots */
.c-new-guidepoint-pageable .vc_pagination {
	margin-top: 24px;
}

.c-new-guidepoint-pageable .vc_pagination-item > a {
	width: 12px;
	height: 12px;
	border: 1px solid #333333;
	background-color: transparent;
}

.c-new-guidepoint-pageable .vc_pagination-item.vc_active > a {
	background-color: #333333;
}

/*
 * Intermediate breakpoint:
 * At this range, the fixed 60px padding + fixed 370px height on the
 * media column left too little room, cutting off content.
 * Reduce padding/sizing proportionally before switching to full
 * mobile stacking.
 * Added 2026-08-13
 */
@media (max-width: 1440px) and (min-width: 901px) {
	.c-new-guidepoint-media-col {
		padding: 30px;
	}

	.c-new-guidepoint-content-col {
		padding: 20px 24px;
	}

	.c-new-guidepoint-content-col h2,
	.c-new-guidepoint-content-col h3 {
		font-size: 24px !important;
	}
}

@media (max-width: 900px) {
	.c-new-guidepoint {
		padding: 30px 5px;
	}

	.c-new-guidepoint-title-block {
		margin-bottom: 30px;
	}

	.c-new-guidepoint-pageable {
		padding-bottom: 0 !important;
	}

	.c-new-guidepoint-pageable .vc_tta-panel-body {
		flex-direction: column;
		height: auto;
	}

	.c-new-guidepoint-media-col,
	.c-new-guidepoint-content-col {
		max-width: 100%;
		flex: 1 1 100%;
	}

	.c-new-guidepoint-media-col {
		height: 370px;
		padding: 20px;
		border-radius: 20px;
		margin-right: 0 !important;
		margin-bottom: 15px;
	}

	.c-new-guidepoint-content-col {
		height: auto;
		border-radius: 20px;
		padding: 20px 10px;
	}
}

/*
 * Subtitle "Our latest announcements..." text column has an asymmetric
 * margin-right (auto-generated utility) pushing it flush-left instead
 * of centered within its 1542px column.
 * Force proper centering.
 * Added 2026-08-13
 */
.c-new-guidepoint .wpex-mr-auto {
	/*
	margin-left: auto !important;
	margin-right: auto !important;
	*/
}

/*
 * Force consistent left-to-right column order
 * (image left, text right) regardless of any row-reverse
 * set per section.
 * Added 2026-08-13
 */
.c-new-guidepoint-pageable .vc_row:has(> .c-new-guidepoint-media-col) {
	flex-direction: row !important;
}

/*
 * The vcex_image module sets an explicit fixed width
 * (e.g. 400px) as an inline style on .vcex-image-inner,
 * capping the image box regardless of the img's width: 100%.
 * Force it to fill its actual container too.
 * Added 2026-08-13
 */
.c-new-guidepoint-media .vcex-image-inner {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
}

/*
 * This specific vcex-image-inner had its own 60px padding
 * set via WPBakery's image module config, cropping the image
 * within our fixed-size container.
 * Added 2026-08-13
 */
.vc_custom_1786653484065 {
	/*
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
	*/
}

/*
 * Same issue on another carousel slide's image wrapper
 * with padding: 4vw.
 * Added 2026-08-13
 */
.vc_custom_1778707038122 {
	/*
	padding: 0 !important;
	*/
}

/*
 * Pagination dots:
 * #333333 border always, filled #333333 when active,
 * transparent when inactive.
 * Added 2026-08-13
 */
.c-new-guidepoint-pageable .vc_pagination-trigger {
	border-color: #333333 !important;
	background-color: transparent !important;
	border-width: 1.5px !important;
	width: 12px !important;
	height: 12px !important;
	box-sizing: border-box !important;
}

.c-new-guidepoint-pageable
	.vc_pagination-item.vc_active
	.vc_pagination-trigger {
	background-color: #333333 !important;
}

/*
 * Pagination dots use position: absolute with a JS-calculated
 * fixed top offset based on the desktop panel height.
 * On mobile/tablet, once the columns stack, that stale offset
 * can place the dots mid-content.
 * Force them back into normal document flow.
 * Added 2026-08-13
 */
@media (max-width: 1440px) {
	.c-new-guidepoint-pageable .vc_tta-panels-container {
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	.c-new-guidepoint-pageable .vc_pagination {
		position: static !important;
		top: auto !important;
		margin-top: 35px !important;
	}
}