.press-center {
	padding-top: 100px;
	padding-bottom: 200px;
}

.wp-singular.page:not(.home) .press-center {
	padding-top: 200px;
	padding-bottom: 0;
}

.wp-singular.page:not(.home) .press-center--page {
	padding-top: 0;
}

.wp-singular:not(.home) .press-center--page .press-center__inner.container {
	max-width: none;
	padding-inline: 0;
}

.press-center__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 272px;
	gap: 48px;
	align-items: start;
	margin-top: 24px;
}

.press-center__main {
	min-width: 0;
}

.press-center__title {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 30px;
	line-height: 36px;
	color: #121316;
}

.press-center__tabs-wrap {
	margin-top: 48px;
}

.press-center__tabs {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding-bottom: 1px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.press-center__tabs::-webkit-scrollbar {
	display: none;
}

.press-center__tab {
	position: relative;
	flex: 0 0 auto;
	min-height: 44px;
	margin: 0;
	padding: 12px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	color: #76767a;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 18px;
	cursor: pointer;
	transition: color 180ms ease;
}

.press-center__tabs a.press-center__tab {
	display: block;
	text-decoration: none;
}

.press-center__tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #059669;
	opacity: 0;
	z-index: 2;
}

.press-center__tab:hover {
	color: #000000;
	background: transparent;
}

.press-center__tab.is-active {
	color: #000000;
}

.press-center__tab.is-active::after {
	opacity: 1;
}

.press-center__tab:disabled {
	cursor: default;
}

.press-center__tab:focus-visible {
	outline: 2px solid rgba(5, 150, 105, 0.45);
	outline-offset: 4px;
}

.press-center__tabs-divider {
	margin-top: -2px;
	position: relative;
	z-index: 1;
	border-top: 1px solid #e5e5eb;
}

.press-center__panel {
	position: relative;
	transition: opacity 180ms ease;
}

.press-center__panel[aria-busy="true"] .press-center__news-list {
	opacity: 0.55;
	animation: press-center-loading-pulse 1.1s ease-in-out infinite;
}

@keyframes press-center-loading-pulse {
	0%,
	100% {
		opacity: 0.55;
	}

	50% {
		opacity: 0.78;
	}
}

.press-center__news-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.press-center__news-item {
	margin: 0;
	border-bottom: 1px solid #e5e5eb;
}

.press-center__news-article {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px 0;
}

.press-center__news-item:first-child .press-center__news-article {
	padding-top: 0;
}

.press-center__thumb-link {
	flex: 0 0 116px;
	width: 116px;
	margin-top: 4px;
	text-decoration: none;
}

.press-center__thumb {
	display: block;
	width: 116px;
	height: 76px;
	object-fit: cover;
	border-radius: 2px;
}

.press-center__news-content {
	min-width: 0;
	flex: 1 1 auto;
}

.press-center__news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 8px;
	margin: 0;
}

.press-center__date,
.press-center__tag {
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 20px;
}

.press-center__date {
	color: #76767a;
}

.press-center__meta-dot {
	color: #76767a;
}

.press-center__tag {
	color: var(--color-accent);
	text-decoration: none;
}

.press-center__tag:hover,
.press-center__tag:focus-visible {
	color: #047857;
	text-decoration: none;
}

.press-center__news-title {
	margin: 4px 0 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 18px;
	line-height: 28px;
	color: #141519;
}

.press-center__news-title a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.press-center__news-title a:hover,
.press-center__news-title a:focus-visible {
	color: var(--color-accent);
	text-decoration: none;
}

.press-center__message {
	margin: 24px 0 0;
	color: #76767a;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 18px;
	line-height: 28px;
}

.press-center__message.is-hidden {
	display: none;
}

.press-center__all-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid #e5e5eb;
	background: #ffffff;
	color: #1f1f21;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.press-center__all-link:hover,
.press-center__all-link:focus-visible {
	background: #f4f5f8;
	border-color: #d6d9e0;
	color: #000000;
	text-decoration: none;
}

.press-center__aside {
	align-self: start;
	position: relative;
	overflow: visible;
	z-index: 2;
}

.press-center__banner {
	position: relative;
}

.press-center__banner-link {
	display: block;
	text-decoration: none;
}

.press-center__banner-link:focus-visible {
	outline: 2px solid rgba(5, 150, 105, 0.45);
	outline-offset: 4px;
}

.press-center__banner-image {
	display: block;
	width: 100%;
	height: auto;
}

.press-center.press-center--single {
	padding-top: 0;
	padding-bottom: 0;
}

.press-center__news-article--single {
	padding-top: 0;
}

.single-post__title {
	margin-top: 4px;
	font-weight: var(--fw-bold);
}

.single-post__content {
	margin-top: 24px;
}

.single-post__content,
.single-post__content p {
	font-size: max(18px, var(--fs-body));
	line-height: max(28px, var(--lh-body));
}

.single-post__content table {
	width: 100%;
	margin-bottom: 24px;
	border: 1px solid var(--color-subtle);
	border-collapse: collapse;
}

.single-post__content .wp-block-table {
	margin-bottom: 24px;
}

.single-post__content .wp-block-table table {
	margin-bottom: 0;
}

.single-post__content th,
.single-post__content td {
	padding: 12px 14px;
	border: 1px solid var(--color-subtle) !important;
	vertical-align: top;
	text-align: left;
}

@media (max-width: 1199px) {
	.press-center__layout {
		grid-template-columns: minmax(0, 1fr) 240px;
		gap: 32px;
	}

}

@media (max-width: 1023px) {
	.press-center__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.press-center__aside {
		width: 100%;
		position: static;
		top: auto;
	}

	.press-center__banner {
		position: static;
		max-width: 360px;
	}
}

@media (max-width: 767px) {
	.press-center {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.press-center__tabs {
		gap: 16px;
		padding-bottom: 1px;
	}

	.press-center__news-article {
		gap: 14px;
		padding: 16px 0;
	}

	.press-center__news-article--with-thumb {
		display: block;
	}

	.press-center__thumb-link,
	.press-center__thumb {
		width: 104px;
	}

	.press-center__thumb-link {
		flex-basis: 104px;
	}

	.press-center__news-article--with-thumb .press-center__thumb-link {
		display: block;
		width: 100%;
		margin: 0 0 12px;
	}

	.press-center__thumb {
		height: 72px;
	}

	.press-center__news-article--with-thumb .press-center__thumb {
		width: 100%;
		height: clamp(180px, 52vw, 260px);
		aspect-ratio: 16 / 9;
	}

	.press-center__news-title {
		font-size: 17px;
		line-height: 25px;
	}

	.press-center__banner {
		max-width: none;
	}

	.single-post__content th,
	.single-post__content td {
		padding: 10px;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

}

@media (max-width: 480px) {
	.press-center__news-article {
		display: block;
		gap: 12px;
	}

	.press-center__news-article--single {
		display: block;
	}

	.press-center__thumb-link,
	.press-center__thumb {
		width: 88px;
	}

	.press-center__thumb {
		height: 62px;
	}

	.press-center__date,
	.press-center__tag {
		font-size: 14px;
		line-height: 18px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.press-center__panel,
	.press-center__tab,
	.press-center__news-title a,
	.press-center__all-link {
		transition: none;
	}

	.press-center__panel[aria-busy="true"] .press-center__news-list {
		animation: none;
	}
}
