/**
 * Team Grid Widget — Styles
 *
 * @since 1.4.0
 */

/* ── Section Title ───────────────────────────────────── */

.vtg-section-title {
	font-size: 42px;
	font-weight: 700;
	color: #1d2327;
	text-align: center;
	margin: 0 0 32px;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.vtg-section-title {
		font-size: 32px;
	}
}

/* ── Grid Layout ─────────────────────────────────────── */

.vtg-grid {
	display: grid;
	gap: 24px;
}

.vtg-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.vtg-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.vtg-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
	.vtg-grid--cols-3,
	.vtg-grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.vtg-grid--cols-2,
	.vtg-grid--cols-3,
	.vtg-grid--cols-4 {
		grid-template-columns: 1fr;
	}
}

/* ── Agent Card ──────────────────────────────────────── */

.vtg-card {
	display: block;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 2px solid transparent;
}

.vtg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border: 2px solid #f0c33c;
}

.vtg-card:hover .vtg-card__photo img {
	transform: scale(1.05);
}

/* ── Card Photo ──────────────────────────────────────── */

.vtg-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #f0f0f0;
}

.vtg-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.vtg-card__photo--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1d2327;
	color: #666;
	font-size: 48px;
}

/* ── Card Body ───────────────────────────────────────── */

.vtg-card__body {
	padding: 20px;
	text-align: center;
}

.vtg-card__name {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: #1d2327;
	line-height: 1.3;
}

.vtg-card__title {
	margin: 0 0 8px;
	font-size: 14px;
	color: #f0c33c;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vtg-card__location {
	margin: 0;
	font-size: 13px;
	color: #999;
}

.vtg-card__location svg {
	width: 12px;
	height: 12px;
	vertical-align: -1px;
	margin-right: 4px;
	fill: currentColor;
}
