/* ==========================================================================
   SL Contact Teaser
   ========================================================================== */

.sl-contact-teaser {
	background-color: var(--sl-color-white);
	padding: 120px 0;
}

.sl-contact-teaser__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	max-width: var(--sl-content-width);
	margin: 0 auto;
	padding: 0 var(--sl-content-padding);
}

/* --------------------------------------------------------------------------
   Profile Image
   -------------------------------------------------------------------------- */

.sl-contact-teaser__image-wrap {
	flex-shrink: 0;
	width: 280px;
	height: 280px;
}

.sl-contact-teaser__image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

/* --------------------------------------------------------------------------
   Info Column
   -------------------------------------------------------------------------- */

.sl-contact-teaser__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* Name */
.sl-contact-teaser__name {
	color: var(--sl-color-green);
	margin: 0 0 8px;
}

/* Position / Subline */
.sl-contact-teaser__position {
	color: var(--sl-color-yellow);
	margin: 0 0 24px;
}

/* --------------------------------------------------------------------------
   Contact Links (Desktop)
   -------------------------------------------------------------------------- */

.sl-contact-teaser__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sl-contact-teaser__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sl-color-green);
	text-decoration: none;
	font-family: var(--sl-font-secondary);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	transition: color 0.2s ease;
}

.sl-contact-teaser__link:visited {
	color: var(--sl-color-green);
}

.sl-contact-teaser__link:hover,
.sl-contact-teaser__link:focus {
	color: var(--sl-color-yellow);
}

.sl-contact-teaser__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.sl-contact-teaser__link-icon svg {
	width: 24px;
	height: 24px;
}

/* --------------------------------------------------------------------------
   Mobile Icon Buttons (hidden on desktop)
   -------------------------------------------------------------------------- */

.sl-contact-teaser__icons-mobile {
	display: none;
}

.sl-contact-teaser__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: var(--sl-color-yellow);
	color: var(--sl-color-green);
	border-radius: 12px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.sl-contact-teaser__icon-btn:hover,
.sl-contact-teaser__icon-btn:focus {
	opacity: 0.85;
}

.sl-contact-teaser__icon-btn svg {
	width: 24px;
	height: 24px;
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
	.sl-contact-teaser {
		padding: 80px 0;
	}

	.sl-contact-teaser__inner {
		flex-direction: column;
		gap: 32px;
		padding: 0 22px;
	}

	.sl-contact-teaser__image-wrap {
		width: 220px;
		height: 220px;
	}

	.sl-contact-teaser__info {
		align-items: center;
		text-align: center;
	}

	.sl-contact-teaser__name {
		margin-bottom: 8px;
	}

	.sl-contact-teaser__position {
		margin-bottom: 24px;
	}

	/* Hide desktop links, show icon buttons */
	.sl-contact-teaser__links {
		display: none;
	}

	.sl-contact-teaser__icons-mobile {
		display: flex;
		gap: 12px;
		justify-content: center;
	}
}
