[class*="col-"] .news-module .container {
	padding: 0;
}

.news-module__inner-wrap {
	display: flex;
	flex-flow: row wrap;
	gap: 40px;
	justify-content: space-between;
	padding: 0 60px;
	position: relative;
}

.news-module__inner-wrap::before {
	content: "";
	height: calc(100% - 30px);
	position: absolute;
	left: 20px;
	top: 68px;
	border-left: 2px dashed var(--brand-primary);
}

.news-module__body {
	position: relative;
}

.news-module .newspaper-icon {
	position: absolute;
	left: -100px;
	height: 24px;
	top: 54px;
	width: 80px;
}

.news-module .newspaper-icon .fa-light {
	background: var(--body-bg);
	padding: 0 10px;
	color: var(--brand-primary);
	font-size: 25px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	font-weight: 300;
}

.news-module__label {
	font-weight: 400;
	color: var(--gray-darker);
}

.news-module__label .news-title {
	font-size: 50px;
	line-height: 1.3;
	font-weight: 300;
	display: inline-block;
	margin-top: 12px;
}

@media (min-width: 992px) {
	.news-module__label .news-title {
		font-size: 60px;
	}
}

.news-module__label .news-subtitle {
	display: block;
	font-weight: 700;
	font-size: 42px;
	color: var(--brand-primary);
}

.news-module .more-links {
	padding: 0 60px;
	position: relative;
	margin-bottom: 40px;
	text-align: center;
	min-height: 74px;
}

.news-module .more-links .btn {
	color: var(--gray-darker)
}

.news-module .btn-innerwrap {
    display: flex;
    align-items: center;
}

.news-module .arrow-btn {
    background: transparent;
    border: 0 none;
    position: relative;
    font-weight: 700;
    color: #262f24;
    transition: all 300ms ease;
    padding-left: 0;
    padding-right: 0;
}

.news-module .arrow-btn .arrow-btn__circle {
    background: var(--brand-bg);
    border: 1px solid var(--brand-border);
    color: var(--brand-primary);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    position: relative;
    line-height: 50px;
    vertical-align: -18px;
    transition: all 300ms ease;
}

.news-module .arrow-btn:hover .arrow-btn__circle {
    margin-left: 15px;
    transition: all 300ms ease;
}

.news-module .border-cutoff-box .btn .btn-underline {
	position: absolute;
	background-color: var(--brand-info);
	height: 2px;
	bottom: 12px;
	width: calc(100% - 70px);
	left: 35px;
	transition: all 300ms ease;
	z-index: -1;
}

.news-module .border-cutoff-box .btn:hover .btn-underline,
.news-module .border-cutoff-box .btn:focus .btn-underline,
.news-module .border-cutoff-box .btn:active .btn-underline {
	width: calc(100% - 20px);
	bottom: 0;
	left: 10px;
	transition: all 300ms ease;
}

.news-module .border-cutoff-box {
	background: var(--body-bg);
	position: relative;
	display: inline-block;
}

.news-module .border-cutoff-box .btn {
	position: relative;
	z-index: 2;
}

.news-module .border-cutoff-box::before,
.news-module .border-cutoff-box::after {
	content: "";
	position: absolute;
	height: 100%;
	border-left: 1px solid var(--brand-primary);
	left: 10px;
	top: 0;
}

.news-module .border-cutoff-box::after {
	right: 10px;
	left: unset;
}

.news-module .more-links .arrow-btn {
	background: var(--body-bg);
	z-index: 1;
	position: relative;
	padding: 12px 10px;
}


.news-module .more-links::before {
	content: "";
	width: calc(100% - 70px);
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	border-bottom: 2px dashed var(--brand-primary);
}

.news-module .more-links::after {
	content: "";
	height: 100px;
	bottom: -40px;
	right: 40px;
	border-right: 2px dashed var(--brand-primary);
	position: absolute;
}

.news-module__image-wrap:has(> .news-module__image img:empty) {
    display: none;
}

@media (max-width: 992px) {
	.news-module__inner-wrap {
		padding: 0 40px 0 60px;
	}

	.news-module__image-wrap {
		margin-bottom: 25px;
		margin-right: 18px;
	}
}

@media (min-width: 1200px) {
	.news-module__inner-wrap {
		padding: 0 100px;
	}

	.news-module .newspaper-icon::after {
		content: "";
		border-top: 2px dashed var(--brand-primary);
		position: absolute;
		top: 50%;
		left: 0;
		width: 80px;
		transform: translateY(-50%);
	}

	.news-module .more-links {
		padding: 0 40px 0 100px;
		text-align: left;
	}

	.news-module .more-links::before {
		width: calc(100% - 80px);
		left: 0;
	}

	.news-module .more-links::after {
		height: 200px;
		right: 75px;
	}

	.news-module .more-links .arrow-btn {
		padding: 12px 15px;
	}

	.news-module__inner-wrap::before {
		left: 0;
	}

	.news-module__body {
		flex: 1 1 40%;
	}

	.news-module__image-wrap {
		flex: 1 1 50%;
		display: flex;
		align-items: center;
	}

}
