/**
 * Home Helper Finder - Helper Search
 *
 * File:
 * assets/css/hhf-helper-search.css
 *
 * Design language: "Mái ấm" (warm home)
 * Warm rice-paper background, pine-jade for trust,
 * saffron/apricot for warmth, terracotta for the call
 * to action — a palette drawn from lacquerware, tea,
 * and Tết apricot blossom rather than generic SaaS blue.
 *
 * @package Home_Helper_Finder
 */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Lora:ital,wght@0,600;0,700;1,600&display=swap');


/* =========================================================
   Design Tokens
   ========================================================= */

.hhf-helper-search {

	--hhf-font-display: 'Lora', 'Georgia', serif;
	--hhf-font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--hhf-color-bg: #FBF6EC;
	--hhf-color-surface: #FFFFFF;
	--hhf-color-surface-soft: #F6F0E3;

	--hhf-color-ink: #23302A;
	--hhf-color-ink-soft: #5C6B62;
	--hhf-color-ink-faint: #8B9690;

	--hhf-color-primary: #1E6F53;
	--hhf-color-primary-dark: #124F3A;
	--hhf-color-primary-soft: #E4F0EA;

	--hhf-color-accent: #DE8A3B;
	--hhf-color-accent-dark: #B96C24;
	--hhf-color-accent-soft: #FBEAD2;

	--hhf-color-cta: #BE4F2C;
	--hhf-color-cta-dark: #9B3D20;

	--hhf-color-border: #E8DFCB;
	--hhf-color-border-soft: #F0E9D8;

	--hhf-radius-sm: 8px;
	--hhf-radius-md: 12px;
	--hhf-radius-lg: 18px;

	--hhf-shadow-sm: 0 2px 10px rgba(35, 48, 42, 0.06);
	--hhf-shadow-md: 0 10px 28px rgba(35, 48, 42, 0.09);
}


/* =========================================================
   Base
   ========================================================= */

.hhf-helper-search,
.hhf-helper-search * {
	box-sizing: border-box;
}

.hhf-helper-search {
	width: 100%;
	max-width: 1140px;
	margin: 44px auto;
	padding: 0 20px;

	background: var(--hhf-color-bg);

	color: var(--hhf-color-ink);
	font-family: var(--hhf-font-body);
}

.hhf-helper-search :focus-visible {
	outline: 2px solid var(--hhf-color-primary);
	outline-offset: 2px;
}


/* =========================================================
   Search Form
   ========================================================= */

.hhf-helper-search-form {
	position: relative;

	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 22px;

	width: 100%;
	margin: 0 0 46px;
	padding: 34px 32px 30px;

	background: var(--hhf-color-surface);

	border: 1px solid var(--hhf-color-border);
	border-radius: var(--hhf-radius-lg);
	border-top: none;

	box-shadow: var(--hhf-shadow-sm);

	overflow: hidden;
}

/* Woven top edge — a quiet nod to thổ cẩm trim, kept to one line of colour */
.hhf-helper-search-form::before {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	height: 5px;

	background: repeating-linear-gradient(
		90deg,
		var(--hhf-color-primary) 0,
		var(--hhf-color-primary) 22px,
		var(--hhf-color-accent) 22px,
		var(--hhf-color-accent) 30px
	);
}


/* =========================================================
   Form Title
   ========================================================= */

.hhf-helper-search-form h2 {
	grid-column: 1 / -1;

	margin: 4px 0 6px;
	padding: 0;

	color: var(--hhf-color-primary-dark);

	font-family: var(--hhf-font-display);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}


/* =========================================================
   Search Fields
   ========================================================= */

.hhf-search-field {
	display: flex;
	flex-direction: column;
	gap: 8px;

	min-width: 0;
}

.hhf-search-field label {
	display: block;

	margin: 0;
	padding: 0;

	color: var(--hhf-color-ink-soft);

	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;

	text-transform: uppercase;
	letter-spacing: 0.04em;
}


/* =========================================================
   Input / Select
   ========================================================= */

.hhf-search-field input,
.hhf-search-field select {
	display: block;

	width: 100%;
	height: 48px;

	margin: 0;
	padding: 0 14px;

	border: 1px solid var(--hhf-color-border);
	border-radius: var(--hhf-radius-sm);

	background: var(--hhf-color-surface);
	color: var(--hhf-color-ink);

	font-family: var(--hhf-font-body);
	font-size: 15px;
	font-weight: 400;

	outline: none;
	box-shadow: none;

	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		background-color 0.18s ease;
}

.hhf-search-field input::placeholder {
	color: var(--hhf-color-ink-faint);
	opacity: 1;
}

.hhf-search-field input:hover,
.hhf-search-field select:hover {
	border-color: #C9BC9C;
}

.hhf-search-field input:focus,
.hhf-search-field select:focus {
	border-color: var(--hhf-color-primary);

	background: var(--hhf-color-surface);

	outline: none;

	box-shadow: 0 0 0 3px var(--hhf-color-primary-soft);
}


/* =========================================================
   Select
   ========================================================= */

.hhf-search-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	padding-right: 40px;
	cursor: pointer;

	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C6B62' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}


/* =========================================================
   Disabled Select
   ========================================================= */

.hhf-search-field select:disabled {
	background-color: var(--hhf-color-surface-soft);

	border-color: var(--hhf-color-border-soft);

	color: var(--hhf-color-ink-faint);

	cursor: not-allowed;

	opacity: 1;
}


/* =========================================================
   Number Input
   ========================================================= */

.hhf-search-field input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.hhf-search-field input[type="number"]::-webkit-inner-spin-button,
.hhf-search-field input[type="number"]::-webkit-outer-spin-button {
	margin: 0;

	-webkit-appearance: none;
}


/* =========================================================
   Submit Wrapper
   ========================================================= */

.hhf-helper-search-form > p {
	grid-column: 1 / -1;

	margin: 4px 0 0;
	padding: 0;
}


/* =========================================================
   Submit Button
   ========================================================= */

.hhf-helper-search-form button[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	width: 100%;
	min-height: 50px;

	margin: 0;
	padding: 12px 22px;

	border: 0;
	border-radius: var(--hhf-radius-sm);

	background: var(--hhf-color-primary);
	color: #FFFFFF;

	font-family: var(--hhf-font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;

	text-align: center;
	text-decoration: none;

	cursor: pointer;

	box-shadow: 0 4px 12px rgba(30, 111, 83, 0.24);

	transition:
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.hhf-helper-search-form button[type="submit"]::before {
	content: '\1F50D';

	font-size: 14px;
}

.hhf-helper-search-form button[type="submit"]:hover {
	background: var(--hhf-color-primary-dark);
	color: #FFFFFF;

	box-shadow: 0 6px 16px rgba(18, 79, 58, 0.28);

	transform: translateY(-1px);
}

.hhf-helper-search-form button[type="submit"]:focus-visible {
	box-shadow:
		0 0 0 3px var(--hhf-color-primary-soft),
		0 6px 16px rgba(18, 79, 58, 0.24);
}

.hhf-helper-search-form button[type="submit"]:active {
	transform: translateY(0);
}


/* =========================================================
   Search Results
   ========================================================= */

.hhf-helper-search-results {
	width: 100%;
	margin: 0;
	padding: 0;
}


/* =========================================================
   Results Title
   ========================================================= */

.hhf-results-title {
	display: flex;
	align-items: baseline;
	gap: 10px;

	margin: 0 0 22px;
	padding: 0 0 14px;

	border-bottom: 1px solid var(--hhf-color-border);

	color: var(--hhf-color-primary-dark);

	font-family: var(--hhf-font-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}


/* =========================================================
   No Results
   ========================================================= */

.hhf-no-results {
	margin: 0;
	padding: 46px 24px;

	border: 1px dashed var(--hhf-color-border);
	border-radius: var(--hhf-radius-md);

	background: var(--hhf-color-surface);

	color: var(--hhf-color-ink-soft);

	font-size: 15px;
	line-height: 1.6;

	text-align: center;
}


/* =========================================================
   Results List
   ========================================================= */

.hhf-helper-results-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;

	width: 100%;
}


/* =========================================================
   Helper Card
   ========================================================= */

.hhf-helper-search-result {
	display: flex;
	flex-direction: column;

	min-width: 0;
	min-height: 100%;

	margin: 0;
	padding: 24px;

	background: var(--hhf-color-surface);

	border: 1px solid var(--hhf-color-border);
	border-radius: var(--hhf-radius-lg);

	box-shadow: var(--hhf-shadow-sm);

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.hhf-helper-search-result:hover {
	border-color: #D8CCA8;

	box-shadow: var(--hhf-shadow-md);

	transform: translateY(-3px);
}


/* =========================================================
   Card Header
   ========================================================= */

.hhf-helper-card-header {
	display: flex;
	align-items: center;
	gap: 16px;

	margin: 0 0 20px;
	padding: 0 0 20px;

	border-bottom: 1px solid var(--hhf-color-border-soft);
}


/* =========================================================
   Avatar — framed with a seal-like ring, the card's
   one signature flourish (a nod to a verification stamp).
   ========================================================= */

.hhf-helper-avatar {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 78px;

	width: 78px;
	height: 78px;

	margin: 2px;
	padding: 0;

	border-radius: 50%;
}

.hhf-helper-avatar::before {
	content: '';

	position: absolute;
	inset: -5px;

	border: 1.5px dashed var(--hhf-color-accent);
	border-radius: 50%;

	opacity: 0.85;
}

.hhf-helper-avatar img {
	width: 100%;
	height: 100%;

	border-radius: 50%;

	background: var(--hhf-color-surface-soft);
	object-fit: cover;

	border: 2px solid var(--hhf-color-surface);
	box-shadow: 0 0 0 1px var(--hhf-color-border);
}


/* =========================================================
   Heading block (name + location)
   ========================================================= */

.hhf-helper-card-heading {
	display: flex;
	flex-direction: column;
	gap: 6px;

	min-width: 0;
	flex: 1;
}


/* =========================================================
   Helper Name
   ========================================================= */

.hhf-helper-name {
	margin: 0;
	padding: 0;

	color: var(--hhf-color-ink);

	font-family: var(--hhf-font-display);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.hhf-helper-name a {
	color: var(--hhf-color-ink);

	text-decoration: none;

	transition: color 0.18s ease;
}

.hhf-helper-name a:hover {
	color: var(--hhf-color-primary);
}

.hhf-helper-name a:focus-visible {
	color: var(--hhf-color-primary);
}


/* =========================================================
   Helper Location
   ========================================================= */

.hhf-helper-location {
	display: flex;
	align-items: flex-start;
	gap: 6px;

	margin: 0;

	color: var(--hhf-color-ink-soft);

	font-size: 13px;
	line-height: 1.5;
}

.hhf-helper-location-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	color: var(--hhf-color-accent-dark);

	font-size: 10px;
	line-height: 1;
}


/* =========================================================
   Card Section (services / work types / about)
   ========================================================= */

.hhf-helper-card-section {
	margin: 0 0 16px;
	padding: 0;
}

.hhf-helper-card-section:last-of-type {
	margin-bottom: 0;
}


/* =========================================================
   Card Label
   ========================================================= */

.hhf-helper-card-label {
	display: block;

	margin: 0 0 8px;
	padding: 0;

	color: var(--hhf-color-ink-faint);

	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;

	text-transform: uppercase;
	letter-spacing: 0.06em;
}


/* =========================================================
   Service Tags
   ========================================================= */

.hhf-helper-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;

	margin: 0;
	padding: 0;
}

.hhf-helper-tag {
	display: inline-flex;
	align-items: center;

	margin: 0;
	padding: 6px 11px;

	border: 1px solid transparent;
	border-radius: 999px;

	background: var(--hhf-color-primary-soft);
	color: var(--hhf-color-primary-dark);

	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
}


/* =========================================================
   Work Types
   ========================================================= */

.hhf-helper-work-types {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;

	margin: 0;
	padding: 0;
}

.hhf-helper-work-type {
	display: inline-flex;
	align-items: center;

	margin: 0;
	padding: 6px 11px 6px 9px;

	border: 1px dashed #E3C79C;
	border-radius: var(--hhf-radius-sm);

	background: var(--hhf-color-accent-soft);
	color: var(--hhf-color-accent-dark);

	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
}


/* =========================================================
   Introduction / Bio
   ========================================================= */

.hhf-helper-bio {
	padding: 14px 15px;

	border-left: 3px solid var(--hhf-color-primary);

	background: var(--hhf-color-surface-soft);

	border-radius: 0 var(--hhf-radius-sm) var(--hhf-radius-sm) 0;
}

.hhf-helper-bio .hhf-helper-card-label {
	color: var(--hhf-color-primary-dark);
}

.hhf-helper-bio p {
	margin: 0;
	padding: 0;

	color: var(--hhf-color-ink-soft);

	font-size: 13.5px;
	line-height: 1.65;
}


/* =========================================================
   Salary
   ========================================================= */

.hhf-helper-salary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;

	margin: 4px 0 0;
	padding: 14px 16px;

	border: 1px solid var(--hhf-color-border);
	border-radius: var(--hhf-radius-sm);

	background: linear-gradient(135deg, #FBF6EC 0%, var(--hhf-color-surface) 100%);
}

.hhf-helper-salary .hhf-helper-card-label {
	margin: 0;

	color: var(--hhf-color-ink-soft);

	text-transform: none;

	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0;
}

.hhf-helper-salary strong {
	margin: 0;

	color: var(--hhf-color-cta-dark);

	font-family: var(--hhf-font-display);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;

	text-align: right;
	white-space: nowrap;
}


/* =========================================================
   Card Actions
   ========================================================= */

.hhf-helper-card-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;

	margin-top: auto;
	padding-top: 20px;
}


/* =========================================================
   Call Button
   ========================================================= */

.hhf-helper-call-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	width: 100%;
	min-height: 48px;

	margin: 0;
	padding: 11px 18px;

	border: 1px solid var(--hhf-color-cta);
	border-radius: var(--hhf-radius-sm);

	background: var(--hhf-color-cta);
	color: #FFFFFF;

	font-family: var(--hhf-font-body);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;

	text-align: center;
	text-decoration: none;

	cursor: pointer;

	box-shadow: 0 4px 12px rgba(190, 79, 44, 0.22);

	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.hhf-helper-call-button:hover {
	background: var(--hhf-color-cta-dark);
	border-color: var(--hhf-color-cta-dark);
	color: #FFFFFF;

	text-decoration: none;

	box-shadow: 0 6px 16px rgba(155, 61, 32, 0.26);

	transform: translateY(-1px);
}

.hhf-helper-call-button:focus-visible {
	box-shadow:
		0 0 0 3px rgba(190, 79, 44, 0.18),
		0 6px 16px rgba(155, 61, 32, 0.22);
}

.hhf-helper-call-button:active {
	transform: translateY(0);
}


/* =========================================================
   Call Icon
   ========================================================= */

.hhf-helper-call-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 18px;
	height: 18px;

	flex: 0 0 18px;

	font-size: 15px;
	line-height: 1;
}


/* =========================================================
   Profile Link
   ========================================================= */

.hhf-helper-profile-link {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 44px;

	margin: 0;
	padding: 9px 18px;

	border: 1px solid var(--hhf-color-border);
	border-radius: var(--hhf-radius-sm);

	background: var(--hhf-color-surface);
	color: var(--hhf-color-primary-dark);

	font-family: var(--hhf-font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;

	text-align: center;
	text-decoration: none;

	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease;
}

.hhf-helper-profile-link:hover {
	background: var(--hhf-color-primary-soft);
	border-color: var(--hhf-color-primary);
	color: var(--hhf-color-primary-dark);

	text-decoration: none;
}

.hhf-helper-profile-link:focus-visible {
	background: var(--hhf-color-primary-soft);
	border-color: var(--hhf-color-primary);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 768px) {

	.hhf-helper-search {
		margin: 30px auto;
		padding: 0 16px;
	}

	.hhf-helper-search-form {
		padding: 28px 24px 24px;
		gap: 18px 20px;
	}

	.hhf-helper-search-form h2 {
		font-size: 25px;
	}

	.hhf-helper-results-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 560px) {

	.hhf-helper-search {
		margin: 24px auto;
		padding: 0 12px;
	}

	.hhf-helper-search-form {
		grid-template-columns: 1fr;

		gap: 16px;

		margin-bottom: 30px;
		padding: 24px 18px 20px;

		border-radius: var(--hhf-radius-md);
	}

	.hhf-helper-search-form h2 {
		margin-bottom: 2px;

		font-size: 22px;
	}

	.hhf-search-field {
		gap: 6px;
	}

	.hhf-search-field label {
		font-size: 12px;
	}

	.hhf-search-field input,
	.hhf-search-field select {
		height: 46px;

		font-size: 15px;
	}

	.hhf-helper-search-form button[type="submit"] {
		min-height: 48px;

		font-size: 15px;
	}

	.hhf-results-title {
		margin-bottom: 16px;

		font-size: 19px;
	}

	.hhf-no-results {
		padding: 32px 18px;

		border-radius: var(--hhf-radius-sm);
	}

	.hhf-helper-search-result {
		padding: 20px;

		border-radius: var(--hhf-radius-md);
	}

	.hhf-helper-card-header {
		gap: 13px;

		margin-bottom: 17px;
		padding-bottom: 17px;
	}

	.hhf-helper-avatar {
		flex-basis: 68px;

		width: 68px;
		height: 68px;
	}

	.hhf-helper-name {
		font-size: 18px;
	}

	.hhf-helper-location {
		font-size: 13px;
	}

	.hhf-helper-card-section {
		margin-bottom: 14px;
	}

	.hhf-helper-tag,
	.hhf-helper-work-type {
		padding: 5px 9px;

		font-size: 12px;
	}

	.hhf-helper-bio {
		padding: 12px 13px;
	}

	.hhf-helper-bio p {
		font-size: 13px;
	}

	.hhf-helper-salary {
		padding: 12px 14px;
	}

	.hhf-helper-salary strong {
		font-size: 15px;
	}

	.hhf-helper-card-actions {
		padding-top: 18px;
	}

	.hhf-helper-call-button {
		min-height: 46px;

		font-size: 15px;
	}

}


/* =========================================================
   Very Small Screens
   ========================================================= */

@media (max-width: 380px) {

	.hhf-helper-search {
		padding: 0 10px;
	}

	.hhf-helper-search-form {
		padding: 20px 16px 18px;
	}

	.hhf-helper-search-result {
		padding: 17px;
	}

	.hhf-helper-card-header {
		gap: 11px;
	}

	.hhf-helper-avatar {
		flex-basis: 58px;

		width: 58px;
		height: 58px;
	}

	.hhf-helper-name {
		font-size: 16.5px;
	}

}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.hhf-helper-search *,
	.hhf-helper-search *::before,
	.hhf-helper-search *::after {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}

}



/* =========================================================
   HHF HERO - FULL WIDTH
   ========================================================= */

.hhf-hero {
	width: 100%;
	max-width: none;

	margin-left: 0;
	margin-right: 0;

	padding: 88px 24px 84px;

	background: #1E6F53;

	box-sizing: border-box;
}


/* =========================================================
   Full viewport width
   Escapes Astra / WordPress content container
   ========================================================= */

.hhf-hero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}


/* =========================================================
   Inner Content
   ========================================================= */

.hhf-hero__inner {
	width: 100%;
	max-width: 1180px;

	margin: 0 auto;

	display: flex;
	flex-direction: column;
	align-items: center;

	text-align: center;
}


/* =========================================================
   Title
   ========================================================= */

.hhf-hero__title {
	margin: 0;
	padding: 0;

	color: #FFFFFF;

	font-size: 48px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
}


/* =========================================================
   Description
   ========================================================= */

.hhf-hero__description {
	max-width: 720px;

	margin: 20px auto 0;
	padding: 0;

	color: rgba(255, 255, 255, 0.88);

	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
}


/* =========================================================
   Actions
   ========================================================= */

.hhf-hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;

	flex-wrap: wrap;

	gap: 12px;

	margin-top: 36px;
}


/* =========================================================
   Buttons
   ========================================================= */

.hhf-hero__actions .hhf-helper-call-button,
.hhf-hero__actions .hhf-helper-profile-link {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-height: 48px;

	padding: 12px 24px;

	text-decoration: none;

	border-radius: 8px;

	box-sizing: border-box;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
}


/* =========================================================
   Hover
   ========================================================= */

.hhf-hero__actions a:hover {
	transform: translateY(-1px);
}


/* =========================================================
   Focus
   ========================================================= */

.hhf-hero__actions a:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.7);
	outline-offset: 3px;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

	.hhf-hero {
		padding: 64px 20px 60px;
	}


	.hhf-hero__title {
		font-size: 36px;
	}


	.hhf-hero__description {
		margin-top: 16px;

		font-size: 17px;
	}


	.hhf-hero__actions {
		width: 100%;

		flex-direction: column;

		margin-top: 28px;
	}


	.hhf-hero__actions a {
		width: 100%;
		max-width: 360px;
	}

}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 480px) {

	.hhf-hero {
		padding: 52px 18px 48px;
	}


	.hhf-hero__title {
		font-size: 32px;
	}


	.hhf-hero__description {
		font-size: 16px;
	}

}

/* =====================================================
   Helper Activity Status
===================================================== */

.hhf-helper-activity {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 5px;
	font-size: 13px;
	line-height: 1.4;
}


/* Activity dot */

.hhf-helper-activity-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	flex: 0 0 7px;
}


/* Recently active */

.hhf-activity-active {
	color: #1E6F53;
}

.hhf-activity-active .hhf-helper-activity-dot {
	background: #1E6F53;
}


/* Active within a few hours */

.hhf-activity-recent {
	color: #5F6B63;
}

.hhf-activity-recent .hhf-helper-activity-dot {
	background: #7A8A80;
}


/* Older activity */

.hhf-activity-old {
	color: #8A8F8B;
}

.hhf-activity-old .hhf-helper-activity-dot {
	background: #B5BAB6;
}


/* Unknown */

.hhf-activity-unknown {
	color: #999;
}

.hhf-activity-unknown .hhf-helper-activity-dot {
	background: #C5C5C5;
}