/* ============================================================
   HiperCentro Natural – Homepage Sections
   ============================================================ */

/* ── Shared section utilities ── */
.hcn-section {
	padding: 4rem 0;
}

.hcn-section-sm { padding: 2.5rem 0; }

.hcn-section-dark {
	background: var(--hcn-800);
	color: #fff;
}

.hcn-section-soft { background: var(--hcn-bg); }
.hcn-section-white { background: var(--hcn-white); }

.hcn-section-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.hcn-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--hcn-600);
	background: rgba(22,163,74,.08);
	border-radius: var(--r-full);
	padding: .3125rem .75rem;
	margin-bottom: .875rem;
}

.hcn-section-dark .hcn-section-eyebrow {
	color: var(--hcn-400);
	background: rgba(74,222,128,.12);
}

.hcn-section-title {
	font-family: var(--ff-head);
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--hcn-900);
	line-height: 1.25;
	margin: 0 0 .625rem;
}

.hcn-section-dark .hcn-section-title { color: #fff; }

.hcn-section-sub {
	font-family: var(--ff-body);
	font-size: 1.0625rem;
	color: var(--hcn-txt-md);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

.hcn-section-dark .hcn-section-sub { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hcn-hero {
	position: relative;
	overflow: hidden;
	min-height: 580px;
	display: flex;
	align-items: center;
	background-color: var(--hcn-800);
	background-image: var(--hcn-hero-img, none);
	background-size: cover;
	background-position: center 30%;
}

.hcn-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		110deg,
		rgba(10,40,20,.85) 0%,
		rgba(10,40,20,.65) 55%,
		rgba(10,40,20,.25) 100%
	);
	z-index: 1;
}

.hcn-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding: 5rem 0;
}

/* front-page.php usa .hcn-container.hcn-hero-content en vez de .hcn-hero-inner */
.hcn-hero-content {
	position: relative;
	z-index: 2;
}

.hcn-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.9);
	border-radius: var(--r-full);
	padding: .3125rem .875rem;
	border: 1px solid rgba(255,255,255,.25);
	backdrop-filter: blur(4px);
	margin-bottom: 1.25rem;
}

.hcn-hero-title {
	font-family: var(--ff-head);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff !important;
	margin: 0 0 1rem;
	text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hcn-hero-title em {
	font-style: normal;
	color: var(--hcn-400);
}

.hcn-hero-sub {
	font-family: var(--ff-body);
	font-size: 1.125rem;
	line-height: 1.65;
	color: rgba(255,255,255,.85) !important;
	margin-bottom: 2rem;
	text-shadow: 0 1px 6px rgba(0,0,0,.25);
}

.hcn-hero-search {
	display: flex;
	align-items: center;
	background: rgba(255,255,255,.97);
	border-radius: var(--r-full);
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,.28);
	margin-bottom: 1.75rem;
	max-width: 500px;
}

.hcn-hero-search input {
	flex: 1 !important;
	border: none !important;
	padding: .875rem 1.25rem !important;
	font-family: var(--ff-body) !important;
	font-size: 1rem !important;
	color: var(--hcn-txt) !important;
	background: transparent !important;
	outline: none !important;
}

.hcn-hero-search input::placeholder { color: var(--hcn-txt-xs) !important; }

.hcn-hero-search button {
	background: var(--hcn-600) !important;
	color: #fff !important;
	border: none !important;
	padding: .875rem 1.5rem !important;
	font-family: var(--ff-ui) !important;
	font-size: .875rem !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	transition: background var(--tr) !important;
	border-radius: 0 !important;
}
.hcn-hero-search button:hover { background: var(--hcn-700) !important; }

.hcn-hero-actions,
.hcn-hero-ctas {
	display: flex;
	gap: .875rem;
	flex-wrap: wrap;
	align-items: center;
}

.hcn-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--r-full);
	padding: .25rem .625rem;
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 700;
	color: rgba(255,255,255,.85);
}

/* ── Decoración botánica lado derecho del hero ── */
.hcn-hero-deco {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	width: clamp(280px, 38vw, 500px);
	height: clamp(280px, 38vw, 500px);
	pointer-events: none;
	z-index: 1;
}
.hcn-hero-deco-rings {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.hcn-hero-deco-plant {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 78%;
	height: 78%;
	overflow: visible;
}

@media (max-width: 860px) { .hcn-hero-deco { display: none; } }

@media (max-width: 768px) {
	.hcn-hero { min-height: 460px; }
	.hcn-hero-inner { padding: 3.5rem 0; }
	.hcn-hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
	.hcn-hero-search { max-width: 100%; }
	.hcn-hero-actions,
	.hcn-hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
	.hcn-hero-ctas .hcn-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════
   TRUST / STATS BAR
   ════════════════════════════════════════════════════ */
.hcn-trust-bar {
	background: var(--hcn-white);
	border-bottom: 1px solid var(--hcn-brd-l);
	padding: 1.25rem 0;
}

.hcn-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	align-items: stretch;
}

@media (max-width: 768px) { .hcn-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hcn-trust-grid { grid-template-columns: 1fr; } }

.hcn-trust-item {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .875rem 1rem;
	border-right: 1px solid var(--hcn-brd-l);
}
.hcn-trust-item:last-child { border-right: none; }

@media (max-width: 768px) {
	.hcn-trust-item:nth-child(2) { border-right: none; }
	.hcn-trust-item:nth-child(3), .hcn-trust-item:nth-child(4) { border-top: 1px solid var(--hcn-brd-l); }
}

.hcn-trust-icon {
	width: 42px;
	height: 42px;
	background: var(--hcn-50);
	border-radius: var(--r);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--hcn-700);
}

.hcn-trust-text strong {
	display: block;
	font-family: var(--ff-ui);
	font-size: .875rem;
	font-weight: 800;
	color: var(--hcn-txt);
	line-height: 1.2;
	margin-bottom: 2px;
}

.hcn-trust-text span {
	font-family: var(--ff-body);
	font-size: .75rem;
	color: var(--hcn-txt-xs);
	line-height: 1.3;
}

/* ════════════════════════════════════════════════════
   CATEGORÍAS
   ════════════════════════════════════════════════════ */
.hcn-cats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
}

@media (max-width: 768px) { .hcn-cats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .hcn-cats-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }

.hcn-cat-card {
	position: relative;
	display: block;
	border-radius: var(--r-lg);
	overflow: hidden;
	text-decoration: none;
	background: var(--hcn-800);
	aspect-ratio: 3/4;
	transition: transform var(--tr), box-shadow var(--tr);
}

.hcn-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hcn-sh-l);
}

.hcn-cat-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.hcn-cat-card:hover .hcn-cat-img { transform: scale(1.06); }

.hcn-cat-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10,35,18,.85) 0%, rgba(10,35,18,.3) 50%, transparent 100%);
	z-index: 1;
}

.hcn-cat-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 1rem .875rem .875rem;
}

.hcn-cat-name {
	font-family: var(--ff-ui);
	font-size: .9375rem;
	font-weight: 800;
	color: #fff;
	display: block;
	line-height: 1.3;
	margin-bottom: 2px;
}

.hcn-cat-count {
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 600;
	color: rgba(255,255,255,.6);
}

.hcn-cat-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--hcn-800), var(--hcn-600));
}

.hcn-cat-ph-icon {
	font-size: 4rem;
	line-height: 1;
	filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
	transition: transform .4s ease;
}

.hcn-cat-card:hover .hcn-cat-ph-icon {
	transform: scale(1.2) translateY(-4px);
}

/* ════════════════════════════════════════════════════
   TARJETA DE PRODUCTO
   ════════════════════════════════════════════════════ */
.hcn-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

@media (max-width: 1100px) { .hcn-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .hcn-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 380px)  { .hcn-products-grid { grid-template-columns: 1fr; } }

.hcn-pcard {
	background: var(--hcn-white);
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--hcn-brd-l);
	display: flex;
	flex-direction: column;
	transition: transform var(--tr), box-shadow var(--tr);
	position: relative;
}

.hcn-pcard:hover {
	transform: translateY(-4px);
	box-shadow: var(--hcn-sh-l);
}

/* Image wrapper */
.hcn-pcard-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--hcn-bg);
	flex-shrink: 0;
}

.hcn-pcard-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: .75rem;
	transition: transform .35s ease;
}

.hcn-pcard:hover .hcn-pcard-img { transform: scale(1.05); }

/* Placeholder cuando no hay imagen */
.hcn-pcard-no-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--hcn-brd);
}

/* Badges */
.hcn-pcard-badges {
	position: absolute;
	top: .625rem;
	left: .625rem;
	display: flex;
	flex-direction: column;
	gap: .3rem;
	z-index: 1;
}

.hcn-badge {
	display: inline-flex;
	align-items: center;
	padding: .1875rem .5rem;
	border-radius: var(--r-full);
	font-family: var(--ff-ui);
	font-size: .625rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

.hcn-badge-sale { background: #DC2626; color: #fff; }
.hcn-badge-new  { background: var(--hcn-600); color: #fff; }
.hcn-badge-out  { background: var(--hcn-txt-lt); color: #fff; }

/* Quick action */
.hcn-pcard-quick {
	position: absolute;
	top: .625rem;
	right: .625rem;
	z-index: 1;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity var(--tr), transform var(--tr);
}

.hcn-pcard:hover .hcn-pcard-quick {
	opacity: 1;
	transform: translateY(0);
}

.hcn-pcard-quick a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--hcn-white);
	border-radius: var(--r-full);
	color: var(--hcn-txt-md);
	box-shadow: var(--hcn-sh);
	transition: background var(--tr), color var(--tr);
	text-decoration: none;
}
.hcn-pcard-quick a:hover { background: var(--hcn-600); color: #fff; }

/* Body */
.hcn-pcard-body {
	padding: .875rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: .375rem;
}

.hcn-pcard-cat {
	font-family: var(--ff-ui);
	font-size: .625rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--hcn-600);
	text-decoration: none;
	line-height: 1;
}

.hcn-pcard-title {
	font-family: var(--ff-ui);
	font-size: .9375rem;
	font-weight: 700;
	color: var(--hcn-txt);
	line-height: 1.35;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: none;
}

.hcn-pcard-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--tr);
}
.hcn-pcard-title a:hover { color: var(--hcn-700); }

/* Stars */
.hcn-pcard-stars {
	display: flex;
	align-items: center;
	gap: .25rem;
	line-height: 1;
}

.hcn-stars { color: #F59E0B; font-size: .8rem; letter-spacing: 1px; }
.hcn-review-count { font-size: .6875rem; color: var(--hcn-txt-xs); }

/* Price */
.hcn-pcard-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: .375rem;
	margin-top: auto;
	padding-top: .375rem;
}

.hcn-price-current {
	font-family: var(--ff-ui);
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--hcn-800);
}

.hcn-price-original {
	font-family: var(--ff-body);
	font-size: .8125rem;
	color: var(--hcn-txt-xs);
	text-decoration: line-through;
}

.hcn-price-pct {
	font-family: var(--ff-ui);
	font-size: .625rem;
	font-weight: 800;
	color: #DC2626;
	background: #FEF2F2;
	border-radius: var(--r-full);
	padding: 1px 5px;
}

/* Footer de tarjeta */
.hcn-pcard-footer {
	padding: 0 .875rem .875rem;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.hcn-pcard-atc {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: .375rem !important;
	background: var(--hcn-600) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--r-full) !important;
	padding: .625rem 1rem !important;
	font-family: var(--ff-ui) !important;
	font-size: .75rem !important;
	font-weight: 700 !important;
	letter-spacing: .04em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: background var(--tr), transform var(--tr) !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	box-shadow: none !important;
}
.hcn-pcard-atc:hover { background: var(--hcn-700) !important; color: #fff !important; transform: none !important; }

.hcn-pcard-detail {
	display: block;
	text-align: center;
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 700;
	color: var(--hcn-txt-md);
	text-decoration: none;
	padding: .3rem 0;
	transition: color var(--tr);
}
.hcn-pcard-detail:hover { color: var(--hcn-700); }

/* Out of stock */
.hcn-pcard-oos {
	width: 100%;
	padding: .625rem 1rem;
	background: var(--hcn-bg);
	border: 1.5px solid var(--hcn-brd);
	border-radius: var(--r-full);
	font-family: var(--ff-ui);
	font-size: .75rem;
	font-weight: 700;
	color: var(--hcn-txt-lt);
	text-align: center;
	display: block;
}

/* ════════════════════════════════════════════════════
   OFERTAS (SALE PRODUCTS)
   ════════════════════════════════════════════════════ */
.hcn-sale-section {
	background: linear-gradient(135deg, var(--hcn-900) 0%, #7f1d1d 100%);
	padding: 3rem 0;
	overflow: hidden;
	position: relative;
}

.hcn-sale-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 0%, transparent 60%),
	                  radial-gradient(circle at 80% 20%, rgba(255,255,255,.03) 0%, transparent 50%);
}

.hcn-sale-inner { position: relative; }

.hcn-sale-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.hcn-sale-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	font-family: var(--ff-ui);
	font-size: .6875rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #FCA5A5;
	background: rgba(220,38,38,.2);
	border-radius: var(--r-full);
	padding: .3rem .75rem;
	margin-bottom: .5rem;
}

.hcn-sale-title {
	font-family: var(--ff-head);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
}

/* Tarjetas de oferta (compactas) */
.hcn-sale-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width: 1024px) { .hcn-sale-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .hcn-sale-grid { grid-template-columns: repeat(2, 1fr); } }

.hcn-sale-card {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	gap: .75rem;
	align-items: center;
	padding: .75rem;
	text-decoration: none;
	transition: background var(--tr), transform var(--tr);
}
.hcn-sale-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.hcn-sale-thumb {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: var(--r);
	overflow: hidden;
	background: rgba(255,255,255,.12);
}
.hcn-sale-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.hcn-sale-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

.hcn-sale-info { flex: 1; min-width: 0; }

.hcn-sale-name {
	font-family: var(--ff-ui);
	font-size: .8125rem;
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: .25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hcn-sale-prices {
	display: flex;
	align-items: center;
	gap: .375rem;
	flex-wrap: wrap;
}

.hcn-sale-price-now {
	font-family: var(--ff-ui);
	font-size: 1rem;
	font-weight: 800;
	color: var(--hcn-400);
}

.hcn-sale-price-old {
	font-size: .75rem;
	color: rgba(255,255,255,.45);
	text-decoration: line-through;
}

.hcn-sale-pct {
	font-family: var(--ff-ui);
	font-size: .6rem;
	font-weight: 800;
	background: #DC2626;
	color: #fff;
	border-radius: var(--r-full);
	padding: 2px 5px;
}

/* ════════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
   ════════════════════════════════════════════════════ */
.hcn-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1024px) { .hcn-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hcn-why-grid { grid-template-columns: 1fr; } }

.hcn-why-card {
	background: var(--hcn-white);
	border-radius: var(--r-lg);
	padding: 2rem 1.5rem;
	text-align: center;
	border: 1px solid var(--hcn-brd-l);
	transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}

.hcn-why-card:hover {
	box-shadow: var(--hcn-sh-l);
	transform: translateY(-4px);
	border-color: var(--hcn-600);
}

.hcn-why-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--hcn-50), var(--hcn-100, #dcfce7));
	border-radius: var(--r-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.125rem;
	font-size: 1.625rem;
	color: var(--hcn-700);
	box-shadow: 0 4px 16px rgba(22,163,74,.12);
}

.hcn-why-title {
	font-family: var(--ff-ui);
	font-size: 1rem;
	font-weight: 800;
	color: var(--hcn-900);
	margin: 0 0 .5rem;
}

.hcn-why-desc {
	font-family: var(--ff-body);
	font-size: .875rem;
	color: var(--hcn-txt-md);
	line-height: 1.6;
	margin: 0;
}

/* ════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════ */
.hcn-cta-section {
	background: linear-gradient(135deg, var(--hcn-800) 0%, var(--hcn-900) 60%);
	position: relative;
	overflow: hidden;
	padding: 4.5rem 0;
}

.hcn-cta-section::before {
	content: '🌿';
	position: absolute;
	font-size: 18rem;
	right: -3rem;
	top: 50%;
	transform: translateY(-50%) rotate(-15deg);
	opacity: .04;
	line-height: 1;
	pointer-events: none;
}

.hcn-cta-inner {
	position: relative;
	text-align: center;
}

.hcn-cta-title {
	font-family: var(--ff-head);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.hcn-cta-sub {
	font-family: var(--ff-body);
	font-size: 1.0625rem;
	color: rgba(255,255,255,.75);
	max-width: 540px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.hcn-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE: sección global
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
	.hcn-section { padding: 2.5rem 0; }
	.hcn-section-head { margin-bottom: 1.75rem; }
	.hcn-cta-actions { flex-direction: column; align-items: stretch; }
	.hcn-cta-actions .hcn-btn { width: 100%; justify-content: center; }
}
