.lht-lawyers-page {
	background: #f9fafb;
}

.lht-lawyers-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 352px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.lht-lawyers-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(13, 26, 45, 0.45), rgba(13, 26, 45, 0.45));
}

.lht-lawyers-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1470px;
	margin: 0 auto;
	padding: 0 15px;
}

.lht-lawyers-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.lht-lawyers-banner__title {
	margin: 0;
	color: #fff;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-lawyers-banner__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #fff;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.lht-lawyers-banner__breadcrumbs a,
.lht-lawyers-banner__breadcrumbs span {
	color: #fff;
	text-decoration: none;
}

.lht-lawyers-page__content {
	padding: 0 15px 80px;
	background: #f9fafb;
}

.lht-lawyers-page__content-inner {
	max-width: 1470px;
	margin: 0 auto;
}

.lht-lawyers-intro {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lht-lawyers-intro__inner {
	max-width: 1470px;
	margin: 0 auto;
	padding: 100px 15px 80px;
}

.lht-lawyers-intro__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.lht-lawyers-intro__title {
	margin: 0;
	color: #c5a059;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-lawyers-intro__description {
	margin: 0;
	color: #9ca3af;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	max-width: 1020px;
}

.lht-lawyers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.lht-lawyer-card {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	height: 100%;
	padding: 12px 12px 24px;
	border-radius: 8px;
	border: 1px solid #2a384b;
	background: #192638;
	transition: border-color 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.lht-lawyer-card:hover,
.lht-lawyer-card:focus-within {
	border-color: rgba(197, 160, 89, 0.4);
}

.lht-lawyer-card__image-wrap {
	margin-bottom: 18px;
}

.lht-lawyer-card__image {
	display: block;
	width: 100%;
	height: 200px;
	max-height: 200px;
	border-radius: 8px;
	object-fit: cover;
	background: linear-gradient(180deg, rgba(21, 26, 35, 0.45), rgba(21, 26, 35, 0.45));
}

.lht-lawyer-card__image--placeholder {
	background: linear-gradient(180deg, rgba(21, 26, 35, 0.65), rgba(21, 26, 35, 0.75));
}

.lht-lawyer-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1 1 auto;
}

.lht-lawyer-card__name {
	margin: 0;
	color: #fff;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.lht-lawyer-card__position {
	color: #9ca3af;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.lht-lawyer-card:hover .lht-lawyer-card__name,
.lht-lawyer-card:focus-within .lht-lawyer-card__name {
	color: #c5a059;
}

.lht-lawyer-card__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
	min-height: 32px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lht-lawyer-card:hover .lht-lawyer-card__socials,
.lht-lawyer-card:focus-within .lht-lawyer-card__socials {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.lht-lawyer-card__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #2f3d53;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lht-lawyer-card__social-link svg {
	display: block;
	width: 16px;
	height: 16px;
}

.lht-lawyer-card__social-link:hover {
	background: #c5a059;
	color: #fff;
}

.lht-lawyers-carousel-shortcode {
	position: relative;
	width: 100%;
}

.lht-lawyers-carousel {
	position: relative;
	padding: 0 15px;
}

.lht-lawyers-carousel__viewport {
	overflow: hidden;
}

.lht-lawyers-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 54px) / 4);
	gap: 18px;
	align-items: stretch;
}

.lht-lawyer-card--carousel {
	height: 100%;
}

.lht-lawyer-card--carousel .lht-lawyer-card__socials {
	display: none;
}

.lht-lawyers-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #2f3d53;
	color: #fff;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	margin: 0;
}

.lht-lawyers-carousel__arrow svg {
	display: block;
	width: 20px;
	height: 20px;
}

.lht-lawyers-carousel__arrow:hover {
	background: #c5a059;
	color: #fff;
}

.lht-lawyers-carousel__arrow:disabled {
	opacity: 0.45;
	cursor: default;
}

.lht-lawyers-carousel__arrow--prev {
	left: 0;
}

.lht-lawyers-carousel__arrow--next {
	right: 0;
}

.lht-lawyers-modals[hidden] {
	display: none;
}

.lht-lawyers-modals {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.lht-lawyers-modals__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 26, 45, 0.72);
	backdrop-filter: blur(4px);
}

.lht-lawyers-modals__viewport {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1720px;
}

.lht-lawyer-modal[hidden] {
	display: none;
}

.lht-lawyer-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 1720px;
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 56px 64px 56px 70px;
	border-radius: 20px 20px 0 0;
	background: #fff;
	box-sizing: border-box;
}

.lht-lawyer-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	margin: 0;
}

.lht-lawyer-modal__close svg {
	display: block;
	width: 34px;
	height: 34px;
}

.lht-lawyer-modal__grid {
	display: grid;
	grid-template-columns: 556px minmax(0, 1fr);
	align-items: start;
	gap: 83px;
}

.lht-lawyer-modal__media {
	width: 100%;
}

.lht-lawyer-modal__image {
	display: block;
	width: 556px;
	max-width: 100%;
	height: 640px;
	border-radius: 8px;
	object-fit: cover;
	background: linear-gradient(180deg, rgba(21, 26, 35, 0.45), rgba(21, 26, 35, 0.45));
}

.lht-lawyer-modal__image--placeholder {
	background: linear-gradient(180deg, rgba(21, 26, 35, 0.65), rgba(21, 26, 35, 0.75));
}

.lht-lawyer-modal__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-top: 28px;
}

.lht-lawyer-modal__heading {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lht-lawyer-modal__title {
	margin: 0;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.lht-lawyer-modal__position {
	color: #0d1a2d;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 16.5px;
}

.lht-lawyer-modal__socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.lht-lawyer-modal__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #2f3d53;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lht-lawyer-modal__social-link svg {
	display: block;
	width: 16px;
	height: 16px;
}

.lht-lawyer-modal__social-link:hover {
	background: #c5a059;
	color: #fff;
}

.lht-lawyer-modal__body {
	color: #0d1a2d;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.lht-lawyer-modal__body > *:first-child {
	margin-top: 0;
}

.lht-lawyer-modal__body > *:last-child {
	margin-bottom: 0;
}

.lht-lawyer-modal__footer {
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.lht-lawyer-modal__contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 32px;
}

.lht-lawyer-modal__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0d1a2d;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.lht-lawyer-modal__contact-icon,
.lht-lawyer-modal__contact-label {
	color: #c5a059;
}

.lht-lawyer-modal__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.lht-lawyer-modal__contact-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.lht-lawyer-modal__contact-label {
	font-weight: 600;
}

.lht-lawyer-modal__contact-value {
	color: #0d1a2d;
}

.lht-lawyer-modal__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	width: auto;
	max-width: none;
	flex: 0 0 auto;
	gap: 10px;
	padding: 10px 24px;
	border-radius: 4px;
	background: #c5a059;
	color: #fff;
	text-decoration: none;
	font-family: "Times New Roman", serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.18px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lht-lawyer-modal__cta-text {
	display: block;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: uppercase;
}

.lht-lawyer-modal__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.lht-lawyer-modal__cta-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.lht-lawyer-modal__cta:hover {
	background: #0d1a2d;
	color: #fff;
}

body.lht-lawyer-modal-open {
	overflow: hidden;
}

@media only screen and (max-width: 1366px) and (min-width: 850px) {
	.lht-lawyers-modals {
		padding: 20px;
	}

	.lht-lawyer-modal__dialog {
		height: auto;
		max-height: calc(100vh - 40px);
		padding: 44px 28px 36px;
		border-radius: 20px;
	}

	.lht-lawyer-modal__close {
		top: 12px;
		right: 12px;
	}

	.lht-lawyer-modal__grid {
		grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
		gap: 32px;
		align-items: start;
	}

	.lht-lawyer-modal__image {
		width: 100%;
		height: 480px;
	}

	.lht-lawyer-modal__content {
		gap: 22px;
		padding-top: 10px;
	}

	.lht-lawyer-modal__heading {
		gap: 14px;
	}

	.lht-lawyer-modal__title {
		font-size: 34px;
		line-height: 1.1;
	}

	.lht-lawyer-modal__position {
		font-size: 17px;
		line-height: 1.4;
	}

	.lht-lawyer-modal__body {
		font-size: 16px;
		line-height: 28px;
	}

	.lht-lawyer-modal__footer {
		gap: 28px;
	}

	.lht-lawyer-modal__contacts {
		gap: 10px 20px;
	}

	.lht-lawyer-modal__contact-item {
		font-size: 16px;
	}
	.lht-lawyers-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 849px) {
	.lht-lawyers-banner {
		min-height: 280px;
	}

	.lht-lawyers-banner__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-lawyers-page__content {
		padding-bottom: 64px;
	}

	.lht-lawyers-intro__inner {
		padding-top: 72px;
		padding-bottom: 64px;
	}

	.lht-lawyers-intro__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-lawyers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lht-lawyer-card__socials {
		margin-top: 18px;
		max-height: 40px;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.lht-lawyers-carousel__track {
		grid-auto-columns: calc((100% - 18px) / 2);
	}

	.lht-lawyer-card--carousel .lht-lawyer-card__socials {
		display: flex;
	}

	.lht-lawyers-modals {
		padding: 16px;
	}

	.lht-lawyer-modal__dialog {
		height: auto;
		max-height: calc(100vh - 32px);
		overflow: auto;
		padding: 56px 24px 32px;
		border-radius: 20px;
	}

	.lht-lawyer-modal__close {
		top: 12px;
		right: 12px;
	}

	.lht-lawyer-modal__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lht-lawyer-modal__image {
		width: 100%;
		height: auto;
		max-height: 520px;
	}

	.lht-lawyer-modal__content {
		padding-top: 0;
	}

	.lht-lawyer-modal__title {
		font-size: 32px;
	}

	.lht-lawyer-modal__body {
		font-size: 16px;
		line-height: 28px;
	}
}

@media only screen and (max-width: 549px) {
	.lht-lawyers-banner {
		min-height: 240px;
	}

	.lht-lawyers-banner__title {
		font-size: 24px;
		line-height: 28px;
	}

	.lht-lawyers-banner__breadcrumbs {
		font-size: 13px;
		line-height: 20px;
	}

	.lht-lawyers-page__content {
		padding-bottom: 40px;
	}

	.lht-lawyers-intro__inner {
		padding-top: 56px;
		padding-bottom: 48px;
	}

	.lht-lawyers-intro__title {
		font-size: 24px;
		line-height: 28px;
	}

	.lht-lawyers-intro__description {
		font-size: 15px;
		line-height: 22px;
	}

	.lht-lawyers-intro__content {
		margin-bottom: 28px;
	}

	.lht-lawyers-grid {
		grid-template-columns: 1fr;
	}

	.lht-lawyer-card__name {
		font-size: 20px;
		line-height: 24px;
	}

	.lht-lawyer-card__position {
		font-size: 15px;
		line-height: 22px;
	}

	.lht-lawyers-carousel__track {
		grid-auto-columns: 100%;
	}

	.lht-lawyers-carousel__arrow svg {
		width: 18px;
		height: 18px;
	}

	.lht-lawyer-modal__dialog {
		padding: 48px 16px 24px;
	}

	.lht-lawyer-modal__close {
		top: 10px;
		right: 10px;
	}

	.lht-lawyer-modal__title {
		font-size: 28px;
		line-height: 1.2;
	}

	.lht-lawyer-modal__position {
		font-size: 16px;
		line-height: 1.4;
	}

	.lht-lawyer-modal__contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

.lht-lawyers-contact {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lht-lawyers-contact__inner {
	max-width: 1470px;
	margin: 0 auto;
	padding: 80px 15px;
}

.lht-lawyers-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 518px) minmax(0, 884px);
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.lht-lawyers-contact__intro {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 518px;
}

.lht-lawyers-contact__intro-group {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.lht-lawyers-contact__title {
	margin: 0;
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-lawyers-contact__description {
	margin: 0;
	color: #fff;
	text-align: justify;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	max-width: 478px;
}

.lht-lawyers-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	gap: 10px;
	padding: 10px 24px;
	border-radius: 4px;
	background: #c5a059;
	color: #fff;
	text-decoration: none;
	font-family: "Times New Roman", serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.18px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lht-lawyers-contact__button:hover {
	background: #0d1a2d;
	color: #fff;
}

.lht-lawyers-contact__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.lht-lawyers-contact__button-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.lht-lawyers-contact__card {
	display: grid;
	grid-template-columns: minmax(0, 375px) minmax(0, 1fr);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #c5a059;
	overflow: hidden;
}

.lht-lawyers-contact__media {
	max-width: 375px;
	min-height: 100%;
}

.lht-lawyers-contact__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

.lht-lawyers-contact__details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
}

.lht-lawyers-contact__detail-item {
	display: flex;
	align-items: center;
	gap: 24px;
}

.lht-lawyers-contact__divider {
	height: 1px;
	margin: 24px 0;
	background: rgba(255, 255, 255, 0.3);
}

.lht-lawyers-contact__detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
}

.lht-lawyers-contact__detail-icon svg {
	display: block;
	width: 54px;
	height: 54px;
}

.lht-lawyers-contact__detail-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lht-lawyers-contact__detail-label {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	text-transform: uppercase;
}

.lht-lawyers-contact__detail-value {
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 2px;
}

.lht-lawyers-contact__detail-strong {
	font-weight: 700;
}

.lht-lawyers-contact__detail-normal {
	font-weight: 400;
}

@media only screen and (max-width: 1410px) {
	.lht-lawyers-contact__inner {
		padding: 72px 15px;
	}

	.lht-lawyers-contact__grid {
		grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
		gap: 24px;
	}

	.lht-lawyers-contact__intro {
		max-width: 420px;
		gap: 24px;
	}

	.lht-lawyers-contact__intro-group {
		gap: 24px;
	}

	.lht-lawyers-contact__title {
		font-size: 30px;
		line-height: 32px;
	}

	.lht-lawyers-contact__description {
		max-width: none;
		font-size: 15px;
		line-height: 23px;
	}

	.lht-lawyers-contact__card {
		grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	}

	.lht-lawyers-contact__media {
		max-width: none;
	}

	.lht-lawyers-contact__details {
		padding: 28px 24px;
	}

	.lht-lawyers-contact__detail-item {
		gap: 16px;
	}

	.lht-lawyers-contact__divider {
		margin: 18px 0;
	}

	.lht-lawyers-contact__detail-icon {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.lht-lawyers-contact__detail-icon svg {
		width: 44px;
		height: 44px;
	}

	.lht-lawyers-contact__detail-content {
		gap: 6px;
	}

	.lht-lawyers-contact__detail-value {
		font-size: 18px;
		letter-spacing: 0.6px;
	}
}

@media only screen and (max-width: 1130px) {
	.lht-lawyers-contact__inner {
		padding: 56px 15px;
	}

	.lht-lawyers-contact__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lht-lawyers-contact__intro {
		max-width: none;
		gap: 20px;
	}

	.lht-lawyers-contact__intro-group {
		gap: 20px;
	}

	.lht-lawyers-contact__title {
		font-size: 28px;
		line-height: 30px;
	}

	.lht-lawyers-contact__card {
		grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	}

	.lht-lawyers-contact__media {
		max-width: none;
	}

	.lht-lawyers-contact__image {
		height: 100%;
		min-height: 100%;
	}

	.lht-lawyers-contact__details {
		padding: 24px 18px;
	}

	.lht-lawyers-contact__detail-item {
		gap: 14px;
	}

	.lht-lawyers-contact__divider {
		margin: 16px 0;
	}

	.lht-lawyers-contact__detail-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.lht-lawyers-contact__detail-icon svg {
		width: 40px;
		height: 40px;
	}

	.lht-lawyers-contact__detail-label {
		font-size: 12px;
		line-height: 14px;
	}

	.lht-lawyers-contact__detail-value {
		font-size: 16px;
		letter-spacing: 0.3px;
	}
}

@media only screen and (max-width: 640px) {
	.lht-lawyers-contact__inner {
		padding: 48px 15px;
	}

	.lht-lawyers-contact__description {
		font-size: 15px;
		line-height: 22px;
	}

	.lht-lawyers-contact__card {
		grid-template-columns: 1fr;
	}

	.lht-lawyers-contact__media {
		max-width: none;
	}

	.lht-lawyers-contact__image {
		height: 240px;
		min-height: 240px;
	}

	.lht-lawyers-contact__details {
		padding: 24px 18px;
	}

	.lht-lawyers-contact__detail-item {
		align-items: flex-start;
	}

	.lht-lawyers-contact__detail-icon {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.lht-lawyers-contact__detail-icon svg {
		width: 44px;
		height: 44px;
	}

	.lht-lawyers-contact__detail-value {
		font-size: 18px;
		letter-spacing: 0.5px;
	}
}
