.scout-team-grid,
.scout-team-grid * {
	box-sizing: border-box;
}

.scout-team-grid {
	padding: 70px 0;
	background: #fff;
	color: #17202a;
}

.scout-team-grid__inner {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.scout-team-grid__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 48px;
}

.scout-team-grid__card {
	display: block;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: transform .24s ease, box-shadow .24s ease;
}

.scout-team-grid__card--bordered {
	border: 1px solid #e2e2e2;
}

.scout-team-grid__card--shadow {
	box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.scout-team-grid__card--lift:hover {
	transform: translateY(-5px);
}

.scout-team-grid__image-wrap {
	width: 100%;
	height: 230px;
	overflow: hidden;
	background: #f2f0ed;
}

.scout-team-grid__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform .35s ease;
}

.scout-team-grid__card--zoom:hover .scout-team-grid__image {
	transform: scale(1.035);
}

.scout-team-grid__content {
	padding: 12px 0 0;
}

.scout-team-grid__accent {
	display: block;
	width: 28px;
	height: 3px;
	margin-bottom: 10px;
	background: #f2c500;
}

.scout-team-grid__name {
	margin: 0 0 4px;
	color: #17202a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.scout-team-grid__title {
	margin: 0;
	color: #606a74;
	font-size: 11px;
	line-height: 1.35;
}

@media (max-width: 1024px) {
	.scout-team-grid__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.scout-team-grid {
		padding: 52px 0;
	}

	.scout-team-grid__inner {
		width: calc(100% - 32px);
	}

	.scout-team-grid__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 16px;
		row-gap: 32px;
	}

	.scout-team-grid__image-wrap {
		height: 190px;
	}
}

@media (max-width: 480px) {
	.scout-team-grid__grid {
		grid-template-columns: 1fr;
	}

	.scout-team-grid__image-wrap {
		height: 300px;
	}
}


/* v1.1.0 profile-link action */
.scout-team-grid__image-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.scout-team-grid__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
}

.scout-team-grid__meta {
	min-width: 0;
}

.scout-team-grid__name a {
	color: inherit;
	text-decoration: none;
}

.scout-team-grid__name a:hover {
	color: inherit;
}

.scout-team-grid__action {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f2c500;
	color: #071a30;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	transition: transform .22s ease, background-color .22s ease, color .22s ease;
}

.scout-team-grid__action:hover {
	transform: translateY(-2px);
	background: #071a30;
	color: #fff;
}

.scout-team-grid__action svg,
.scout-team-grid__action i {
	display: block;
	width: 1em;
	height: 1em;
	color: currentColor;
	fill: currentColor;
}

.scout-team-grid__action:focus-visible {
	outline: 2px solid #071a30;
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.scout-team-grid__meta-row {
		gap: 10px;
	}

	.scout-team-grid__action {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}
}
