.mhmp-hub {
	--mhmp-navy: #07111f;
	--mhmp-blue: #012148;
	--mhmp-lime: #e1ff00;
	--mhmp-soft: #f8f9fc;
	--mhmp-white: #ffffff;
	--mhmp-muted: #4d5968;
	--mhmp-border: 3px solid var(--mhmp-navy);
	--mhmp-shadow: 7px 7px 0 var(--mhmp-navy);
	width: 100%;
	color: var(--mhmp-navy);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.8;
	box-sizing: border-box;
}

.mhmp-hub *,
.mhmp-hub *::before,
.mhmp-hub *::after {
	box-sizing: border-box;
}

.mhmp-hub a {
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.mhmp-hub a:focus-visible {
	outline: 3px solid var(--mhmp-lime);
	outline-offset: 4px;
}

.mhmp-empty-message {
	margin: 0;
	padding: 22px 24px;
	background: var(--mhmp-white);
	border: var(--mhmp-border);
	border-radius: 16px;
	box-shadow: 6px 6px 0 var(--mhmp-navy);
	font-weight: 800;
}

/* Plugin archive/grid shortcode. */
.mhmp-plugins-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.mhmp-plugin-card {
	display: flex;
	gap: 18px;
	min-width: 0;
	padding: 22px;
	background: var(--mhmp-white);
	border: var(--mhmp-border);
	border-radius: 20px;
	box-shadow: var(--mhmp-shadow);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.mhmp-plugin-card:hover {
	transform: translate(-2px, -2px);
	box-shadow: 10px 10px 0 var(--mhmp-navy);
}

.mhmp-plugin-card__icon {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	display: grid;
	place-items: center;
	border: var(--mhmp-border);
	border-radius: 17px;
	overflow: hidden;
	background: var(--mhmp-lime);
	color: var(--mhmp-navy);
	text-decoration: none;
}

.mhmp-plugin-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mhmp-plugin-card__icon svg {
	width: 42px;
	height: 42px;
}

.mhmp-plugin-card__body {
	min-width: 0;
	flex: 1;
}

.mhmp-plugin-card__meta,
.mhmp-single-hero__badges {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	align-items: center;
}

.mhmp-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 5px 12px;
	border: 2px solid var(--mhmp-navy);
	border-radius: 999px;
	background: var(--mhmp-white);
	color: var(--mhmp-navy);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	white-space: nowrap;
}

.mhmp-chip--status {
	background: var(--mhmp-lime);
}

.mhmp-chip--downloads {
	background: var(--mhmp-soft);
}

.mhmp-chip bdi,
.mhmp-spec-list bdi {
	direction: ltr;
	unicode-bidi: isolate;
}

.mhmp-plugin-card__title {
	margin: 12px 0 8px;
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 950;
	line-height: 1.4;
}

.mhmp-plugin-card__title a {
	color: var(--mhmp-navy);
	text-decoration: none;
}

.mhmp-plugin-card__excerpt {
	color: var(--mhmp-muted);
	font-size: 14px;
	line-height: 1.9;
}

.mhmp-plugin-card__excerpt p {
	margin: 0;
}

.mhmp-plugin-card__actions,
.mhmp-single-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.mhmp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 9px 16px;
	border: 3px solid var(--mhmp-navy);
	border-radius: 12px;
	box-shadow: 4px 4px 0 var(--mhmp-navy);
	font-family: inherit;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.4;
	text-align: center;
	text-decoration: none !important;
}

.mhmp-button:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--mhmp-navy);
}

.mhmp-button--large {
	min-height: 52px;
	padding: 12px 21px;
	font-size: 15px;
}

.mhmp-button__icon {
	flex: 0 0 21px;
	width: 21px;
	height: 21px;
}

.mhmp-button--primary {
	background: var(--mhmp-lime);
	color: var(--mhmp-navy) !important;
}

.mhmp-button--secondary {
	background: var(--mhmp-white);
	color: var(--mhmp-navy) !important;
}

.mhmp-button--dark {
	background: var(--mhmp-navy);
	color: var(--mhmp-white) !important;
	box-shadow: 4px 4px 0 var(--mhmp-lime);
}

.mhmp-button--dark:hover {
	box-shadow: 2px 2px 0 var(--mhmp-lime);
}

/* Single plugin shortcode. */
.mhmp-single-plugin {
	display: grid;
	gap: 30px;
}

.mhmp-single-hero {
	position: relative;
	display: grid;
	grid-template-columns: 148px minmax(0, 1fr);
	gap: clamp(24px, 3vw, 40px);
	align-items: center;
	overflow: hidden;
	min-height: 280px;
	padding: clamp(28px, 4vw, 42px);
	background: var(--mhmp-blue);
	color: var(--mhmp-white);
	border: var(--mhmp-border);
	border-radius: 24px;
	box-shadow: 8px 8px 0 var(--mhmp-lime);
}

.mhmp-single-hero--without-title {
	min-height: 250px;
}

.mhmp-single-hero__decoration {
	position: absolute;
	inset-inline-end: -48px;
	top: -72px;
	width: 174px;
	height: 174px;
	border: 4px solid var(--mhmp-lime);
	border-radius: 32px;
	transform: rotate(17deg);
	pointer-events: none;
}

.mhmp-single-hero__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 148px;
	height: 148px;
	overflow: hidden;
	background: var(--mhmp-lime);
	color: var(--mhmp-navy);
	border: 4px solid var(--mhmp-navy);
	border-radius: 24px;
	box-shadow: 7px 7px 0 var(--mhmp-white);
}

.mhmp-single-hero__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mhmp-single-hero__icon svg {
	width: 44%;
	height: 44%;
}

.mhmp-single-hero__content {
	position: relative;
	z-index: 1;
	min-width: 0;
	max-width: 830px;
}

.mhmp-single-hero__eyebrow {
	display: inline-flex;
	margin: 0 0 13px;
	padding: 7px 13px;
	background: var(--mhmp-lime);
	color: var(--mhmp-navy);
	border: 2px solid var(--mhmp-navy);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.3;
}

.mhmp-single-hero__title {
	margin: 0 !important;
	max-width: 760px;
	color: var(--mhmp-white) !important;
	font-family: inherit !important;
	font-size: clamp(29px, 4vw, 46px) !important;
	font-weight: 950 !important;
	line-height: 1.35 !important;
	letter-spacing: -0.025em;
}

.mhmp-single-hero__summary-label {
	margin: 0;
	color: var(--mhmp-white);
	font-size: clamp(23px, 3vw, 34px);
	font-weight: 950;
	line-height: 1.45;
}

.mhmp-single-hero__description {
	max-width: 760px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 500;
	line-height: 1.95;
}

.mhmp-single-hero__badges {
	margin-top: 18px;
}

.mhmp-single-hero .mhmp-chip {
	border-color: var(--mhmp-navy);
}

.mhmp-single-hero__actions {
	margin-top: 22px;
}

.mhmp-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
	gap: 26px;
	align-items: start;
}

.mhmp-content-card,
.mhmp-spec-card {
	background: var(--mhmp-white);
	border: var(--mhmp-border);
	border-radius: 20px;
	box-shadow: var(--mhmp-shadow);
}

.mhmp-content-card {
	min-width: 0;
	padding: clamp(26px, 4vw, 42px);
}

.mhmp-spec-card {
	position: sticky;
	top: 110px;
	padding: 25px;
	background: var(--mhmp-soft);
}

.mhmp-section-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 23px;
}

.mhmp-section-heading__mark {
	flex: 0 0 17px;
	width: 17px;
	height: 17px;
	background: var(--mhmp-lime);
	border: 2px solid var(--mhmp-navy);
	border-radius: 4px;
	box-shadow: 3px 3px 0 var(--mhmp-navy);
	transform: rotate(7deg);
}

.mhmp-section-heading h2 {
	margin: 0 !important;
	color: var(--mhmp-navy) !important;
	font-family: inherit !important;
	font-size: clamp(23px, 2.6vw, 31px) !important;
	font-weight: 950 !important;
	line-height: 1.4 !important;
}

.mhmp-entry-content {
	color: #253041;
	font-size: 16px;
	line-height: 2;
}

.mhmp-entry-content > :first-child {
	margin-top: 0;
}

.mhmp-entry-content > :last-child {
	margin-bottom: 0;
}

.mhmp-entry-content h2,
.mhmp-entry-content h3,
.mhmp-entry-content h4,
.mhmp-entry-content h5,
.mhmp-entry-content h6 {
	color: var(--mhmp-navy) !important;
	font-family: inherit !important;
	font-weight: 950 !important;
	line-height: 1.55 !important;
}

.mhmp-entry-content a {
	color: var(--mhmp-blue);
	font-weight: 800;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.mhmp-entry-content img {
	max-width: 100%;
	height: auto;
	border: var(--mhmp-border);
	border-radius: 16px;
	box-shadow: 6px 6px 0 var(--mhmp-navy);
}

.mhmp-entry-content pre,
.mhmp-entry-content code {
	direction: ltr;
	text-align: left;
}

.mhmp-entry-content pre {
	overflow-x: auto;
	padding: 18px;
	background: var(--mhmp-navy);
	color: var(--mhmp-white);
	border: 3px solid var(--mhmp-navy);
	border-radius: 14px;
}

.mhmp-entry-content blockquote {
	margin-inline: 0;
	padding: 16px 20px;
	background: var(--mhmp-soft);
	border: 3px solid var(--mhmp-navy);
	border-inline-start: 9px solid var(--mhmp-lime);
	border-radius: 14px;
}

.mhmp-spec-list {
	display: grid;
	gap: 0;
	margin: 0;
}

.mhmp-spec-list__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 13px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 2px solid rgba(7, 17, 31, 0.14);
}

.mhmp-spec-list__item:first-child {
	padding-top: 0;
}

.mhmp-spec-list__item:last-child {
	border-bottom: 0;
}

.mhmp-spec-list dt {
	font-size: 14px;
	font-weight: 750;
	color: var(--mhmp-muted);
}

.mhmp-spec-list dd {
	margin: 0;
	color: var(--mhmp-navy);
	font-size: 14px;
	font-weight: 950;
	text-align: left;
}

.mhmp-category-block {
	margin-top: 23px;
	padding-top: 21px;
	border-top: 3px solid var(--mhmp-navy);
}

.mhmp-category-block h3 {
	margin: 0 0 12px;
	color: var(--mhmp-navy);
	font-size: 16px;
	font-weight: 950;
}

.mhmp-category-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.mhmp-category-list a {
	display: inline-flex;
	padding: 6px 10px;
	background: var(--mhmp-lime);
	color: var(--mhmp-navy);
	border: 2px solid var(--mhmp-navy);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.mhmp-plugins-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mhmp-single-layout {
		grid-template-columns: minmax(0, 1fr) minmax(270px, 310px);
	}
}

@media (max-width: 860px) {
	.mhmp-single-hero {
		grid-template-columns: 122px minmax(0, 1fr);
		min-height: 0;
		box-shadow: 7px 7px 0 var(--mhmp-lime);
	}

	.mhmp-single-hero__icon {
		width: 122px;
		height: 122px;
		border-radius: 21px;
	}

	.mhmp-single-layout {
		grid-template-columns: 1fr;
	}

	.mhmp-spec-card {
		position: static;
	}
}

@media (max-width: 680px) {
	.mhmp-plugins-grid {
		grid-template-columns: 1fr;
	}

	.mhmp-plugin-card {
		flex-direction: column;
		box-shadow: 6px 6px 0 var(--mhmp-navy);
	}

	.mhmp-plugin-card__icon {
		width: 68px;
		height: 68px;
		flex-basis: 68px;
	}

	.mhmp-single-plugin {
		gap: 22px;
	}

	.mhmp-single-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 25px 20px;
		border-radius: 20px;
		box-shadow: 6px 6px 0 var(--mhmp-lime);
	}

	.mhmp-single-hero__decoration {
		inset-inline-end: -70px;
		top: -88px;
	}

	.mhmp-single-hero__icon {
		width: 104px;
		height: 104px;
		box-shadow: 5px 5px 0 var(--mhmp-white);
	}

	.mhmp-single-hero__title {
		font-size: 30px !important;
		letter-spacing: -0.015em;
	}

	.mhmp-single-hero__summary-label {
		font-size: 24px;
	}

	.mhmp-single-hero__actions,
	.mhmp-plugin-card__actions {
		flex-direction: column;
	}

	.mhmp-button {
		width: 100%;
	}

	.mhmp-content-card,
	.mhmp-spec-card {
		padding: 22px 18px;
		border-radius: 17px;
		box-shadow: 6px 6px 0 var(--mhmp-navy);
	}

	.mhmp-section-heading h2 {
		font-size: 24px !important;
	}

	.mhmp-spec-list__item {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.mhmp-spec-list dd {
		text-align: right;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mhmp-hub a,
	.mhmp-plugin-card {
		transition: none;
	}
}
