.wideissue-contact {
	margin-top: 2rem;
}

.wideissue-contact-form {
	background: #fff;
	border: 1px solid #dce4e8;
	border-radius: 14px;
	padding: clamp(1.25rem, 4vw, 2.25rem);
}

.wideissue-contact-form h2 {
	font-size: 1.55rem;
	margin: 0 0 .45rem;
}

.wideissue-form-intro {
	color: #163e52;
	font-size: .94rem;
	margin: 0 0 1.75rem;
}

.wideissue-form-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wideissue-field {
	margin: 0 0 1.15rem;
}

.wideissue-field label {
	display: block;
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: .45rem;
}

.wideissue-field label span,
.wideissue-field-help {
	color: #526872;
	font-size: .78rem;
	font-weight: 500;
}

.wideissue-field label strong {
	color: #0c6677;
	font-size: .76rem;
	margin-left: .25rem;
}

.wideissue-field input,
.wideissue-field textarea {
	background: #fbfcfc;
	border: 1px solid #cbd7dc;
	border-radius: 8px;
	box-sizing: border-box;
	font: inherit;
	padding: .78rem .9rem;
	width: 100%;
}

.wideissue-field input:focus,
.wideissue-field textarea:focus {
	border-color: #0c6677;
	box-shadow: 0 0 0 3px rgba(12, 102, 119, .13);
	outline: none;
}

.wideissue-consent {
	background: #f6f8f9;
	border: 1px solid #dce4e8;
	border-radius: 10px;
	font-size: .84rem;
	margin: 1.35rem 0;
	padding: 1rem 1.1rem;
}

.wideissue-consent p,
.wideissue-consent ul {
	margin: 0 0 .65rem;
}

.wideissue-consent ul {
	padding-left: 1.15rem;
}

.wideissue-check {
	align-items: flex-start;
	display: flex;
	font-weight: 650;
	gap: .55rem;
}

.wideissue-check input {
	margin-top: .32rem;
}

.wideissue-form-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.wideissue-form-actions button {
	background: #0c6677;
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 750;
	padding: .8rem 1.2rem;
}

.wideissue-form-actions button:hover {
	background: #163e52;
}

.wideissue-form-actions a {
	font-size: .84rem;
}

.wideissue-form-notice {
	border-radius: 10px;
	margin-bottom: 1rem;
	padding: 1rem 1.1rem;
}

.wideissue-form-notice.is-success {
	background: #e3f7ef;
	border: 1px solid #85cbb3;
	color: #174f3c;
}

.wideissue-form-notice.is-error {
	background: #fff0ef;
	border: 1px solid #e5aaa5;
	color: #7c2923;
}

.wideissue-honeypot {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

@media (max-width: 640px) {
	.wideissue-form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

