.linkedin-section {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	gap: 25px;
}

.linkedin-section-heading {
	font-family: var(--font-family-primary);
	font-weight: 700;
	color: var(--primary-violet-dark);
	text-align: left;
	width: 100%;
	font-size: 24px;
	line-height: 110.00000000000001%;
	letter-spacing: -1%;
}

.linkedin-card {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	user-select: none;
	-webkit-user-select: none;
	pointer-events: auto;
}

@media (min-width: 992px) {
	.linkedin-card {
		flex-basis: 30%;
	}
}

@media (min-width: 1024px) {
	.linkedin-section {
		margin-top: 50px;
		gap: 40px;
	}

	.linkedin-section-heading {
		font-size: 64px;
		padding-right: 0;
	}
}

@media (min-width: 1200px) {
	.linkedin-section {
		padding: 0 3rem;
	}
}

@media (min-width: 1400px) {
	.linkedin-section {
		padding: 0 3rem 0 2.75rem;
	}
}

@media (min-width: 1800px) {
	.linkedin-section {
		padding: 0 1rem 0 1.25rem;
	}
}

/* LinkedIn Grid Styles - Mobile First Approach */
.linkedin-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
	width: 100%;
}

.linkedin-card {
	/* border: 1px solid #e2e8f0; */
	border-radius: 8px;
	padding: 8px;
	background: #fff;
	display: flex;
	flex-basis: 100%;
	width: 100%;
	height: 100%;
}

.linkedin-card iframe {
	height: 100%;
	width: 100%;
}

.li-embed {
	width: 100%;
	border: 0;
	height: 750px;
	min-height: 750px;
	overflow: hidden;
	object-fit: cover;
}

.linkedin-card-mobile-hidden {
	display: none;
}

.linkedin-card-mobile-visible {
	width: 100%;
	flex-basis: 100%;
}

/* Tablet and Desktop Styles */
@media (min-width: 992px) {
	.linkedin-grid {
		flex-direction: row;
		gap: 16px;
		justify-content: space-between;
		align-items: stretch;
		height: 750px;
		margin-left: 1%;
	}

	.linkedin-card {
		flex-basis: 33%;
		height: 750px;
		min-height: 750px;
		display: flex;
		flex-direction: column;
	}

	.linkedin-card-mobile-hidden {
		display: flex;
	}

	.linkedin-card-mobile-visible {
		flex-basis: 33%;
	}
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
	.li-embed {
		height: 660px;
	}
}

