/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/blocks/nh-benefits-card-section/index.css ***!
  \***************************************************************************************************************************************************************************************************/
/* Admin preview styles */
.acf-field[data-name="card_icon"] .nh-benefits-icon-preview {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--nh-color-primary, #3559C7);
	border-radius: 8px;
	color: #ffffff;
	margin-left: 15px;
	vertical-align: middle;
	flex-shrink: 0;
}
.acf-field[data-name="card_icon"] .nh-benefits-icon-preview svg {
	width: 24px;
	height: 24px;
	display: block;
	fill: currentColor;
}
.acf-field[data-name="card_icon"] .nh-benefits-icon-preview:empty {
	display: none !important;
}
.nh-benefits-card-section {
	width: 100%;
	padding: 80px 0; /* Default, can be overridden by ACF field or inline styles */
	margin: 0;
}
/* Respect WordPress spacing controls */
.nh-benefits-card-section.has-custom-margin {
	padding: 80px 0; /* Keep default padding when margin is customized */
}
.nh-benefits-card-section.has-custom-padding {
	margin: 0; /* Keep default margin when padding is customized */
}
.nh-benefits-card-section__container {
	width: clamp(0px, 1200px, 90%);
	margin: 0 auto;
}
.nh-benefits-card-section__grid {
	display: grid;
	grid-template-columns: repeat(var(--columns, 3), 1fr);
	gap: var(--card-gap, 20px);
}
.nh-benefits-card-section__card {
	background: var(--nh-color-light);
	border-radius: 20px;
	padding: 24px; /* Default, can be overridden by inline style */
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1 1 auto;
	min-height: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nh-benefits-card-section__card--shadow {
	box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.08);
}
.nh-benefits-card-section__card-icon {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--nh-color-primary); /* Default background, can be overridden by inline style */
	border-radius: 8px;
	color: var(--nh-color-light); /* Default color, can be overridden by inline style */
	flex-shrink: 0;
}
.nh-benefits-card-section__icon-img {
	width: 24px;
	height: 24px;
	display: block;
}
.nh-benefits-card-section__icon-svg {
	width: 24px;
	height: 24px;
	display: block;
	color: inherit;
	fill: currentColor;
}
.nh-benefits-card-section__card-title {
	font-size: var(--nh-text-size-md);
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	color: var(--nh-color-dark);
	min-height: 2.4em; /* Space for at least 2 lines of text */
}
.nh-benefits-card-section__card-secondary-headline {
	font-size: var(--nh-text-size-lg);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: var(--nh-color-dark);
}
.nh-benefits-card-section__card-content {
	font-size: var(--nh-text-size-sm);
	line-height: 1.6;
	color: var(--nh-color-gray);
	margin: 0;
	flex: 1 1 auto;
}
.nh-benefits-card-section__card-content p {
	font-size: var(--nh-text-size-sm);
	line-height: 1.6;
	color: var(--nh-color-gray);
	margin: 0;
}
.nh-benefits-card-section__card-link-wrapper {
	margin-top: auto;
	display: flex;
	align-items: center;
}
/* Placeholder styles for editor */
.nh-benefits-card-section__card--placeholder {
	opacity: 0.6;
	border: 2px dashed var(--nh-color-neutral-3);
}
.nh-benefits-card-section__icon-placeholder {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nh-benefits-card-section__icon-placeholder .nh-benefits-card-section__icon-svg {
	opacity: 0.5;
}
.nh-benefits-card-section__button-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.nh-benefits-card-section__button {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	min-width: 148px;
	text-align: center;
	background-color: var(--nh-color-primary);
	color: var(--nh-color-light);
}
.nh-benefits-card-section__button:hover {
	background-color: var(--nh-color-primary-1);
	color: var(--nh-color-light);
}
.nh-benefits-card-section.box-shodow-none .nh-benefits-card-section__card {
	box-shadow: none;
}
/* Responsive Styles */
/* Tablet Landscape (992px and below) */
@media screen and (max-width: 992px) {
	.nh-benefits-card-section__container {
		width: 95%;
	}
}
/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
	.nh-benefits-card-section {
		padding: 60px 0;
	}

	.nh-benefits-card-section__container {
		width: 90%;
	}

	.nh-benefits-card-section__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.nh-benefits-card-section__card {
		padding: 20px;
		gap: 16px;
	}

	.nh-benefits-card-section__button-wrapper {
		margin-top: 30px;
	}

	.nh-benefits-card-section__button {
		width: 100%;
		max-width: 300px;
	}
}
/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
	.nh-benefits-card-section {
		padding: 40px 0;
	}

	.nh-benefits-card-section__container {
		width: 90%;
		padding: 0 16px;
	}

	.nh-benefits-card-section__grid {
		gap: 16px;
	}

	.nh-benefits-card-section__card {
		padding: 20px;
		gap: 16px;
		border-radius: 16px;
	}

	.nh-benefits-card-section__card-icon {
		width: 40px;
		height: 40px;
	}

	.nh-benefits-card-section__icon-svg,
	.nh-benefits-card-section__icon-img {
		width: 20px;
		height: 20px;
	}

	.nh-benefits-card-section__card-title {
		font-size: var(--nh-text-size-sm);
	}

	.nh-benefits-card-section__card-secondary-headline {
		font-size: var(--nh-text-size-md);
	}

	.nh-benefits-card-section__card-content {
		font-size: var(--nh-text-size-xs);
	}

	.nh-benefits-card-section__button-wrapper {
		margin-top: 24px;
		padding: 0 16px;
	}

	.nh-benefits-card-section__button {
		width: 100%;
		max-width: 100%;
		padding: 14px 20px;
		font-size: var(--nh-text-size-sm);
	}
}
/* Small Mobile (512px and below) */
@media screen and (max-width: 512px) {
	.nh-benefits-card-section {
		padding: 32px 0;
	}

	.nh-benefits-card-section__container {
		width: 100%;
		padding: 0 12px;
	}

	.nh-benefits-card-section__grid {
		gap: 12px;
	}

	.nh-benefits-card-section__column {
		gap: 12px;
	}

	.nh-benefits-card-section__card {
		padding: 16px;
		gap: 12px;
		border-radius: 12px;
	}

	.nh-benefits-card-section__button-wrapper {
		margin-top: 20px;
		padding: 0 12px;
	}
}
/* Desktop adjustments (1200px and below) */
@media screen and (max-width: 1200px) {
	.nh-benefits-card-section {
		padding: 60px 0;
	}

	.nh-benefits-card-section__container {
		width: 90%;
	}
}



/*# sourceMappingURL=index.css.map*/