/* Sales Specialists block — ported from mockup contacts-page design. */

.wdm-sales-specialists {
	margin: 0 0 64px 0;
}

.wdm-sales-specialists .block-heading {
	margin: 0 0 8px 0;
	line-height: 32px;
	font-weight: 700;
	font-size: 32px;
	color: #323232;
	text-align: left;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {
	.wdm-sales-specialists .block-heading {
		font-size: 26px;
	}
}

.wdm-sales-specialists__intro {
	margin: 0 0 20px 0;
	line-height: 27px;
	color: rgba(37, 31, 31, 0.8);
}

.wdm-sales-specialists__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.wdm-specialist {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
}

.wdm-specialist__head {
	display: flex;
	align-items: center;
	gap: 0 8px;
	padding: 0 0 12px 0;
	margin-bottom: 12px;
	border-bottom: 1px solid #E6E6E6;
}

.wdm-specialist__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: url('../images/icons/contacts-item-icon-frame.svg') center center no-repeat;
}

.wdm-specialist__role,
.wdm-specialist__name {
	display: block;
	line-height: normal;
	font-size: 14px;
	color: #878484;
}

.wdm-specialist__name {
	font-size: 16px;
	font-weight: 600;
	color: #323232;
}

.wdm-specialist__contacts {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wdm-specialist__contacts li a {
	display: flex;
	align-items: center;
	gap: 0 8px;
	color: #323232;
	text-decoration: none;
}

.wdm-specialist__contact-value {
	text-decoration: underline;
}

.wdm-specialist__contacts li a::before {
	content: "";
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.wdm-specialist__contact--phone a::before {
	background: url('../images/icons/contacts-phone-icon.svg') center center no-repeat;
}

.wdm-specialist__contact--email a::before {
	background: url('../images/icons/contacts-email-icon.svg') center center no-repeat;
}

@media screen and (max-width: 1299px) {
	.wdm-sales-specialists__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px) {
	.wdm-sales-specialists {
		margin: 0 0 32px 0;
	}
}

@media screen and (max-width: 575px) {
	.wdm-sales-specialists__grid {
		grid-template-columns: 1fr;
		gap: 8px 0;
	}
}
