/* ── Shortcode builder block: [gf_block] ── */

.gf-sc {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	border: 8px solid var(--color-sky-200, #B2CBE5);
	background-color: var(--color-white, #fff);
	margin: 40px 0;
}

.gf-sc__decor {
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
	line-height: 0;
	height: 100%;
}

.gf-sc__decor svg {
	display: block;
	height: 100%;
	width: auto;
}

.gf-sc__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding:32px;
}
.gf-sc.gf-sc--dots ul li{
color: var(--black, #191919);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 28px */
opacity: 0.7;
}
h2.gf-sc__title {
color: var(--Dark, #192023);
margin: 0 0 24px 0;
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 38.4px */
letter-spacing: -0.16px;
}

/* ── Editor content ── */

.gf-sc__content {
	color: var(--color-gray-500, #5b5b5b);
	font-size: var(--fs-body-m, 18px);
	line-height: 150%;
}

.gf-sc__content > :first-child {
	margin-top: 0;
}

.gf-sc__content > :last-child {
	margin-bottom: 0;
}

.gf-sc__content p {
	margin: 0 0 12px 0;
}

.gf-sc__content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.gf-sc__content ul li {
	position: relative;
	padding-left: 20px;
	color: var(--black, #757575);
	
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 22.4px */
}

.gf-sc__content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
width: 12px;
height: 12px;
background-size: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12C9.31368 12 12 9.31368 12 6C12 2.68629 9.31368 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31368 2.68629 12 6 12ZM9.27426 4.47427L5.4 8.34852L2.87573 5.82426L3.72427 4.97574L5.4 6.65148L8.42574 3.62573L9.27426 4.47427Z' fill='%23191919'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
}
.gf-sc__labels{
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
/* ── Labels ── */

ul.gf-sc__labels {
	list-style: none;
	margin: clamp(28px, 3.4vw, 44px) 0 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style-type: none !important;
	margin-top: 40px !important;
	flex-direction: row;
	max-width: 605px;
}

.gf-sc__label {
	list-style-type: none !important;
	display: flex;
	width: auto;
	max-width: auto;
	padding: 12px 20px;
	border-radius: 10px;
	background-color: var(--color-off-white-200, #ECEAE6);
	color: var(--color-black, #191919);
	font-size: var(--fs-body-s, 15px);
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	border-radius: 6px;
	border: 1px solid rgba(77, 76, 74, 0.10);
	background: #F1EFEC;
	color: #1A1919;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.14px;
	text-transform: uppercase;
	padding: 10px 15px !important;
}
.gf-sc__label:before{
	display: none;
}
/* ── Responsive ── */

@media (max-width: 768px) {
	.gf-sc {
		border-radius: 18px;
	}

	.gf-sc__decor {
		opacity: 0.5;
	}

	.gf-sc__label {
		padding: 10px 16px;
	}
	.gf-sc__decor{
		display: none;
	}
	.gf-sc__inner{
		padding: 20px;
	}
	h2.gf-sc__title{
		margin-bottom: 32px;
		font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 33.6px */
letter-spacing: -0.14px;
	}

}

/* ── [gf_block] dot-list variant: plain bullets instead of check icons ── */
.gf-sc--dots .gf-sc__content ul li::before {
	content: "•";
	background: none;
	width: auto;
	height: auto;
	top: 0;
	left: 4px;
	color: var(--color-gray-500, #807E7C);
	line-height: 1.4;
}
