/**
 * Quick Contact Widget
 */

.kea-quick-contact-wrap {
	box-sizing: border-box;
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kea-quick-contact__header {
	margin: 0;
}

.kea-quick-contact__title {
	margin: 0;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: #4f8cff;
}

.kea-quick-contact__description {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #ffffff;
}

.kea-quick-contact__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kea-quick-contact-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	gap: 16px;
	width: 100%;
	text-decoration: none;
	background-color: #1a2236;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
}

.kea-quick-contact-card:hover {
	background-color: #222d45;
	border-color: rgba(255, 255, 255, 0.14);
	text-decoration: none;
}

.kea-quick-contact-card:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.5);
	outline-offset: 2px;
}

.kea-quick-contact-card__icon-wrap {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: rgba(79, 140, 255, 0.15);
	color: #4f8cff;
	font-size: 24px;
	line-height: 1;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, font-size 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.kea-quick-contact-card__icon-wrap svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.kea-quick-contact-card__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.kea-quick-contact-card__title {
	display: block;
	margin: 0;
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	transition: color 0.25s ease;
}

.kea-quick-contact-card__detail {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.25s ease;
}

.kea-quick-contact__map {
	margin-top: 24px;
}

.kea-quick-contact__map-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.kea-quick-contact__map-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4f8cff;
	font-size: 18px;
	line-height: 1;
}

.kea-quick-contact__map-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.kea-quick-contact__map-title {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: #4f8cff;
}

.kea-quick-contact__map-embed {
	position: relative;
	display: block;
	width: 100%;
	min-height: 280px;
	height: 280px;
	overflow: hidden;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.04);
}

.kea-quick-contact__map-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
}

.kea-quick-contact__map-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	color: #4f8cff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.kea-quick-contact__map-link:hover {
	color: #6ba0ff;
	text-decoration: none;
	opacity: 0.9;
}

.kea-quick-contact__map-link:focus-visible {
	outline: 2px solid rgba(79, 140, 255, 0.5);
	outline-offset: 2px;
}

.kea-quick-contact__map-link-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.kea-quick-contact__map-link-icon svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 767px) {
	.kea-quick-contact__title {
		font-size: 24px;
	}

	.kea-quick-contact__description {
		font-size: 14px;
	}

	.kea-quick-contact-card {
		padding: 16px;
		gap: 12px;
	}

	.kea-quick-contact-card__icon-wrap {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.kea-quick-contact-card__title {
		font-size: 15px;
	}

	.kea-quick-contact-card__detail {
		font-size: 13px;
	}

	.kea-quick-contact__map-embed {
		height: 220px;
	}
}
