/* ===================================================
   GFZ Expert Quote Block
   =================================================== */

.gsq-wrap {
	padding: 2rem 0;
}

.gsq-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 2rem;
	align-items: start;
}

/* ====== PHOTO COLUMN ====== */
.gsq-photo-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.gsq-photo {
	width: 180px;
	height: 220px;
	border-radius: 8px;
	background: #E6F1FB;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 48px;
	color: #0C447C;
	overflow: hidden;
}

.gsq-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.gsq-social a {
	color: #185FA5;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

.gsq-social a:hover {
	text-decoration: underline;
}

/* ====== CONTENT COLUMN ====== */
.gsq-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	min-width: 0;
}

.gsq-accent-line {
	width: 40px;
	height: 3px;
	background: #185FA5;
	border-radius: 2px;
}

.gsq-label {
	font-size: 12px;
	font-weight: 500;
	color: #6B7280;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}

.gsq-quote {
	font-size: 20px;
	line-height: 1.5;
	color: #111827;
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: 400;
}

.gsq-quote p {
	margin: 0;
}

.gsq-name {
	font-size: 15px;
	font-weight: 500;
	font-style: normal;
	color: #111827;
	display: block;
	margin: 0 0 2px;
}

.gsq-role {
	font-size: 13px;
	color: #6B7280;
	margin: 0;
}

/* ====== CTA BUTTONS ====== */
.gsq-cta-row {
	display: flex;
	gap: 12px;
	padding-top: 1rem;
	border-top: 1px solid #E5E7EB;
	flex-wrap: wrap;
}

.gsq-cta-primary {
	background: #185FA5;
	color: #FFFFFF;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease;
}

.gsq-cta-primary:hover {
	background: #0C447C;
}

.gsq-cta-secondary {
	background: transparent;
	color: #185FA5;
	border: 1px solid #185FA5;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease;
}

.gsq-cta-secondary:hover {
	background: #E6F1FB;
}

/* ====== RESPONSIVE (< 720px) ====== */
@media (max-width: 720px) {
	.gsq-card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.gsq-photo-wrap {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}

	.gsq-photo {
		width: 80px;
		height: 100px;
		font-size: 24px;
	}

	.gsq-quote {
		font-size: 17px;
	}

	.gsq-cta-row {
		flex-direction: column;
		gap: 8px;
	}

	.gsq-cta-primary,
	.gsq-cta-secondary {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}
