/*
	==========================================
	 Lateran Section Widget
	==========================================
*/
.lateran-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 15px;
}

.lateran-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lateran-section__grid--reverse {
	direction: rtl;
}

.lateran-section__grid--reverse > * {
	direction: ltr;
}


/*
	==========================================
	 Image Column
	==========================================
*/
.lateran-section__image-col {
	height: 100%;
}

.lateran-section__image-wrap {
	position: relative;
	height: 100%;
	min-height: 340px;
	overflow: hidden;
}

.lateran-section__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.lateran-section:hover .lateran-section__img {
	transform: scale(1.03);
}

.lateran-section__icon-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: #1f5489;
	color: #fff;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/*
	==========================================
	 Content Column
	==========================================
*/
.lateran-section__content-col {
	padding: 40px 40px 40px 20px;
}

.lateran-section__grid--reverse .lateran-section__content-col {
	padding: 40px 20px 40px 40px;
}

.lateran-section__icon-inline {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: rgba(31, 84, 137, 0.08);
	color: #1f5489;
	font-size: 24px;
	margin-bottom: 20px;
}

.lateran-section__subtitle {
	display: inline-block;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #1f5489;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.lateran-section__title {
	font-family: "Heebo", sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #1e205a;
	line-height: 1.3;
	margin-bottom: 16px;
}

.lateran-section__desc {
	font-family: Lato, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #5d5d5d;
	line-height: 1.7;
	margin-bottom: 24px;
}

.lateran-section__desc p {
	margin: 0 0 12px 0;
}

.lateran-section__desc p:last-child {
	margin-bottom: 0;
}

.lateran-section__btn {
	display: inline-flex;
	align-items: center;
	padding: 11px 26px;
	font-family: Lato, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background-color: #1f5489;
	border: 1.5px solid #1f5489;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.lateran-section__btn:hover {
	background-color: #163d66;
	color: #fff;
	text-decoration: none;
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(31, 84, 137, 0.25);
}

.lateran-section__btn i {
	transition: transform 0.2s ease;
}

.lateran-section__btn:hover i {
	transform: translateX(4px);
}


/*
	==========================================
	 Responsive
	==========================================
*/
@media screen and (max-width: 768px) {
	.lateran-section {
		margin: 30px auto;
	}

	.lateran-section__grid,
	.lateran-section__grid--reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}

	.lateran-section__image-wrap {
		min-height: 220px;
	}

	.lateran-section__content-col,
	.lateran-section__grid--reverse .lateran-section__content-col {
		padding: 28px 24px 32px;
	}

	.lateran-section__title {
		font-size: 22px;
	}

	.lateran-section__desc {
		font-size: 14px;
	}
}
