/* Featured Post: base wrapper */
.featured-post-block {
	background-image: var(--background-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 676px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 30px;
}

.featured-post-block-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
}

@media (max-width: 768px) {
	.featured-post-block {
		min-height: 100vh;
		height: 100%;
		padding-bottom: 40px;
	}
}

/* Label chip */
.featured-post-block-label {
	position: relative;
	margin-bottom: 30px;
	font-family: var(--font-secondary);
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	color: #0D0D0D;

	background-color: #81F249;
	padding: 0 15px;
	background-clip: content-box;

	overflow: visible;
}

/* Tabs (sit inside the padding area) */
.featured-post-block-label::before,
.featured-post-block-label::after {
	content: '';
	position: absolute;
	top: 0;
	width: 15px;
	height: 100%;
	background-color: #81F249;
	pointer-events: none;

	/* mask sizing */
	-webkit-mask-repeat: no-repeat;
			mask-repeat: no-repeat;
	-webkit-mask-size: 15px 100%;
			mask-size: 15px 100%;
	-webkit-mask-position: center;
			mask-position: center;

	/* paint above parent background */
	z-index: 0;
}
  
/* Left tab */
.featured-post-block-label::before {
	left: 0;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='20' viewBox='0 0 15 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M0 0H15V20H7.8C7.6 20 7.4 19.8 7.4 19.6V15C7.4 12.2 5.2 10 2.5 10H0V0Z'/%3E%3C/svg%3E");
			mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='20' viewBox='0 0 15 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M0 0H15V20H7.8C7.6 20 7.4 19.8 7.4 19.6V15C7.4 12.2 5.2 10 2.5 10H0V0Z'/%3E%3C/svg%3E");
}
  
/* Right tab */
.featured-post-block-label::after {
	right: 0;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='20' viewBox='0 0 15 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M0 0H14V9.5C14 9.8 13.8 10 13.5 10H12.5C9.8 10 7.6 12.2 7.6 15V19.6C7.6 19.8 7.4 20 7.2 20H0V0Z'/%3E%3C/svg%3E");
			mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='20' viewBox='0 0 15 20'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M0 0H14V9.5C14 9.8 13.8 10 13.5 10H12.5C9.8 10 7.6 12.2 7.6 15V19.6C7.6 19.8 7.4 20 7.2 20H0V0Z'/%3E%3C/svg%3E");
}

/* Title */
.featured-post-block h2 {
	margin: 0 0 20px;
	font-weight: 400;
}

/* Read more button */
.featured-post-link {
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
}

.featured-post-link::before,
.featured-post-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background: var(--button-color);
	pointer-events: none;
	will-change: transform;
	transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
}

.featured-post-link::before {
	transform: translateX(0) scaleX(1);
	transform-origin: left;
}

.featured-post-link:hover::before {
	transform: translateX(100%) scaleX(0);
	transform-origin: right;
}

.featured-post-link::after {
	transform: translateX(-100%) scaleX(0);
	transform-origin: left;
	transition-delay: .02s;
}

.featured-post-link:hover::after {
	transform: translateX(0) scaleX(1);
}