/* =========================================================
   ROK LOCAL VISIBILITY FEATURES
   ========================================================= */

.rok-lvf {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.rok-lvf-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 60px;
	align-items: start;
	margin-bottom: 35px;
}

.rok-lvf-heading-column {
	min-width: 0;
}

.rok-lvf-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rok-lvf-title {
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -1.5px;
}

.rok-lvf-highlight {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.rok-lvf-highlight::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 3px;
	border-bottom: 3px solid;
	border-color: inherit;
	transform: rotate(-2deg);
}

.rok-lvf-description {
	font-size: 16px;
	line-height: 1.65;
	padding-top: 2px;
}

.rok-lvf-description p {
	margin-top: 0;
	margin-bottom: 12px;
}

.rok-lvf-description p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   ITEMS GRID
   ========================================================= */

.rok-lvf-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}


/* =========================================================
   CARD
   ========================================================= */

.rok-lvf-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
	box-sizing: border-box;

	background: #ffffff;
	border: 1px solid #f7b98c;
	border-radius: 12px;

	padding: 18px;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.rok-lvf-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   ICON
   ========================================================= */

.rok-lvf-icon {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid #f7b98c;
	border-radius: 50%;

	background: #fff9f4;

	box-sizing: border-box;
}

.rok-lvf-icon i {
	line-height: 1;
}

.rok-lvf-icon svg {
	display: block;
	width: 38px;
	height: 38px;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.rok-lvf-card-content {
	flex: 1;
	min-width: 0;
}

.rok-lvf-card-heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}

.rok-lvf-number {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.rok-lvf-card-title {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.rok-lvf-card-description {
	font-size: 14px;
	line-height: 1.55;
}

.rok-lvf-card-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;

	font-size: 13px;
	font-weight: 700;
	text-decoration: none;

	transition: gap 0.2s ease;
}

.rok-lvf-card-link:hover {
	gap: 11px;
}

.rok-lvf-link-arrow {
	font-size: 17px;
	line-height: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rok-lvf-header {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.rok-lvf-title {
		font-size: 40px;
	}

	.rok-lvf-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rok-lvf-header {
		gap: 20px;
		margin-bottom: 25px;
	}

	.rok-lvf-title {
		font-size: 32px;
		line-height: 1.08;
		letter-spacing: -0.7px;
	}

	.rok-lvf-description {
		font-size: 15px;
		line-height: 1.6;
	}

	.rok-lvf-items {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rok-lvf-card {
		padding: 16px;
	}

	.rok-lvf-icon {
		flex-basis: 65px;
		width: 65px;
		height: 65px;
	}

}