.static-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.static-card-item {
	position: relative;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

a.static-card-image,
a.static-card-btn {
	text-decoration: none;
}

.static-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.static-card-image-wrapper {
	position: relative;
	width: 100%;
}

.static-card-image {
	width: 100%;
	margin-bottom: 20px;
	display: block;
}

.static-card-image img {
	width: 100%;
	height: 240px;
	display: block;
	object-fit: cover;
}

.video-play-btn {
	position: absolute;
	right: 15px;
	bottom: 35px; /* Accounting for .static-card-image margin-bottom */
	width: 45px;
	height: 45px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.video-play-btn svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

.static-card-item:hover .video-play-btn {
	background-color: #000;
	transform: scale(1.1);
}

.static-card-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.static-card-title {
	font-size: 24px;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-family: inherit;
}

.static-card-desc {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	flex-grow: 1;
}

.static-card-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: auto;
}

.static-card-btn-text {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.3s ease;
	display: inline-block;
}

.static-card-btn-text:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background-color: #000;
	transition: width 0.3s ease;
}

.static-card-item:hover .static-card-btn-text:after {
	width: 100%;
}

.static-card-btn-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background-color: #fff;
}

.static-card-btn-icon svg {
	width: 16px;
	height: auto;
	transition: all 0.3s ease;
	fill: #000;
}

.static-card-item:hover .static-card-btn-icon {
	background-color: #000;
	border-color: #000;
}

.static-card-item:hover .static-card-btn-icon svg path {
	fill: #fff;
}