/* ==========================================================================
   Definition Box — Premium Component
   Semantic definition box with DefinedTerm microdata for AI Overview visibility
   ========================================================================== */

.wcp-definition-box {
	position: relative;
	background: linear-gradient(135deg, #faf8f5 0%, #f6f2ed 100%);
	border-left: 3px solid #A2732D;
	border-radius: 0 8px 8px 0;
	padding: 32px 32px 28px;
	margin: 36px 0;
	box-shadow:
		0 1px 1px rgba(0, 0, 0, 0.01),
		0 2px 2px rgba(0, 0, 0, 0.01),
		0 4px 4px rgba(0, 0, 0, 0.02),
		0 8px 8px rgba(0, 0, 0, 0.02),
		0 16px 16px rgba(0, 0, 0, 0.01);
}

/* "DEFINITION" label */
.wcp-definition-box::before {
	content: 'DEFINITION';
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #A2732D;
	margin-bottom: 14px;
	line-height: 1;
}

/* Description List Reset */
.wcp-definition-box dl {
	margin: 0;
	padding: 0;
}

/* Term (dt) */
.wcp-definition-box dt {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.3;
	margin: 0 0 14px 0;
	letter-spacing: 0.01em;
}

/* Term link */
.wcp-definition-box dt a {
	color: #1e293b;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.wcp-definition-box dt a:hover {
	color: #A2732D;
	border-bottom-color: #A2732D;
}

/* Definition (dd) */
.wcp-definition-box dd {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	color: #4a4a5a;
	margin: 0;
	padding: 0;
}

/* Clean up wpautop paragraph margins */
.wcp-definition-box dd p:first-child {
	margin-top: 0;
}

.wcp-definition-box dd p:last-child {
	margin-bottom: 0;
}

/* Links inside definition */
.wcp-definition-box dd a {
	color: #d75e08;
	text-decoration: none;
	border-bottom: 1px solid rgba(215, 94, 8, 0.3);
	transition: color 0.25s ease, border-color 0.25s ease;
}

.wcp-definition-box dd a:hover {
	color: #A2732D;
	border-bottom-color: #A2732D;
}

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

@media (max-width: 768px) {
	.wcp-definition-box {
		padding: 28px 26px 24px;
		margin: 28px 0;
	}

	.wcp-definition-box::before {
		font-size: 10px;
		margin-bottom: 12px;
	}

	.wcp-definition-box dt {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.wcp-definition-box dd {
		font-size: 14.5px;
		line-height: 1.7;
	}
}

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

@media (max-width: 480px) {
	.wcp-definition-box {
		padding: 22px 20px 20px;
		margin: 24px 0;
		border-radius: 0 6px 6px 0;
	}

	.wcp-definition-box::before {
		font-size: 10px;
		letter-spacing: 0.1em;
		margin-bottom: 10px;
	}

	.wcp-definition-box dt {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.wcp-definition-box dd {
		font-size: 14px;
		line-height: 1.65;
	}
}
