.acb-doctors-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.acb-doctor-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: var(--e-global-color-secondary, #ffffff);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acb-doctor-image {
	position: relative;
}

.acb-doctor-image a {
	display: block;
	line-height: 0;
}

.acb-doctor-image img {
	display: block;
	width: 100%;
	height: 340px;
	object-fit: cover;
}

.acb-doctor-image-placeholder {
	width: 100%;
	height: 240px;
	background: #e5e7eb;
}

.acb-doctor-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 18px 16px;
	flex: 1 1 auto;
}

.acb-doctor-name {
	margin: 0;
	line-height: 1.2;
	color: var(--e-global-color-primary, #1f2937);
}

.acb-doctor-name a {
	color: inherit;
	text-decoration: none;
}

.acb-doctor-name a:hover,
.acb-doctor-name a:focus {
	text-decoration: underline;
}

.acb-doctor-specialty {
	margin: 0;
	color: var(--e-global-color-text, #6b7280);
}

.acb-doctor-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	text-decoration: none;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	background: var(--e-global-color-accent, #8ac640);
	color: #ffffff;
	transition: filter 0.2s ease;
	border: 1px solid var(--e-global-color-accent, #8ac640);
	&hover {
		color: var(--e-global-color-accent, #8ac640);
		background-color: transparent;
	}
}

.acb-doctor-btn:hover,
.acb-doctor-btn:focus {
	filter: brightness(0.95);
	color: #ffffff;
}

.acb-doctor-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
}

.acb-doctor-btn-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.acb-doctors-grid-empty {
	margin: 0;
}

@media (max-width: 1024px) {
	.acb-doctors-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.acb-doctors-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
