/**
 * Porto Child — global reusable typography, buttons & surfaces.
 * Use: .hp-text, .hp-text--large, .hp-btn, .hp-gradient-surface (or var(--hp-gradient-surface))
 */

/* -------------------------------------------------------------------------
 * Surfaces — shared card/cell gradient (HP Hero, HP Cards, HP Content Card)
 * ------------------------------------------------------------------------- */

:root {
	/* Gray holds to 35%, then fades to white */
	--hp-gradient-surface: linear-gradient(to right, #f7f7f7 0%, #f7f7f7 45%, #ffffff 100%);
}

.hp-gradient-surface {
	background: var(--hp-gradient-surface);
}

/* -------------------------------------------------------------------------
 * Typography
 * ------------------------------------------------------------------------- */

.hp-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #000;
}

.hp-text p {
	margin: 0 0 10px;
}

.hp-text p:last-child {
	margin-bottom: 0;
}

.hp-text--large {
	font-size: 18px;
	color: #000;
}

@media (max-width: 767px) {
	.hp-text--large {
		font-size: 16px;
	}
}

/* -------------------------------------------------------------------------
 * Buttons (primary dark) — use .hp-btn
 * ------------------------------------------------------------------------- */

.hp-btn {
	display: inline-block;
	box-sizing: border-box;
	padding: 12px 24px;
	margin: 0;
	text-decoration: none;
	line-height: 1;
	font-size: 14px;
	font-weight: 600;
	color: #fff !important;
	background-color: #000;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.hp-btn:hover,
.hp-btn:focus-visible {
	color: #fff !important;
	background-color: #333;
}

.hp-btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.hp-btn:active {
	background-color: #1a1a1a;
}

button.hp-btn {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
}