/* SWGP Featured Voices — speaker grid.
 * The designed stylesheet, unchanged apart from living in a file instead of
 * an inline <style> block so it is enqueued once per page and cache-busted
 * by the suite version. */

.swgp-voices2 {
	font-family: "Raleway", -apple-system, sans-serif;
	width: 100%;
	margin: 0 auto;
	padding: 32px 0 48px;
	-webkit-font-smoothing: antialiased;
}
.swgp-voices2 * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ===== SECTION HEADER ===== */
.swgp-voices2__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 72px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(220, 177, 99, 0.22);
}
.swgp-voices2__eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #dcb163 !important;
	margin-bottom: 12px !important;
}
.swgp-voices2__title {
	font-size: clamp(2.4rem, 5.5vw, 70px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.02;
	color: #ffffff;
}
.swgp-voices2__title em {
	font-style: italic;
	color: #e4af54;
}
.swgp-voices2__head-note {
	font-size: 0.92rem;
	color: #ffffff !important;
	line-height: 1.6;
	max-width: 30ch;
	text-align: right;
	padding-bottom: 6px;
}

/* ===== GRID ===== */
.swgp-voices2__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 64px 40px;
	align-items: start;
}
/* staggered rhythm: every even column sits lower */
.swgp-voice2:nth-child(even) {
	transform: translateY(44px);
}

/* ===== CARD ===== */
.swgp-voice2 {
	text-align: left;
}
.swgp-voice2__frame {
	position: relative;
	display: block;
}
/* offset gold keyline behind the photo */
.swgp-voice2__frame::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	right: -14px;
	bottom: -14px;
	border: 1.5px solid rgba(220, 177, 99, 0.45);
	border-radius: 8px;
	transition: top 0.35s ease, left 0.35s ease, right 0.35s ease,
		bottom 0.35s ease, border-color 0.35s ease;
	pointer-events: none;
}
.swgp-voice2__photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	object-position: center 25%;
	border-radius: 8px;
	background: #242220;
	box-shadow: 0 22px 44px -20px rgba(0, 0, 0, 0.75);
	transition: transform 0.35s ease;
}
.swgp-voice2:hover .swgp-voice2__photo {
	transform: translate(4px, -4px);
}
.swgp-voice2:hover .swgp-voice2__frame::before {
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	border-color: rgba(220, 177, 99, 0.85);
}

/* ===== NAME PLATE ===== */
.swgp-voice2__meta {
	padding: 22px 2px 0;
}
.swgp-voice2__name {
	padding-top: 8px;
	font-size: 1.18rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff !important;
	line-height: 1.18;
}
.swgp-voice2__name em {
	font-style: italic;
	font-weight: 800;
}
.swgp-voice2__role {
	margin-top: 7px !important;
	font-size: 0.86rem;
	font-weight: 500;
	color: #9d978c !important;
	line-height: 1.4;
}
.swgp-voice2__tag {
	margin-top: 6px !important;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #dcb163 !important;
}

/* ===== "AND MORE TO COME" CELL ===== */
.swgp-voices2__more {
	grid-column: span 2;
	align-self: center;
	padding: 36px 40px;
	border-radius: 8px;
	border: 1.5px solid rgba(220, 177, 99, 0.28);
	background: linear-gradient(
		150deg,
		rgba(220, 177, 99, 0.07) 0%,
		rgba(220, 177, 99, 0) 60%
	);
	transform: translateY(22px);
}
.swgp-voices2__more-title {
	font-size: clamp(1.6rem, 2.3vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: #ffffff !important;
}
.swgp-voices2__more-title span {
	color: #dcb163;
}
.swgp-voices2__more-copy {
	margin-top: 16px !important;
	font-size: 0.94rem;
	color: #ffffff !important;
	line-height: 1.7;
	max-width: 42ch;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
	.swgp-voice2__photo,
	.swgp-voice2__frame::before {
		transition: none;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
	.swgp-voices2__grid {
		gap: 56px 32px;
	}
}
@media (max-width: 980px) {
	.swgp-voices2__head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 56px;
	}
	.swgp-voices2__head-note {
		text-align: left;
	}
	.swgp-voices2__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 56px 30px;
	}
	.swgp-voice2:nth-child(even) {
		transform: translateY(30px);
	}
	.swgp-voices2__more {
		grid-column: 1/-1;
		transform: none;
		padding: 30px 28px;
	}
}
@media (max-width: 480px) {
	.swgp-voices2 {
		padding: 16px 0 32px;
	}
	.swgp-voices2__grid {
		gap: 44px 20px;
	}
	.swgp-voice2:nth-child(even) {
		transform: translateY(22px);
	}
	.swgp-voice2__frame::before {
		top: 10px;
		left: 10px;
		right: -10px;
		bottom: -10px;
	}
	.swgp-voice2__name {
		font-size: 1rem;
	}
	.swgp-voice2__role {
		font-size: 0.78rem;
	}
}

/* ===== "TO BE ANNOUNCED" PLACEHOLDER =====
 * A line-up that is still filling up. The keyline goes dashed rather than
 * solid, which reads as pending without needing a caption to say so, and the
 * photo panel becomes a flat plate carrying the label. */
.swgp-voice2--tbd .swgp-voice2__frame::before {
	border-style: dashed;
	border-color: rgba(220, 177, 99, 0.38);
}
/* No photo to lift, so the hover nudge is dropped — an empty card that moves
 * looks like it is waiting to be clicked. */
.swgp-voice2--tbd:hover .swgp-voice2__photo {
	transform: none;
}
.swgp-voice2--tbd:hover .swgp-voice2__frame::before {
	top: 14px;
	left: 14px;
	right: -14px;
	bottom: -14px;
	border-color: rgba(220, 177, 99, 0.38);
}
.swgp-voice2__photo--tbd {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: #17150f;
	box-shadow: none;
	border: 1px solid rgba(220, 177, 99, 0.10);
}
.swgp-voice2__tbd-label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(220, 177, 99, 0.62);
	line-height: 2;
	text-align: center;
	max-width: 7em;      /* wraps to "TO BE / ANNOUNCED" like the design */
}
.swgp-voice2--tbd .swgp-voice2__name {
	color: rgba(255, 255, 255, 0.78) !important;
}
.swgp-voice2--tbd .swgp-voice2__role {
	color: #7d776e !important;
}
