.featured-news-block {
    position: relative;
    z-index: 1;
    padding: 0 0 20px;
}

.featured-news-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.news-card {
	display: flex;
	flex-direction: column;
	/* gap: 15px; */
	padding: 20px;
	overflow: hidden;
	transition: transform 0.2s ease;

    position: relative;
    overflow: hidden;
}

.news-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px; 
}

.news-card .card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	text-indent: -9999px;
	pointer-events: auto;
}

/* Disable clicks through all content so the overlay link is triggered */
.news-card > *:not(.card-link) {
	pointer-events: none;
}

.post-categories {
    position: relative;
    z-index: 2;
}

.news-card:hover {
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
	transform: translateY(-4px);
}

.news-card:hover .image-wrap img,
.news-card:hover .image-wrapper img {
	transform: scale(1.05);
}

.news-card:hover h2,
.news-card:hover h3,
.news-card:hover h4 {
	text-decoration: underline;
	color: #1D75CC;
}

.news-card h2,
.news-card h3 {
	transition: all 0.3s ease-in-out;
}

.news-card:hover h2,
.news-card:hover h3 {
	text-decoration: underline;
}


.news-card .image-wrap,
.news-card .image-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.news-card .image-wrap::before,
.news-card .image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #02335F 0%, #02335F 100%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.news-card:hover .image-wrap::before,
.news-card:hover .image-wrapper::before {
    opacity: 1;
}

.news-card .image-wrap img,
.news-card .image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16/9;
    transition: transform 0.3s ease-in-out;
}

.news-card .content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.news-card h2,
.news-card h3,
.news-card h4 {
	color: #35383B;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
}

.news-card h2 {
	font-size: 28px;
}

.news-card h3 {
	font-size: 20px;
}

.news-card h4 {
	font-size: 16px;
}

.news-card a {
	/* color: #71777D; */
	text-decoration: none;
}

.news-card .cta-button,
.news-card .post-category,
.news-card .yellow-button {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}


.news-card a.post-category:hover,
.news-card .category a:hover {
	text-decoration: underline;
}

.news-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #71777D;
}

.news-card p svg {
	vertical-align: middle;
	margin: 0 5px;
	display: inline-block;
}

.news-card:hover h3 {
	color: #1D75CC;
}

/* Post Type Specific */
.featured-post {
	width: 66%;
	padding-left: 0;
}

.featured-news-content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}

.sidebar-wrapper {
	width: 32%;
	display: flex;
	flex-direction: column;

    border-left: 2px solid #E2E3E5;
    padding: 0 0 0 2%;
}

.sidebar-post {
	width: 100%;
}

.sidebar-post.news-card:first-of-type {
    border-bottom: 2px solid #E2E3E5;
    padding-bottom: 20px;
}

.featured-post h2,
.sidebar-post h2,
.sidebar-post h3,
.grid-post h4 {
	margin-top: 10px;
}

.grid-post {
	width: 25%;
}

.grid-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #E2E3E5;
    padding-top: 30px;
}

.grid-wrapper .grid-post:nth-child(2) {
    border-left: 2px solid #E2E3E5;
}

.grid-wrapper .grid-post:nth-child(3) {
    border-left: 2px solid #E2E3E5;
    border-right: 2px solid #E2E3E5;
}

.grid-wrapper .grid-post {
    padding: 0 20px;
}

/* .grid-wrapper .grid-post:first-child {
    padding-left: 0;
}

.grid-wrapper .grid-post:last-child {
    padding-right: 0;
} */



@media (max-width: 1000px) {
    .featured-post {
		border-bottom: 2px solid #E2E3E5;
		padding-right: 0;
		width: 100%;
	}
	.sidebar-wrapper {
		width: 100%;
		border-left: none;
		padding: 0;
	}
	.sidebar-post.news-card:first-of-type {
		border-bottom: none;
		border-right: 2px solid #E2E3E5;
	}
	.sidebar-wrapper {
		flex-direction: row;
	}
	.sidebar-post {
		padding: 0;
		width: 50%;
	}
	.sidebar-post:first-of-type {
		padding-right: 20px;
	}
	.sidebar-post:last-of-type {
		padding-left: 20px;
	}
	.grid-wrapper {
		flex-wrap: wrap;
		padding-top: 20px;
	}
	.grid-wrapper .grid-post:nth-child(2),
	.grid-wrapper .grid-post:nth-child(3) {
		border-left: none;
		border-right: none;
	}
	.grid-wrapper .grid-post:nth-child(4) {
		border: none;
	}
	.grid-wrapper .grid-post {
		padding: 0;
        align-items: center;
        flex-direction: row;
        margin: 10px 0;
        padding-bottom: 20px;
        width: 100%;
        border-bottom: 2px solid #E2E3E5;
		justify-content: space-between;
	}
	.grid-wrapper .news-card .image-wrap, 
	.grid-wrapper .news-card .image-wrapper {
		width: 30%;
	}
	.grid-wrapper .news-card .content-wrapper {
		width: 65%;
	}
	.grid-wrapper .news-card .content-wrapper h3 {
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.sidebar-wrapper {
		flex-direction: column;
	}
	.sidebar-post.news-card:first-of-type,
	.sidebar-post:last-of-type {
		border: none;
		border-bottom: 2px solid #E2E3E5;
		padding: 0;
	}
	.sidebar-post.news-card:first-of-type {
		padding-bottom: 20px;
	}
	.sidebar-post:last-of-type {
		border: none;
		margin-top: 20px;
	}
	.sidebar-post {
		padding: 0;
		width: 100%;
	}
}