.dp-socle-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 16px;
	margin-bottom: 16px;
}

.dp-socle-option {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	padding: 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		transform 0.2s ease;
}

.dp-socle-option:hover:not(:disabled) {
	border-color: #211d41;
	background: #fff;
	transform: translateY(-1px);
}

.dp-socle-option.is-active {
	border-color: #211d41;
	background: #fff;
}

.dp-socle-option.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.dp-socle-option__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 0;
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

.dp-socle-option__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.dp-socle-option__placeholder {
	font-size: 0.875rem;
	line-height: 1.4;
	color: #6b7280;
	text-align: center;
}

.dp-socle-option__label {
	font-size: 0.95rem;
	line-height: 1.4;
	font-weight: 500;
	color: #211d41;
	text-align: left;
}

.dp-socle-option:focus,
.dp-socle-option:focus-visible,
.dp-socle-option:hover,
.dp-socle-option:active {
	background: #fff;
	box-shadow: none;
	outline: none;
}

@media (max-width: 768px) {
	.dp-socle-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.dp-socle-options {
		grid-template-columns: 1fr;
	}
}
