/* File: wp-content/plugins/namesilo-portfolio-manager/assets/css/domain-portfolio.css */

.dpm-domain-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.dpm-domain-card {
	padding: 28px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 18px;
	background: #fff;
}

.dpm-domain-card h3 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
}

.dpm-domain-type {
	margin: 0 0 6px;
	opacity: .75;
	font-size: 15px;
}

.dpm-domain-price {
	font-weight: 700;
	margin: 0 0 20px;
	font-size: 20px;
}

.dpm-domain-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.dpm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 11px 18px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid currentColor;
	white-space: nowrap;
}

.dpm-domain-featured {
	border-width: 2px;
}

.dpm-domain-featured-label {
	display: inline-block;
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.dpm-domain-category {
	margin: 0 0 10px;
	font-size: 14px;
	opacity: .7;
}

.dpm-domain-description {
	margin: 0 0 16px;
	line-height: 1.5;
}

@media screen and (max-width: 520px) {
	.dpm-domain-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.dpm-button {
		width: 100%;
	}
}