/* =========================================================
   NMMW TOOLKITS
   Standard toolkit download card
   ========================================================= */

.nmmw-toolkits-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.nmmw-toolkit-card {
	box-sizing: border-box;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
	color: #123137;
	background: #fff;
	border: 1px solid #dce5e3;
	border-radius: 12px;
	overflow: hidden;
}

.nmmw-toolkit-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 26px;
	background: #f3f6f5;
	border-bottom: 1px solid #dce5e3;
}

.nmmw-toolkit-card__eyebrow {
	color: #5fb5af;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.nmmw-toolkit-card__date {
	color: #68777a;
	font-size: 13px;
	font-weight: 500;
}

.nmmw-toolkit-card__body {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding: 36px 38px 38px;
}

.nmmw-toolkit-card__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	background: #e9f4f3;
	border-radius: 50%;
}

.nmmw-toolkit-card__mark svg {
	display: block;
	width: 34px;
	height: 34px;
	fill: none;
	stroke: #123137;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nmmw-toolkit-card__content {
	flex: 1;
	min-width: 0;
}

.nmmw-toolkit-card__content h2 {
	margin: 0 0 12px;
	color: #123137;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.025em;
}

.nmmw-toolkit-card__content p {
	max-width: 690px;
	margin: 0 0 24px;
	color: #4e5e62;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.nmmw-toolkit-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	padding: 12px 20px;
	color: #123137;
	background: #5fb5af;
	border: 1px solid #5fb5af;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease;
}

.nmmw-toolkit-card__button:hover,
.nmmw-toolkit-card__button:focus-visible {
	color: #123137;
	background: #70c2bc;
	border-color: #70c2bc;
	transform: translateY(-1px);
}

.nmmw-toolkit-card__button:focus-visible {
	outline: 2px solid #123137;
	outline-offset: 3px;
}

.nmmw-toolkit-card__button span {
	font-size: 17px;
	line-height: 1;
}

@media screen and (max-width: 680px) {
	.nmmw-toolkit-card__top {
		padding: 14px 20px;
	}

	.nmmw-toolkit-card__body {
		display: block;
		padding: 28px 22px 30px;
	}

	.nmmw-toolkit-card__mark {
		width: 58px;
		height: 58px;
		margin-bottom: 22px;
	}

	.nmmw-toolkit-card__mark svg {
		width: 30px;
		height: 30px;
	}

	.nmmw-toolkit-card__content h2 {
		font-size: 28px;
	}

	.nmmw-toolkit-card__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nmmw-toolkit-card__button {
		transition: none;
	}
}
