.tmgdp-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin: 28px 0;
	padding: 26px;
	border: 1px solid #dfe7e3;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(20, 47, 35, 0.08);
}

.tmgdp-card__icon {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: #eaf8f1;
}

.tmgdp-card__icon svg {
	width: 30px;
	height: 30px;
	fill: #168657;
}

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

.tmgdp-card__title {
	margin: 0 0 8px;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.25;
}

.tmgdp-card__description {
	margin: 0 0 18px;
	color: #4f5f57;
}

.tmgdp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 20px;
	border-radius: 10px;
	background: #168657;
	color: #ffffff !important;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tmgdp-button:hover,
.tmgdp-button:focus {
	background: #0f6d46;
	box-shadow: 0 8px 20px rgba(22, 134, 87, 0.24);
	transform: translateY(-1px);
}

.tmgdp-button:focus-visible {
	outline: 3px solid rgba(22, 134, 87, 0.28);
	outline-offset: 3px;
}

.tmgdp-card__status {
	min-height: 1.4em;
	margin: 12px 0 0;
	font-size: 0.9rem;
	color: #5a675f;
}

.tmgdp-notice {
	margin: 20px 0;
	padding: 14px 16px;
	border-left: 4px solid #d89b14;
	background: #fff9e8;
}

@media (max-width: 560px) {
	.tmgdp-card {
		padding: 20px;
		gap: 14px;
	}

	.tmgdp-card__icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}
}
