/* Homepage specific styling goes here. Excluded on all subpages */
/* For most builds, this stylesheet should be wiped and started fresh */

/* PRELOADER */
.preloader-outer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100vh;
	background-color: var(--color-white);
	transition: opacity 600ms ease-out;
}

.preloader-outer.active {
	visibility: visible !important;
}

.preloader-outer.preloader-remove {
	opacity: 0;
	pointer-events: none;
}

.preloader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.preloader-inner p {
	margin-bottom: 15px;
}

.preloader-inner p:last-of-type {
	margin: 0;
}

.preloader-part {
	margin: 20px;
	display: none;
}

.preloader-part-left.active {
	display: block;
	-webkit-animation: fadeinright 800ms ease-out;
	animation: fadeInRight 800ms ease-out;
}

.preloader-part-right.active {
	display: block;
	-webkit-animation: fadeinleft 500ms ease-out;
	animation: fadeInLeft 500ms ease-out;
}

/* Hero */
.hero {
	margin-top: 134px;
	padding-bottom: 3px;
	min-height: 240px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
}

.hero:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.81) 23.47%, rgba(255, 255, 255, 0) 55.26%);
	transform: matrix(-1, 0, 0, 1, 0, 0);
	content: '';
	pointer-events: none;
	display: none;
}

.hero .row {
	max-width: calc(1180px + var(--gutter-size) * 2);
	width: 100%;
}

.hero-text {
	margin-left: auto;
	position: relative;
	z-index: 2;
	max-width: 165px;
	overflow: hidden;
}

.hero-title {
	margin: 0;
	font-size: 5rem;
	line-height: 1.2;
	animation-delay: 1000ms;
}

.hero-title-image {
	font-size: 0;
	line-height: 0;
}

.hero-title-image-img {
	display: block;
	width: 100%;
	height: auto;
}

.hero-title-1,
.hero-title-3 {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 200;
	line-height: 1.2;
	color: var(--color-alternate);
	white-space: nowrap;
}

.hero-title-3 {
	justify-content: flex-end;
}

.hero-title-1:after,
.hero-title-3:before {
	margin-left: 15px;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-yellow);
	content: '';
}

.hero-title-3:before {
	margin-right: 15px;
	margin-left: 0;
}

.hero-title-2 {
	display: block;
	padding-right: 2px;
	padding-left: 2px;
	font-size: 0.85em;
	font-weight: 600;
	background-color: var(--color-primary);
	background-image: url('../images/text-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter:
		drop-shadow(1px 0 0 #ddd8d4) drop-shadow(-1px 0 0 #ddd8d4) drop-shadow(0 1px 0 #ddd8d4) drop-shadow(0 -1px 0 #ddd8d4) drop-shadow(1px 1px 0 #ddd8d4) drop-shadow(-1px 1px 0 #ddd8d4) drop-shadow(1px -1px 0 #ddd8d4) drop-shadow(-1px -1px 0 #ddd8d4);
	line-height: 1;
	letter-spacing: -2px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right bottom;
}

.hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.hero-video.is-playing {
	opacity: 1;
}

.hero-video-controls {
	position: absolute;
	right: 20px;
	bottom: 8px;
	z-index: 3;
	display: none;
	align-items: center;
	gap: 10px;
}

.hero-video-controls.is-visible {
	display: flex;
}

button.hero-video-toggle.no-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	color: var(--color-white);
	background-color: rgba(0, 0, 0, 0.35);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-video-toggle-icon {
	display: block;
	width: 20px;
	height: 20px;
}

button.hero-video-toggle.no-button:hover,
button.hero-video-toggle.no-button:focus {
	color: var(--color-secondary);
	background-color: rgba(0, 0, 0, 0.55);
}

@media screen and (min-width: 768px) {
	.hero {
		padding-bottom: 35px;
		min-height: 538px;
	}

	.hero-text {
		max-width: 340px;
	}

	.hero-title {
		font-size: 10.375rem;
	}

	.hero-title-1,
	.hero-title-3 {
		margin-bottom: 10px;
		font-size: 2.875rem;
	}

	.hero-title-2 {
		padding-right: 4px;
		padding-left: 4px;
		filter: drop-shadow(2px 0 0 #ddd8d4) drop-shadow(-2px 0 0 #ddd8d4) drop-shadow(0 2px 0 #ddd8d4) drop-shadow(0 -2px 0 #ddd8d4) drop-shadow(2px 2px 0 #ddd8d4) drop-shadow(-2px 2px 0 #ddd8d4) drop-shadow(2px -2px 0 #ddd8d4) drop-shadow(-2px -2px 0 #ddd8d4);
		line-height: 0.8;
		letter-spacing: -4px;
	}
}

@media screen and (min-width: 1025px) {
	.hero {
		margin-top: 149px;
		min-height: 0;
		aspect-ratio: 1920 / 1080;
		height: auto;
	}

	.hero-bg img {
		object-position: center bottom;
	}

	.hero-video {
		object-position: center bottom;
	}
}

@media screen and (min-width: 1441px) {
	.hero {
		padding-bottom: 96px;
	}

	.hero .row {
		max-width: calc(1550px + var(--gutter-size) * 2);
	}

	.hero-text {
		max-width: 318px;
	}

	.hero-title {
		font-size: 16.813rem;
	}

	.hero-title-2 {
		line-height: 0.8;
		letter-spacing: -0.25rem;
	}
}

/* About */
.about {
	margin-bottom: 44px;
	padding-top: 25px;
}

.about-image {
	margin-bottom: 26px;
	overflow: visible;
}

.about-image img {
	display: block;
	width: 100%;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.about-image .js-about-image-slider {
	position: relative;
	overflow: visible;
}

.about-image .swiper-pagination {
	position: relative;
	bottom: auto;
	left: auto;
	margin-top: 16px;
	display: flex;
	justify-content: center;
	width: 100%;
	line-height: 1;
}

.about-image .swiper-pagination-bullet {
	width: 43px;
	height: 2px;
	border-radius: 0;
	opacity: 0.45;
	background-color: #0d1345;
}

.about-image .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #0d1345;
}

.about-text {
	font-size: 1.063rem;
}

.about h1,
.about h2 {
	margin-bottom: 15px;
	font-weight: 400;
	font-size: var(--font-size-h1);
	color: var(--color-near-black);
}

.about-subtitle {
	margin-bottom: 22px;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.3;
}

.about p {
	margin-bottom: 25px;
}

.about .button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.938rem;
	width: 100%;
	max-width: 340px;
	line-height: 1.3;
	text-align: left;
}

.about-button-text {
	flex: 1;
	min-width: 0;
}

.about-button-arrow {
	flex-shrink: 0;
}

@media screen and (min-width: 768px) {
	.about {
		margin-bottom: 90px;
		padding-top: 60px;
	}

	.about-row {
		display: flex;
	}

	.about-image {
		margin-top: 9px;
		margin-right: -40px;
		margin-bottom: 0;
		order: 2;
		flex: 0 0 auto;
		width: 380px;
	}

	.about-text {
		padding-right: 30px;
		order: 1;
	}

	.about h1,
	.about h2 {
		margin-bottom: 19px;
		font-size: 2.813rem;
	}

	.about-subtitle {
		margin-bottom: 32px;
		font-size: 1.5rem;
		line-height: 1.3;
		max-width: 500px;
	}

	.about .button {
		display: inline-flex;
		font-size: 1rem;
		width: auto;
		max-width: none;
	}
}

@media screen and (min-width: 1200px) {
	.about-image {
		margin-right: -102px;
		width: 430px;
	}

	.about-text {
		padding-right: 120px;
	}

	.about p {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 1441px) {
	.about {
		padding-top: 80px;
	}
}

/* Testimonial */
.testimonial {
	padding-top: 48px;
	padding-bottom: 48px;
	position: relative;
	font-size: 2.25rem;
	color: var(--color-white);
	background-color: #0d1345;
	text-align: center;
	line-height: 1.2;
}

.testimonial .row-narrow {
	max-width: calc(650px + var(--gutter-size) * 2);
	position: relative;
	z-index: 1;
}

.testimonial .js-testimonial-slider {
	position: relative;
	overflow: visible;
}

.testimonial p {
	margin-bottom: 0;
}

.testimonial p strong {
	color: var(--color-yellow);
}

.testimonial-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.testimonial-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial .swiper-pagination {
	position: relative;
	bottom: auto;
	left: auto;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	width: 100%;
	line-height: 1;
}

.testimonial .swiper-pagination-bullet {
	width: 43px;
	height: 2px;
	border-radius: 0;
	opacity: 0.45;
	background-color: var(--color-white);
}

.testimonial .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var(--color-white);
}

@media screen and (min-width: 768px) {
	.testimonial {
		padding-top: 80px;
		padding-bottom: 64px;
		font-size: 2.813rem;
		line-height: 1.3;
	}
}

@media screen and (min-width: 1025px) {
	.testimonial {
		padding-top: 100px;
		padding-bottom: 80px;
	}
}

/* News */
.news {
	padding-top: 28px;
	padding-bottom: 26px;
	position: relative;
	background-color: rgba(45, 55, 145, 0.1);
	overflow: hidden;
}

.news .column {
	position: relative;
	z-index: 1;
}

.news-heading {
	position: absolute;
	top: 0;
	left: 50%;
	font-weight: 200;
	white-space: nowrap;
	color: rgba(45, 55, 145, 0.05);
	transform: translateX(-50%);
	line-height: 1.1;
	overflow: hidden;
	pointer-events: none;
}

.news h2 {
	margin-bottom: 5px;
	color: var(--color-near-black);
	letter-spacing: -0.038rem;
}

.news h5 {
	letter-spacing: -0.025rem;
}

.news-left {
	margin-bottom: 27px;
	position: relative;
}

.news-slider-image {
	display: block;
	overflow: hidden;
}

.news-slider-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.25s;
}

.news-slider-image:focus img,
.news-slider-image:hover img {
	transform: scale(1.05);
}

.news-slider-text {
	line-height: 1.28;
}

.news-slider-space {
	padding: 34px 28px 80px;
}

.news-slider-text strong {
	margin-bottom: 12px;
	display: block;
	font-size: 0.625rem;
	text-transform: uppercase;
}

.news-slider-title {
	margin-bottom: 11px;
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
}

.news-slider-text p {
	margin-bottom: 13px;
	font-size: 0.875rem;
	color: var(--color-black);
	line-height: 1.45;
}

.news-slider-text span {
	display: block;
	font-size: 0.75rem;
	color: var(--color-black);
	text-transform: uppercase;
}

.news-left .swiper {
	color: var(--color-primary);
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	text-decoration: none;
}

.news-slider-arrow {
	position: absolute;
	right: 19px;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 1rem;
	color: var(--color-white);
	background-color: var(--color-yellow);
	text-decoration: none;
}

.news-slider-arrow:focus,
.news-slider-arrow:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
	text-decoration: none;
}

.news-arrows.swiper-pagination {
	position: absolute;
	z-index: 3;
	bottom: 20px;
	left: 28px;
	display: flex;
	align-items: center;
	width: auto;
	line-height: 1;
}

.news-view-all {
	text-align: center;
}

.news-view-all .button.no-button {
	font-weight: 700;
}

/* Shared homepage card hover (matches attorney-single-box) */
.news-left .js-news-slider.swiper,
.news-block,
.feature-block,
.article-block,
.article-list {
	position: relative;
	transition: transform 250ms ease-out, box-shadow 450ms ease-out;
}

.news-left .js-news-slider.swiper:before,
.news-block:before,
.feature-block:before,
.article-block:before,
.article-list:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	transition: border-color 450ms ease-in-out;
	content: '';
	pointer-events: none;
}

@media screen and (min-width: 768px) {

	.news-left .js-news-slider.swiper:hover,
	.news-left .js-news-slider.swiper:focus-within,
	.news-block:hover,
	.news-block:focus,
	.feature-block:hover,
	.feature-block:focus,
	.article-block:hover,
	.article-block:focus,
	.article-block:focus-within,
	.article-list:hover,
	.article-list:focus {
		transform: translateY(-4px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	}

	.news-left .js-news-slider.swiper:hover:before,
	.news-left .js-news-slider.swiper:focus-within:before,
	.news-block:hover:before,
	.news-block:focus:before,
	.feature-block:hover:before,
	.feature-block:focus:before,
	.article-block:hover:before,
	.article-block:focus:before,
	.article-block:focus-within:before,
	.article-list:hover:before,
	.article-list:focus:before {
		border-color: var(--color-yellow);
	}
}

@media screen and (min-width: 768px) {
	.news {
		padding-top: 65px;
		padding-bottom: 66px;
	}

	.news-heading {
		top: -18px;
		font-size: 6.875rem;
		letter-spacing: -0.313rem;
	}

	.news h2 {
		margin-bottom: 22px;
		font-size: 2.813rem;
		font-weight: 400;
		letter-spacing: -0.063rem;
	}

	.news h5 {
		font-size: 1.75rem;
		letter-spacing: -0.025rem;
	}

	.news-row {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.news-left {
		margin-bottom: 0;
		padding-right: 15px;
		width: 60%;
	}

	.news-left .js-news-slider.swiper {
		--news-slider-height-floor: 420px;
		--news-slider-min-height: var(--news-slider-height-floor);
		min-height: var(--news-slider-height-floor);
		height: var(--news-slider-min-height);
	}

	.news-left .js-news-slider.swiper>.swiper-wrapper {
		min-height: var(--news-slider-min-height);
		height: 100%;
	}

	.news-left .js-news-slider.swiper .swiper-slide {
		min-height: var(--news-slider-min-height);
		height: 100%;
	}

	.news-right {
		padding-left: 11px;
		width: 40%;
	}

	.news-slider {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		min-height: var(--news-slider-min-height);
		height: 100%;
	}

	.news-slider-space {
		padding: 34px 28px 60px;
		display: flex;
		flex-direction: column;
		min-height: 100%;
		height: 100%;
		box-sizing: border-box;
	}

	.news-slider-space-upper {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.news-slider-image {
		width: 49.6%;
		flex: 0 0 49.6%;
		align-self: stretch;
		min-height: 100%;
		height: auto;
	}

	.news-slider-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.news-slider-text {
		width: 50.4%;
		flex: 0 0 50.4%;
		display: flex;
		flex-direction: column;
		align-self: stretch;
		min-height: 100%;
	}

	.news-slider-arrow {
		right: 15px;
		bottom: 16px;
	}

	.news-arrows.swiper-pagination {
		bottom: 16px;
		left: calc(49.6% + 28px);
	}

	.news-view-all {
		position: absolute;
		top: 12px;
		right: 24px;
	}
}

@media screen and (min-width: 1025px) {
	.news-heading {
		top: -22px;
		font-size: 9.25rem;
		letter-spacing: -0.438rem;
	}

	.news-left {
		padding-right: 15px;
		width: 66%;
	}

	.news-left .js-news-slider.swiper {
		--news-slider-height-floor: 490px;
	}

	.news-right {
		padding-left: 11px;
		width: 34%;
	}
}

@media screen and (min-width: 1200px) {
	.news-heading {
		top: -28px;
		font-size: 11.563rem;
		letter-spacing: -0.563rem;
	}
}

/* news-block */
.news-block {
	margin-bottom: 22px;
	display: flex;
	font-size: 0.688rem;
	color: var(--color-primary);
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	text-decoration: none;
	line-height: 1.3;
}

.news-block-text {
	padding: 18px 16px 15px;
}

.news-block span {
	display: block;
	font-size: 0.625rem;
	font-weight: 400;
	color: var(--color-black);
	margin-bottom: 3px;
}

.news-block strong {
	display: block;
	font-weight: 600;
}

.news-block-image {
	width: 167px;
	flex: 0 0 auto;
	overflow: hidden;
}

.news-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.25s;
}

.news-block:focus,
.news-block:hover {
	text-decoration: none;
}

.news-block:focus .news-block-image img,
.news-block:hover .news-block-image img {
	transform: scale(1.05);
}

.news-block:last-of-type {
	margin-bottom: 0;
}

/* Feature */
.feature {
	padding-top: 32px;
	padding-bottom: 33px;
	position: relative;
	overflow: hidden;
}

.feature-heading {
	position: absolute;
	top: 0;
	left: 50%;
	font-weight: 200;
	white-space: nowrap;
	color: rgba(32, 31, 43, 0.05);
	transform: translateX(-50%);
	line-height: 1;
	overflow: hidden;
	pointer-events: none;
}

.feature-holder {
	position: relative;
	z-index: 1;
}

.feature-row {
	margin-bottom: 31px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}

.feature h2 {
	margin-bottom: 22px;
	color: var(--color-near-black);
}

.feature-view-all {
	text-align: center;
}

.feature-view-all .button.no-button {
	font-weight: 700;
}

@media screen and (min-width: 768px) {
	.feature {
		padding-top: 65px;
		padding-bottom: 70px;
	}

	.feature-heading {
		top: -12px;
		font-size: 6.875rem;
		letter-spacing: -0.313rem;
	}

	.feature-row {
		margin-bottom: 0;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		align-items: stretch;
	}

	.feature h2 {
		margin-bottom: 24px;
		font-size: 1.75rem;
	}

	.feature-view-all {
		position: absolute;
		top: 2px;
		right: 24px;
	}
}

@media screen and (min-width: 1025px) {
	.feature-heading {
		top: -16px;
		font-size: 9.25rem;
		letter-spacing: -0.438rem;
	}

	.feature-row {
		gap: 40px;
	}
}

@media screen and (min-width: 1200px) {
	.feature-heading {
		top: -21px;
		font-size: 11.563rem;
		letter-spacing: -0.75rem;
	}
}

/* Feature-block */
.feature-block {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--color-primary);
	background-color: var(--color-white);
	text-decoration: none;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.feature-block-image {
	position: relative;
	overflow: hidden;
}

.feature-block-image img {
	width: 100%;
	transition: all 0.25s;
}

.feature-block-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	font-size: 2rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.7);
	transform: translate(-50%, -50%);
}

.feature-block-text {
	padding: 16px 20px 18px;
	font-size: 1rem;
	line-height: 1.3;
}

.feature-block-text strong {
	margin-bottom: 27px;
	display: block;
	font-weight: 700;
}

.feature-block-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 1rem;
	color: var(--color-white);
	background-color: var(--color-yellow);
	text-decoration: none;
	transition: all 0.25s;
}

.feature-block:focus,
.feature-block:hover {
	text-decoration: none;
}

.feature-block:focus .feature-block-image img,
.feature-block:hover .feature-block-image img {
	transform: scale(1.05);
}

.feature-block:focus .feature-block-arrow,
.feature-block:hover .feature-block-arrow {
	background-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.feature-block {
		height: 100%;
	}

	.feature-block-image {
		aspect-ratio: 16 / 9;
		flex-shrink: 0;
	}

	.feature-block-image img {
		height: 100%;
		object-fit: cover;
	}

	.feature-block-text {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
	}

	.feature-block-text strong {
		flex: 1 1 auto;
		margin-bottom: 27px;
	}

	.feature-block-arrow {
		margin-top: auto;
		flex-shrink: 0;
	}
}

/* Article */
.article {
	padding-top: 21px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
	background-color: rgba(252, 163, 17, 0.13);
}

.article-heading {
	position: absolute;
	top: 0;
	left: 50%;
	font-weight: 200;
	white-space: nowrap;
	color: rgba(32, 31, 43, 0.05);
	transform: translateX(-50%);
	line-height: 1;
	overflow: hidden;
	pointer-events: none;
}

.article-holder {
	position: relative;
	z-index: 1;
}

.article-row {
	margin-bottom: 27px;
}

.article-left {
	margin-bottom: 20px;
}

.article h2 {
	margin-bottom: 21px;
	color: var(--color-near-black);
}

.article-view-all {
	text-align: center;
}

.article-view-all .button.no-button {
	font-weight: 700;
}

@media screen and (min-width: 768px) {
	.article {
		padding-top: 62px;
		padding-bottom: 64px;
	}

	.article-heading {
		top: -12px;
		font-size: 6.875rem;
		letter-spacing: -0.313rem;
	}

	.article-row {
		margin-bottom: 0;
		display: grid;
		grid-template-columns: 38fr 62fr;
		column-gap: 21px;
		align-items: stretch;
	}

	.article-left {
		margin-bottom: 0;
		padding-right: 0;
		width: auto;
		min-height: 100%;
		display: flex;
		flex-direction: column;
	}

	.article-right {
		padding-left: 0;
		width: auto;
		min-height: 100%;
		display: flex;
		flex-direction: column;
		gap: 21px;
	}

	.article h2 {
		margin-bottom: 33px;
		font-size: 1.75rem;
	}

	.article-view-all {
		position: absolute;
		top: 2px;
		right: 24px;
	}
}

@media screen and (min-width: 1025px) {
	.article-heading {
		top: -16px;
		font-size: 9.25rem;
		letter-spacing: -0.438rem;
	}
}

@media screen and (min-width: 1200px) {
	.article-heading {
		top: -21px;
		font-size: 12.313rem;
		letter-spacing: -0.75rem;
	}
}

/* Article-block */
.article-block {
	display: block;
	color: var(--color-black);
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	text-decoration: none;
}

.article-block-image {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.article-block-image img {
	width: 100%;
	transition: all 0.25s;
}

.article-block-text {
	padding: 33px 24px 27px;
	font-size: 0.875rem;
	line-height: 1.42;
}

.article-block-text strong {
	margin-bottom: 11px;
	font-size: 0.625rem;
	display: block;
	color: var(--color-primary);
	text-transform: uppercase;
}

.article-block-text p {
	margin-bottom: 11px;
}

.article-block-title {
	margin-bottom: 10px;
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.3;
	text-decoration: none;
}

.article-block-date {
	margin-bottom: 0;
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.article-block-text .button.no-button,
.article-block-view-all {
	font-weight: 700;
}

.article-block-view-all {
	margin-top: 16px;
}

.article-block:focus-within .article-block-image img,
.article-block:hover .article-block-image img {
	transform: scale(1.05);
}

@media screen and (min-width: 768px) {
	.article-block {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 100%;
	}

	.article-block-text {
		padding: 27px 30px 25px;
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
	}

	.article-block-view-all {
		align-self: flex-start;
		margin-top: auto;
		padding-top: 20px !important;
	}

	.article-block-date {
		margin-bottom: 0;
	}

	.article-block-title {
		margin-bottom: 10px;
		font-size: 1.063rem;
	}
}

/* Article-list */
.article-list {
	margin-bottom: 21px;
	padding: 41px 28px 31px;
	display: block;
	font-size: 1.063rem;
	color: var(--color-primary);
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	text-decoration: none;
	line-height: 1.3;
}

.article-list span {
	margin-bottom: 6px;
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-black);
	text-transform: uppercase;
}

.article-list p:last-of-type {
	margin-bottom: 0;
}

.article-list p strong {
	font-weight: 600;
}

.article-list:last-of-type {
	margin-bottom: 0;
}

.article-list:focus,
.article-list:hover {
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.article-list {
		margin-bottom: 0;
		padding: 31px 29px 28px;
		flex: 1 1 0;
		min-height: 0;
		display: flex;
		flex-direction: column;
	}

	.article-list span {
		margin-bottom: 6px;
	}
}

/* Homepage post card hovers */
.news-slider:hover .news-slider-title,
.news-slider:focus-within .news-slider-title,
.news-slider-title:hover,
.news-slider-title:focus,
.news-block:hover,
.news-block:focus,
.feature-block:hover,
.feature-block:focus,
.article-block:hover,
.article-block:focus,
.article-block:focus-within,
.article-block:hover .article-block-title,
.article-block:focus .article-block-title,
.article-block:focus-within .article-block-title,
.article-list:hover,
.article-list:focus {
	color: var(--color-blue-dark);
}

.news-slider:hover .news-slider-title,
.news-slider:focus-within .news-slider-title,
.news-slider-title:hover,
.news-slider-title:focus,
.news-block:hover strong,
.news-block:focus strong,
.feature-block:hover .feature-block-text strong,
.feature-block:focus .feature-block-text strong,
.article-block:hover .article-block-title,
.article-block:focus .article-block-title,
.article-block:focus-within .article-block-title,
.article-list:hover p strong,
.article-list:focus p strong {
	text-decoration: underline;
}