.jutso-contact-section-widget {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
}
@media (max-width: 1024px) {
	.jutso-contact-section-widget {
		gap:0;
	}
}

.jutso-contact-section-widget__image-wrap {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.jutso-contact-section-widget__image-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 512 / 501;
	overflow: hidden;
}

.jutso-contact-section-widget__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* When there is no image column, content fills the row */
.jutso-contact-section-widget__content:only-child {
	flex: 1 1 100%;
}

.jutso-contact-section-widget__content {
	flex: 1 1 458px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	min-width: 0;
}

.jutso-contact-section-widget__text,
.jutso-contact-section-widget__text p {
	font-size: var(--otherctatext-font-size);
	line-height: var(--otherctatext-line-height);
	font-family: var(--otherctatext-font-family);
	letter-spacing: var(--otherctatext-letter-spacing);
	word-spacing: var(--otherctatext-word-spacing);
}

.jutso-contact-section-widget__text p,
.jutso-contact-section-widget__hint-text p {
	margin: 0;
}

.jutso-contact-section-widget__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 2px;
	box-sizing: border-box;
}

.jutso-contact-section-widget__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 700 !important;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
	box-sizing: border-box;
}

.jutso-contact-section-widget__button.calendar {
	background-color: var(--purple500) !important;
	color: var(--neutral100);
}

.jutso-contact-section-widget__button.mail {
	background-color: #fff !important;
	color: var(--text) !important;
	border: 2px solid var(--text) !important;
}

.jutso-contact-section-widget__button.calendar:hover,
.jutso-contact-section-widget__button.calendar:focus {
	background-color: var(--purple700) !important;
}

.jutso-contact-section-widget__button.mail:hover,
.jutso-contact-section-widget__button.mail:focus {
	border: 2px solid var(--text);
	color: var(--text);
	background-color: var(--neutral100) !important;
}

.jutso-contact-section-widget__hint-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.jutso-contact-section-widget__hint-icon {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
}

.jutso-contact-section-widget__hint-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.jutso-contact-section-widget {
		flex-direction: column;
		padding-bottom:32px;
	}

	.jutso-contact-section-widget__image-wrap,
	.jutso-contact-section-widget__content {
		flex: 0 0 auto;
	}

	.jutso-contact-section-widget__content {
		text-align: center;
		align-items: center;
	}

	.jutso-contact-section-widget__text {
		text-align: center;
	}

	.jutso-contact-section-widget__actions {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.jutso-contact-section-widget__button {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.jutso-contact-section-widget__hint-row {
		display: none;
	}
}
