/* ============================================================
   Cork Gyms – Homepage Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body.homepage-body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
	color: #1d1d1f;
	background: #ffffff;
}

/* ── Containers ───────────────────────────────────────────── */
.hp-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ── Nav ──────────────────────────────────────────────────── */
.hp-nav {
	background: #AD3701;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(173,55,1,0.3);
}

.hp-nav__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.hp-nav__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 10px;
}

.hp-nav__logo img {
	height: 40px;
	width: auto;
	/* invert to white since logo is dark teal on white bg */
	filter: brightness(0) invert(1);
}

.hp-nav__links {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hp-nav__links a {
	color: rgba(255,255,255,0.88);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 6px;
	transition: background 0.15s, color 0.15s;
}

.hp-nav__links a:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
}

/* ── Hero / Search Header ─────────────────────────────────── */
.hp-hero {
	background: linear-gradient(150deg, #0f0500 0%, #2d1006 40%, #8c2700 78%, #AD3701 100%);
	border-bottom: none;
	padding: 88px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 80% at 15% 60%, rgba(255,90,20,0.12) 0%, transparent 65%),
		radial-gradient(ellipse 55% 55% at 85% 25%, rgba(255,140,60,0.08) 0%, transparent 55%);
	pointer-events: none;
}

.hp-hero .hp-container {
	position: relative;
	z-index: 1;
}

.hp-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 14px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hp-hero__sub {
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(255,255,255,0.72);
	margin: 0 0 36px;
}

/* ── Hero Stats ───────────────────────────────────────────── */
.hp-hero-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	margin-top: 32px;
	flex-wrap: wrap;
}

.hp-hero-stat {
	display: flex;
	align-items: center;
	gap: 7px;
	color: rgba(255,255,255,0.7);
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0 28px;
	border-right: 1px solid rgba(255,255,255,0.15);
}

.hp-hero-stat:last-child {
	border-right: none;
}

.hp-hero-stat strong {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
}

.hp-search-bar {
	display: flex;
	gap: 0;
	max-width: 700px;
	margin: 0 auto;
	/* No overflow:hidden — would clip the autocomplete dropdown */
	box-shadow: 0 12px 48px rgba(0,0,0,0.5);
	border: none;
	border-radius: 10px;
	position: relative;
}

.hp-search-bar input[type="text"] {
	flex: 1;
	padding: 15px 20px;
	font-size: 1rem;
	font-family: inherit;
	border: none;
	outline: none;
	background: #fff;
	color: #1d1d1f;
	min-width: 0;
	border-radius: 10px 0 0 10px;
}

.hp-search-bar select {
	padding: 15px 12px;
	font-size: 0.92rem;
	font-family: inherit;
	border: none;
	border-left: 1px solid #e5e7eb;
	background: #fff;
	color: #555;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
}

.hp-search-bar button {
	padding: 15px 28px;
	background: #AD3701;
	color: #fff;
	border: none;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
	white-space: nowrap;
	border-radius: 0 10px 10px 0;
}

.hp-search-bar button:hover { background: #8B2D01; }

/* ── Autocomplete Dropdown ────────────────────────────────── */
.hp-autocomplete {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.15);
	z-index: 200;
	max-height: 320px;
	overflow-y: auto;
}

.hp-autocomplete__item {
	padding: 10px 16px;
	font-size: 0.92rem;
	color: #1d1d1f;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #f0f0f0;
	text-align: left;
}

.hp-autocomplete__item:last-child { border-bottom: none; }

.hp-autocomplete__item:hover,
.hp-autocomplete__item--active {
	background: #FDF4EF;
}

.hp-autocomplete__badge {
	font-size: 0.72rem;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 20px;
	flex-shrink: 0;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hp-autocomplete__badge--gym {
	background: #FDE8DB;
	color: #AD3701;
}

.hp-autocomplete__badge--area {
	background: #e3f2fd;
	color: #1565c0;
}

.hp-autocomplete__label {
	flex: 1;
	min-width: 0;
}

.hp-autocomplete__match {
	font-weight: 700;
}

/* ── Category Chips ───────────────────────────────────────── */
.hp-categories {
	background: #f8fafc;
	padding: 28px 20px;
	border-bottom: 1px solid #e8eef4;
}

.hp-categories h2 {
	font-size: 0.75rem;
	font-weight: 700;
	color: #94a3b8;
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hp-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hp-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border-radius: 50px;
	border: 1.5px solid #e2e8f0;
	background: #fff;
	color: #374151;
	font-size: 0.88rem;
	font-weight: 500;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hp-chip:hover {
	border-color: #AD3701;
	color: #AD3701;
	box-shadow: 0 2px 8px rgba(173,55,1,0.12);
}

.hp-chip.active {
	background: #AD3701;
	border-color: #AD3701;
	color: #fff;
	box-shadow: 0 4px 12px rgba(173,55,1,0.25);
}

.hp-chip svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* ── Map ──────────────────────────────────────────────────── */
.hp-map-section {
	position: relative;
	border-bottom: 1px solid #f1f5f9;
}

#hp-map {
	width: 100%;
	height: 480px;
}

.hp-map-count {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255,255,255,0.96);
	border-radius: 20px;
	padding: 6px 18px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #AD3701;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	pointer-events: none;
	z-index: 500;
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
	border-radius: 8px !important;
	box-shadow: 0 4px 16px rgba(0,0,0,0.14) !important;
}

.hp-popup {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	min-width: 160px;
}

.hp-popup__name {
	font-weight: 700;
	font-size: 0.95rem;
	color: #1a1a2e;
	margin: 0 0 4px;
}

.hp-popup__type {
	font-size: 0.8rem;
	color: #666;
	margin: 0 0 8px;
}

.hp-popup a {
	display: inline-block;
	padding: 6px 14px;
	background: #AD3701;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
}

.hp-popup a:hover { background: #8B2D01; }

/* ── Browse by Area ───────────────────────────────────────── */
.hp-areas {
	padding: 72px 20px;
	border-bottom: 1px solid #f1f5f9;
	background: #f8fafc;
}

.hp-section-title {
	font-size: 1.85rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 6px;
	letter-spacing: -0.025em;
}

.hp-section-title--center { text-align: center; }

.hp-section-sub {
	font-size: 0.95rem;
	color: #64748b;
	margin: 0 0 32px;
}

.hp-section-sub--center { text-align: center; }

.hp-area-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}

.hp-area-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 20px 16px;
	border-radius: 14px;
	border: 1.5px solid #eef2f7;
	background: #fff;
	text-decoration: none;
	color: #1d1d1f;
	font-size: 0.92rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: border-color 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
	min-height: 88px;
}

.hp-area-card:hover {
	border-color: #AD3701;
	box-shadow: 0 8px 28px rgba(173,55,1,0.12);
	color: #AD3701;
	transform: translateY(-3px);
}

.hp-area-card__name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.92rem;
	font-weight: 600;
}

.hp-area-card__icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	fill: currentColor;
	opacity: 0.4;
	transition: opacity 0.15s;
}

.hp-area-card:hover .hp-area-card__icon {
	opacity: 1;
}

.hp-area-card__count {
	margin-top: 10px;
	display: inline-block;
	background: #FDE8DB;
	color: #AD3701;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	align-self: flex-start;
}

/* ── How it Works ─────────────────────────────────────────── */
.hp-how {
	padding: 80px 20px;
	background: #fff;
	border-bottom: 1px solid #f1f5f9;
}

.hp-how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
}

.hp-how-step {
	text-align: center;
	padding: 40px 28px 36px;
	border-radius: 18px;
	background: #f8fafc;
	border: 1.5px solid #eef2f7;
	position: relative;
	transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.hp-how-step:hover {
	box-shadow: 0 12px 40px rgba(173,55,1,0.1);
	transform: translateY(-4px);
	border-color: rgba(173,55,1,0.2);
}

.hp-how-step__num {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: #AD3701;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.05em;
}

.hp-how-step__icon {
	width: 68px;
	height: 68px;
	background: linear-gradient(135deg, #FDE8DB 0%, #fdd0b0 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.hp-how-step__icon svg {
	width: 30px;
	height: 30px;
	stroke: #AD3701;
}

.hp-how-step h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}

.hp-how-step p {
	font-size: 0.88rem;
	color: #64748b;
	margin: 0;
	line-height: 1.65;
}

/* ── Browse by Type Results (compact list rows) ───────────── */
.hp-filter-results {
	padding: 40px 20px 48px;
	background: #fff;
	border-bottom: 1px solid #f1f5f9;
}

.hp-filter-results__header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 16px;
}

.hp-filter-results__title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.01em;
}

.hp-filter-results__count {
	font-size: 0.85rem;
	color: #6b7280;
}

.hp-filter-list {
	border: none;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Compact list row */
.hp-frow {
	display: flex;
	align-items: center;
	background: #fff;
	border-bottom: 1px solid #f1f5f9;
}

.hp-frow:last-child { border-bottom: none; }

a.hp-frow__link,
a.hp-frow__link * { text-decoration: none; }

.hp-frow__link {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	padding: 10px 14px;
	color: #1d1d1f;
	min-width: 0;
	text-decoration: none;
	transition: background 0.12s;
}

.hp-frow__link:hover { background: #fef9f7; }

.hp-frow__img {
	width: 72px;
	height: 56px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	background: #1a1a2e;
	display: block;
}

.hp-frow__img-placeholder {
	width: 72px;
	height: 56px;
	border-radius: 6px;
	background: #1a1a2e;
	flex-shrink: 0;
}

.hp-frow__info {
	flex: 1;
	min-width: 0;
}

.hp-frow__name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #1a1a2e;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hp-frow__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 4px;
}

.hp-frow__area {
	font-size: 0.78rem;
	color: #666;
}

.hp-frow__type {
	font-size: 0.72rem;
	color: #AD3701;
	background: #FDE8DB;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 500;
	white-space: nowrap;
}

.hp-frow__rating {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 0.78rem;
}

.hp-frow__stars { color: #f5a623; font-size: 0.7rem; letter-spacing: 0.5px; }
.hp-frow__rating-num { font-weight: 600; color: #374151; }
.hp-frow__rating-count { color: #888; }

.hp-frow__atc {
	padding: 0 14px 0 0;
	flex-shrink: 0;
}

/* Show More button */
.hp-filter-showmore-wrap {
	text-align: center;
	margin-top: 14px;
}

.hp-filter-showmore-btn {
	padding: 10px 24px;
	border: 1.5px solid #AD3701;
	border-radius: 6px;
	color: #AD3701;
	background: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.hp-filter-showmore-btn:hover {
	background: #AD3701;
	color: #fff;
}

/* ── Featured Gyms ────────────────────────────────────────── */
.hp-featured {
	padding: 64px 20px;
	border-bottom: 1px solid #f1f5f9;
	background: #fff;
}

.hp-gym-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hp-gym-card {
	background: #fff;
	border-radius: 16px;
	border: none;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	transition: box-shadow 0.22s, transform 0.22s;
}

.hp-gym-card:hover {
	box-shadow: 0 12px 36px rgba(0,0,0,0.14);
	transform: translateY(-4px);
}

a.hp-gym-card__link,
a.hp-gym-card__link * {
	text-decoration: none;
}

.hp-gym-card__link {
	text-decoration: none;
	color: #1d1d1f;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-gym-card__atc-wrap {
	padding: 10px 16px 16px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	justify-content: center;
}

.hp-gym-card__atc-wrap .gym-atc {
	letter-spacing: 0.03em;
}

.hp-gym-card__img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: #1e293b;
	display: block;
}

.hp-gym-card__img-placeholder {
	width: 100%;
	height: 220px;
	background: #1e293b;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-gym-card__body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hp-gym-card__name {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 4px;
	letter-spacing: -0.01em;
}

.hp-gym-card__area {
	font-size: 0.82rem;
	color: #64748b;
	margin: 0 0 10px;
}

.hp-gym-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85rem;
}

.hp-gym-card__stars {
	color: #f5a623;
	letter-spacing: 1px;
}

.hp-gym-card__rating-num {
	font-weight: 600;
	color: #374151;
}

.hp-gym-card__rating-count {
	font-weight: 400;
	color: #888;
	font-size: 0.78rem;
}

.hp-gym-card__bottom {
	margin-top: auto;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
}

.hp-gym-card__bottom-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.hp-gym-card__type {
	font-size: 0.78rem;
	color: #AD3701;
	background: #FDE8DB;
	padding: 2px 8px;
	border-radius: 20px;
	font-weight: 500;
	white-space: nowrap;
	align-self: flex-start;
}

.hp-gym-card__meta-divider {
	color: #ccc;
	font-size: 0.78rem;
}

.hp-gym-card__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex-shrink: 0;
	background: #FDF4EF;
	border: 1px solid #F5C9B5;
	border-radius: 8px;
	padding: 5px 10px;
	text-align: right;
	line-height: 1.2;
}

.hp-gym-card__price-from {
	font-size: 0.65rem;
	color: #0f172a;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hp-gym-card__price-amount {
	font-size: 1rem;
	font-weight: 700;
	color: #AD3701;
}

.hp-gym-card__price-mo {
	font-size: 0.65rem;
	color: #0f172a;
	font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────── */
.hp-footer {
	background: #0f172a;
	color: rgba(255,255,255,0.55);
	padding: 28px 20px;
	text-align: center;
	font-size: 0.875rem;
}

.hp-footer a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	transition: color 0.15s;
}

.hp-footer a:hover { color: #fff; }

.hp-footer__links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
	.hp-gym-grid { grid-template-columns: repeat(2, 1fr); }
	.hp-how-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.hp-hero { padding: 56px 20px 48px; }
	.hp-hero h1 { font-size: 2.4rem; }
	.hp-section-title { font-size: 1.5rem; }
	.hp-hero-stats { gap: 0; }
	.hp-hero-stat { padding: 0 16px; font-size: 0.82rem; }
}

@media (max-width: 600px) {
	.hp-hero { padding: 40px 20px 36px; }
	.hp-hero h1 { font-size: 1.9rem; }
	.hp-hero__sub { font-size: 0.95rem; }
	.hp-hero-stats { flex-direction: column; gap: 8px; margin-top: 24px; }
	.hp-hero-stat { border-right: none; padding: 0; font-size: 0.85rem; }
	.hp-search-bar { flex-direction: column; border-radius: 10px; box-shadow: 0 6px 32px rgba(0,0,0,0.4); }
	.hp-search-bar input[type="text"],
	.hp-search-bar select,
	.hp-search-bar button { width: 100%; border-left: none; border-top: 1px solid #e5e7eb; border-radius: 0; }
	.hp-search-bar input[type="text"] { border-top: none; border-radius: 10px 10px 0 0; }
	.hp-search-bar select { padding: 14px 16px; font-size: 1rem; height: 56px; -webkit-appearance: auto; }
	.hp-search-bar button { border-radius: 0 0 10px 10px; padding: 16px 28px; font-size: 1rem; }
	.hp-gym-grid { grid-template-columns: 1fr; }
	.hp-gym-card { border-radius: 12px; }
	.hp-gym-card__img, .hp-gym-card__img-placeholder { height: 200px; }
	.hp-area-grid { grid-template-columns: repeat(2, 1fr); }
	#hp-map { height: 320px; }
	.hp-chip { padding: 8px 14px; font-size: 0.85rem; }
	.hp-areas { padding: 40px 20px; }
	.hp-featured { padding: 40px 20px; }
	.hp-how { padding: 48px 20px; }
	.hp-how-steps { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
	.hp-how-step { padding: 32px 20px 28px; }
	.hp-frow__atc { display: none; }
	.hp-gym-card__atc-wrap { padding: 6px 10px 10px; }
}

/* ── Help Us Keep GymCork Accurate banner ── */
.hp-accuracy {
	padding: 20px 0 32px;
}

.hp-accuracy__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff8f5;
	border: 1px solid #f0e0d8;
	border-left: 3px solid #AD3701;
	border-radius: 10px;
	padding: 20px 24px;
}

.hp-accuracy__body {
	flex: 1;
}

.hp-accuracy__heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 6px;
}

.hp-accuracy__text {
	font-size: 0.88rem;
	font-weight: 500;
	color: #374151;
	margin: 0;
	line-height: 1.5;
}

.hp-accuracy__btn {
	flex-shrink: 0;
	background: #AD3701;
	color: #fff;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 20px;
	white-space: nowrap;
	transition: background 0.2s;
}

.hp-accuracy__btn:hover {
	background: #8f2d01;
}

.hp-accuracy--inline {
	padding: 12px 0 20px;
	border-top: 1px solid #f0f0f0;
	margin-top: 8px;
}

@media (max-width: 600px) {
	.hp-accuracy__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.hp-accuracy__btn {
		width: 100%;
		text-align: center;
	}
}
