.my-bol {
	--bol-ink: #172033;
	--bol-muted: #5f6b7a;
	--bol-line: rgba(11, 18, 32, 0.1);
	--bol-blue: #0792e2;
	--bol-shadow: 0 18px 60px rgba(11, 18, 32, 0.1);
	--bol-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	background: #fff;
	color: var(--bol-ink);
	font-family: "Montserrat", Arial, sans-serif;
	overflow: hidden;
}

body.page-template-my-boletin-page,
body.page-template-my-boletin-page :where(div, section, article, header, footer, nav, p, a, span, li, h1, h2, h3, h4, h5, h6, small, strong, em, label),
body.page-template-my-boletin-page button,
body.page-template-my-boletin-page input,
body.page-template-my-boletin-page textarea,
body.page-template-my-boletin-page select {
	font-family: "Montserrat", Arial, sans-serif !important;
}

.my-bol *,
.my-bol *::before,
.my-bol *::after {
	box-sizing: border-box;
}

.my-bol-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
}

.my-bol-hero {
	position: relative;
	padding: 260px 0 130px;
	overflow: hidden;
	background:
		linear-gradient(180deg, #fff 0%, #fff 14%, rgba(255, 255, 255, 0) 30%),
		radial-gradient(780px 560px at 72% 22%, rgba(7, 146, 226, 0.07), transparent 72%),
		radial-gradient(620px 400px at 26% 18%, rgba(4, 190, 254, 0.045), transparent 74%),
		radial-gradient(860px 420px at 60% 78%, rgba(7, 146, 226, 0.035), transparent 78%),
		linear-gradient(180deg, #ffffff 0%, #f8fcff 52%, #fcfeff 82%, #ffffff 100%);
	background-repeat: no-repeat;
}

.my-bol-hero::after {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: -118px;
	height: 240px;
	border-radius: 50% 50% 0 0 / 70% 70% 0 0;
	background: linear-gradient(180deg, rgba(248, 253, 255, 0.32), rgba(255, 255, 255, 0.8));
	box-shadow: 0 -28px 54px rgba(255, 255, 255, 0.8);
	pointer-events: none;
}

.my-bol-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	gap: 30px;
	align-items: start;
}

.my-bol-copy h1 {
	margin: 0 0 24px;
	padding: 0;
	color: #000;
	font-size: 45px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
}

.my-bol-intro {
	margin: 0 0 14px;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

.my-bol-list {
	display: grid;
	gap: 12px;
	padding: 0;
	list-style: none;
	margin-left: 15px;
}

.my-bol-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
}

.my-bol-list li::before {
	content: "✓";
	flex: 0 0 auto;
	margin-top: -1px;
	color: var(--bol-blue);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
}

.my-bol-visual {
	display: block;
	width: 100%;
}

.my-bol-visual img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 18px 34px rgba(3, 36, 94, 0.12));
}

.my-bol-form {
	width: 100%;
	align-self: start;
}

.my-bol .newsletter-form-shortcode {
	display: flex;
	flex-direction: column;
	padding: 20px 25px;
	border: 1px solid var(--bol-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: none;
}

.my-bol .newsletter-form-shortcode label[for="nameShortcode"] {
	order: 1;
}

.my-bol .newsletter-form-shortcode #nameShortcode {
	order: 2;
}

.my-bol .newsletter-form-shortcode #nameErrorShortcode {
	order: 3;
}

.my-bol .newsletter-form-shortcode label[for="emailShortcode"] {
	order: 4;
}

.my-bol .newsletter-form-shortcode #emailShortcode {
	order: 5;
}

.my-bol .newsletter-form-shortcode #emailErrorShortcode {
	order: 6;
}

.my-bol .newsletter-form-shortcode #errorMsgShortcode {
	order: 7;
}

.my-bol .newsletter-form-shortcode .newsletter-submit-button {
	order: 8;
	margin-bottom: 10px;
}

.my-bol .newsletter-form-shortcode input {
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid var(--bol-line);
	border-radius: 8px;
	color: #000;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s ease;
}

.my-bol .newsletter-submit-button:disabled,
.my-bol .newsletter-submit-button:disabled:hover,
.my-bol .newsletter-submit-button:disabled:focus {
	opacity: 0.42;
	background-position: 0 0;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
	transition: none;
}

@media (min-width: 900px) {
	.my-bol .newsletter-form-shortcode {
		margin-top: 10px;
		margin-left: 20px;
	}
}

@media (max-width: 1250px) {
	.my-bol-container {
		width: calc(100% - 80px);
		max-width: none;
	}
}

@media (max-width: 900px) {
	.my-bol-hero {
		padding: 200px 0 100px;
	}

	.my-bol-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.my-bol-copy {
		text-align: center;
	}

	.my-bol-copy h1 {
		font-size: clamp(36px, 8vw, 46px);
	}

	.my-bol-list {
		max-width: 560px;
		margin-right: auto;
		margin-left: auto;
	}

	.my-bol-list li {
		display: block;
		width: fit-content;
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		font-size: 18px;
		text-align: center;
	}

	.my-bol-list li::before {
		display: inline-block;
		margin-right: 10px;
	}

	.my-bol-visual {
		text-align: center;
	}

	.my-bol-visual img {
		width: min(100%, 420px);
		margin-right: auto;
		margin-left: auto;
	}

	.my-bol .newsletter-form-shortcode label {
		text-align: left;
	}
}

@media (max-width: 560px) {
	.my-bol-container {
		width: calc(100% - 60px);
	}

	.my-bol-hero {
		padding: 170px 0 84px;
	}

	.my-bol .newsletter-form-shortcode {
		padding: 20px;
	}
}
