.container__header__layout__cta {
	margin-left: 1.25rem;
	width: 17.5rem;
	flex: none;
}

/*
| --------------------------------
| Contact card
| --------------------------------
*/

.press-contact-card {
	--profile-size: 8rem;

	max-width: 17.5rem;
	margin: 0 auto;
	text-align: center;
	box-shadow: var(--shadow-md);
	border-radius: var(--bs-border-radius);
	border: 1px solid var(--bs-gray-200);
	background: #fff;
	overflow: hidden;
}

.press-contact-card__header,
.press-contact-card__info {
	padding: 1.5rem;
}

.press-contact-card__img {
	width: var(--profile-size);
	height: var(--profile-size);
	margin-bottom: 1.5rem;
}

.press-contact__title {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	color: var(--bs-GSBlue);
	line-height: 1.25;
}

.press-contact__title span {
	margin-bottom: .25em;
	display: block;
	font-size: .6em;
	color: var(--bs-gray-400);
	letter-spacing: -.025em;
	text-transform: uppercase;
}

.press-contact-card__info {
	color: var(--bs-gray-900);
	line-height: 1;
	border-top: 1px solid var(--bs-gray-200);
	background: var(--bs-gray-50);
}

.press-contact-card__info-item + .press-contact-card__info-item {
	margin-top: 1rem;
}


/*
| --------------------------------
| Press release
| --------------------------------
*/

.press-release-card {
	border-radius: .5rem;
	border: 1px solid var(--bs-gray-100);
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.press-release-card img {
	max-height: 96px;
	object-fit: cover;
}

.press-released-card__content {
}

.press-released-card__content__button,
.press-released-card__content__specs {
	padding: 1rem;
}

.press-released-card__content__specs__title {
	color: #054880;
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
}

.press-released-card__content__date {
	font-size: 0.875rem;
	color: var(--bs-gray-600);
}

.press-released-card__link:hover {
	text-decoration: none;
}

.press-released-card__link:hover .press-released-card__content__specs__title {
	text-decoration: underline;
}

.press-released-card__content__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	align-self: stretch;
	border-top: 1px solid #e7e5e4;
}

.press-released-card__content__button span {
	color: #0e6ab7;
	font-family: "Noto Sans", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 15px */
}

.press-released-card__content__button img {
	display: none;
}

@media (min-width: 992px) {
	.press-released-card__content {
		display: flex;
		align-items: center;
		flex: 1;
	}

	.press-released-card__content__specs {
		flex: 1;
	}

	.press-released-card__content__button img {
		display: block;
	}

	.press-released-card__content__button span {
		display: none;
	}

	.press-released-card__content__button {
		border-top: none;
	}

	.press-release-card img {
		max-height: none;
		max-width: 160px;
		object-fit: cover;
	}
}

/*
| --------------------------------
| Press article
| --------------------------------
*/

.article-card {
}

.article-card__logo {
	width: 120px;
	height: 64px;
	flex: none;
	border-radius: .5rem;
	border: 1px solid #e7e5e4;
	margin-bottom: 1rem;
	background: #fff;
	object-fit: cover;
}

.article-card__content:hover {
	text-decoration: none;
}

.article-card__content:hover .article-card__content__specs__text {
	text-decoration: underline;
}

.article-card__content__date-title {
	color: var(--bs-gray-600);
	font-size: .875rem;
	line-height: 1.25;
	margin-bottom: .25rem;
}

.article-card__content__date {
}

.article-card__content__date:before {
	content: '\0000b7\000020';
}

.article-card__content__specs__text {
	color: var(--bs-gray-900);
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.25;
	margin-bottom: 0.875rem;
}

.article-card__content__button {
	color: var(--bs-GSBlue);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25;
}

@media (min-width: 992px) {
	.article-card__logo {
		margin-right: 1.5rem;
	}
}

