/*!
Theme Name: decoder
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Decoder custom theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: decoder
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
	--decoder-container: 1280px;
	--decoder-bg-primary: #0b0f14;
	--decoder-bg-secondary: #212a36;
	--decoder-bg-elevated: #212730;
	--decoder-bg-overlay: #090d13;
	--decoder-border-default: #303b49;
	--decoder-border-strong: #4b545f;
	--decoder-text-primary: #f5f7fa;
	--decoder-text-secondary: #cbd1d9;
	--decoder-text-tertiary: #8e99a6;
	--decoder-text-muted: #66717e;
	--decoder-accent: #3b82f6;
	--decoder-accent-hover: #60a5fa;
	--decoder-accent-active: #2563eb;
	--decoder-white: #ffffff;
	--decoder-font: "Inter", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--decoder-bg-primary);
	color: var(--decoder-text-secondary);
	font-family: var(--decoder-font);
	font-size: 15px;
	line-height: 23px;
}

body.decoder-menu-open {
	overflow: hidden;
}

button,
input {
	font: inherit;
}

button {
	border: 0;
	padding: 0;
	background: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.site {
	min-height: 100vh;
	background: var(--decoder-bg-primary);
}

.decoder-container {
	width: min(100% - 160px, var(--decoder-container));
	margin-inline: auto;
}

.decoder-button,
.decoder-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.decoder-button {
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
}

.decoder-button--primary {
	background: var(--decoder-accent);
	color: var(--decoder-white);
}

.decoder-button--primary:hover {
	background: var(--decoder-accent-hover);
}

.decoder-button--primary:active {
	background: var(--decoder-accent-active);
}

.decoder-button--secondary {
	border: 1px solid var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
}

.decoder-button--secondary:hover {
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-primary);
}

.decoder-icon-button {
	width: 40px;
	flex: 0 0 40px;
	border: 1px solid var(--decoder-text-secondary);
}

.decoder-icon-button--filled {
	border-color: var(--decoder-bg-elevated);
	background: var(--decoder-bg-elevated);
}

.decoder-icon-button img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.decoder-icon-button:hover {
	border-color: var(--decoder-accent-hover);
}

.decoder-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--decoder-bg-primary);
}

.decoder-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
}

.decoder-header__logo {
	display: block;
	flex: 0 0 auto;
}

.decoder-header__logo-desktop {
	width: 253px;
	height: 46px;
}

.decoder-header__logo-mobile,
.decoder-header__menu-toggle,
.decoder-header__search--mobile {
	display: none;
}

.decoder-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.decoder-language {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 12px;
	color: var(--decoder-text-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-language span {
	display: block;
	width: 1px;
	height: 16px;
	background: var(--decoder-border-strong);
	transform: rotate(1.7deg);
}

.decoder-language .is-active {
	color: var(--decoder-text-secondary);
}

.decoder-category-nav {
	background: var(--decoder-bg-elevated);
}

.decoder-category-nav__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 4px 0;
}

.decoder-category-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.decoder-category-nav a {
	display: inline-flex;
	align-items: center;
	height: 40px;
	color: var(--decoder-white);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
}

.decoder-category-nav a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-latest-news {
	background: var(--decoder-bg-primary);
}

.decoder-latest-news__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 30px 0 100px;
}

.decoder-featured-article {
	position: relative;
	display: flex;
	gap: 32px;
	align-items: stretch;
	width: 100%;
	color: inherit;
}

.decoder-featured-article__media {
	position: relative;
	width: 624px;
	height: 420px;
	flex: 0 0 624px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-featured-article__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-post-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 12px;
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
	    width: fit-content;
}

.decoder-featured-article__media .decoder-post-label {
	position: absolute;
	top: 12px;
	left: 12px;
}

.decoder-featured-article__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.decoder-featured-article__title {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 44px;
	font-weight: 600;
	line-height: 50px;
	letter-spacing: 0;
}

.decoder-featured-article__title a,
.decoder-news-card__title a {
	color: inherit;
}

.decoder-featured-article__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.decoder-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	width: 100%;
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-article-meta__author {
	color: inherit;
	text-decoration: underline;
	text-underline-position: from-font;
}

.decoder-article-meta__divider {
	display: inline-block;
	width: 1px;
	height: 20px;
	background: var(--decoder-border-strong);
}

.decoder-latest-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 48px;
	width: 100%;
}

.decoder-news-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	min-height: 155px;
	color: inherit;
}

.decoder-news-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
	min-height: 0;
}

.decoder-news-card:nth-child(n+2)::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -24px;
	width: 1px;
	background: var(--decoder-border-strong);
	content: "";
}

.decoder-news-card__title {
	display: -webkit-box;
	flex: 0 0 auto;
	max-height: 46px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.decoder-featured-article__title a:hover,
.decoder-news-card__title a:hover,
.decoder-article-meta__author:hover {
	color: var(--decoder-accent-hover);
}

.decoder-category-news {
	background: var(--decoder-bg-elevated);
}

.decoder-category-news__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 100px 0;
}

.decoder-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
}

.decoder-section-heading h2 {
	margin: 0;
	color: var(--decoder-white);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-section-link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	height: 40px;
	color: var(--decoder-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
}

.decoder-section-link img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: transform 160ms ease;
}

.decoder-section-link:hover {
	color: var(--decoder-accent-hover);
}

.decoder-section-link:hover img {
	transform: translateX(3px);
}

.decoder-category-news__layout {
	display: grid;
	grid-template-columns: 296px 296px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: 100%;
}

.decoder-category-news-card {
	min-width: 0;
	color: inherit;
}

.decoder-category-news-card--image {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 296px;
}

.decoder-category-news-card__media {
	display: block;
	width: 100%;
	height: 160px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-category-news-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-category-news-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.decoder-category-news-card--image .decoder-category-news-card__content {
	min-height: 135px;
}

.decoder-category-news-card__title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
}

.decoder-category-news-card--image .decoder-category-news-card__title {
	max-height: 69px;
	-webkit-line-clamp: 3;
}

.decoder-category-news-card--compact .decoder-category-news-card__title {
	max-height: 46px;
	-webkit-line-clamp: 2;
}

.decoder-category-news-card__title a {
	color: inherit;
}

.decoder-category-news-card__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-category-news-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-category-news-card--compact {
	min-height: 87px;
}

.decoder-category-news-card--compact + .decoder-category-news-card--compact {
	padding-top: 16px;
	border-top: 1px solid var(--decoder-border-strong);
}

.decoder-investigations {
	background: var(--decoder-bg-primary);
}

.decoder-investigations__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 100px 0;
}

.decoder-investigations__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 405px));
	gap: 32px;
	width: 100%;
}

.decoder-investigation-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 405px;
	min-height: 379px;
	color: inherit;
}

.decoder-investigation-card__media {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-investigation-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-investigation-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 143px;
}

.decoder-investigation-card__title {
	display: -webkit-box;
	flex: 0 0 auto;
	max-height: 90px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.decoder-investigation-card__title a {
	color: inherit;
}

.decoder-investigation-card__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-home-subscription {
	background: var(--decoder-bg-primary);
	padding-bottom: 100px;
}

.decoder-subscription-box {
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
}

.decoder-subscription-box__content {
	display: flex;
	gap: 70px;
	align-items: center;
	justify-content: center;
	min-height: 284px;
	padding: 50px 70px;
}

.decoder-subscription-box__description {
	display: flex;
	flex: 0 0 593px;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.decoder-subscription-box__description h2,
.decoder-subscription-box__social h3 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-weight: 600;
	letter-spacing: 0;
}

.decoder-subscription-box__description h2 {
	font-size: 36px;
	line-height: 45px;
}

.decoder-subscription-box__description p {
	width: 450px;
	max-width: 100%;
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-subscription-box__divider {
	align-self: stretch;
	width: 1px;
	background: var(--decoder-border-strong);
}

.decoder-subscription-box__social {
	display: flex;
	flex: 0 0 381px;
	flex-direction: column;
	gap: 32px;
	min-width: 0;
}

.decoder-subscription-box__social h3 {
	font-size: 28px;
	line-height: 38px;
}

.decoder-subscription-form,
.decoder-subscription-box__shortcode form {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	width: 459px;
	max-width: 100%;
}

.decoder-subscription-form__field {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	height: 40px;
	min-width: 0;
	border: 1px solid var(--decoder-text-secondary);
}

.decoder-subscription-form__field input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 38px;
	border: 0;
	background: transparent;
	color: var(--decoder-text-primary);
	padding: 8px 12px;
	font-size: 15px;
	line-height: 23px;
	outline: 0;
}

.decoder-subscription-form__field button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 38px;
	cursor: pointer;
}

.decoder-subscription-form__field button[hidden] {
	display: none;
}

.decoder-subscription-form__field img {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

.decoder-subscription-form .decoder-button {
	flex: 0 0 auto;
	border: 0;
	background: var(--decoder-accent-hover);
}

.decoder-subscription-box .decoder-social {
	gap: 0;
	justify-content: space-between;
}

.decoder-analytics {
	background: var(--decoder-bg-primary);
}

.decoder-analytics__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 100px 0;
}

.decoder-analytics__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 622px));
	column-gap: 36px;
	row-gap: 16px;
	width: 100%;
}

.decoder-analytics-card {
	display: flex;
	gap: 16px;
	width: 622px;
	min-width: 0;
	min-height: 170px;
	color: inherit;
}

.decoder-analytics-card:nth-child(n+3) {
	padding-top: 16px;
	border-top: 1px solid var(--decoder-border-strong);
}

.decoder-analytics-card__media {
	display: block;
	width: 296px;
	height: 170px;
	flex: 0 0 296px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-analytics-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-analytics-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	min-height: 170px;
}

.decoder-analytics-card__title {
	display: -webkit-box;
	flex: 0 0 auto;
	max-height: 115px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.decoder-analytics-card__title a {
	color: inherit;
}

.decoder-analytics-card__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-factchecking {
	background: var(--decoder-bg-primary);
}

.decoder-factchecking__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
	padding: 100px 0;
}

.decoder-factchecking__top {
	display: flex;
	flex-direction: column;
	gap: 50px;
	width: 100%;
}

.decoder-factchecking__top h2 {
	margin: 0;
	color: var(--decoder-white);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-factchecking__intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
}

.decoder-factchecking__intro p {
	width: 619px;
	max-width: 100%;
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-factchecking__content {
	display: grid;
	grid-template-columns: 732px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: 100%;
	min-height: 585px;
}

.decoder-factchecking-featured {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 732px;
	min-width: 0;
	color: inherit;
}

.decoder-factchecking-featured__media {
	display: block;
	width: 100%;
	height: 410px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-factchecking-featured__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-factchecking-featured__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.decoder-factchecking-featured__title {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 0;
}

.decoder-factchecking-featured__title a,
.decoder-factchecking-item__title a {
	color: inherit;
}

.decoder-factchecking-featured__title a:hover,
.decoder-factchecking-item__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-factchecking-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.decoder-factchecking-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 87px;
	padding-bottom: 16px;
	color: inherit;
}

.decoder-factchecking-item + .decoder-factchecking-item {
	padding-top: 16px;
	border-top: 1px solid var(--decoder-border-strong);
}

.decoder-factchecking-item__title {
	display: -webkit-box;
	max-height: 46px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.decoder-factchecking__submit {
	min-width: 209px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
	background: transparent;
}

.decoder-factchecking__submit:hover {
	border-color: var(--decoder-text-secondary);
	color: var(--decoder-bg-primary);
	background: var(--decoder-text-secondary);
}

.decoder-donate {
	background: var(--decoder-bg-primary);
	padding-bottom: 100px;
}

.decoder-donate__box {
	display: flex;
	gap: 70px;
	align-items: center;
	justify-content: center;
	min-height: 314px;
	padding: 50px 70px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
}

.decoder-donate__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 36px;
	min-width: 0;
}

.decoder-donate__content h2 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-donate__content p {
	max-width: 593px;
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-donate__content .decoder-button {
	align-self: flex-start;
}

.decoder-donate__media {
	width: 450px;
	height: 250px;
	flex: 0 0 450px;
	overflow: hidden;
}

.decoder-donate__media img {
	display: block;
	width: 100%;
	height: auto;
}

.decoder-popular {
	background: var(--decoder-bg-primary);
}

.decoder-popular__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
	padding: 100px 0;
}

.decoder-popular__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
}

.decoder-popular__heading h2 {
	margin: 0;
	color: var(--decoder-white);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-popular__controls {
	display: flex;
	gap: 40px;
	align-items: center;
}

.decoder-popular__controls--mobile {
	display: none;
}

.decoder-popular__controls .decoder-icon-button:first-child img {
	transform: rotate(180deg);
}

.decoder-popular__controls .decoder-icon-button:hover,
.decoder-popular__controls .decoder-icon-button.is-active {
	border-color: var(--decoder-accent-hover);
}

.decoder-popular__content {
	width: 100%;
}

.decoder-popular__content.owl-carousel {
	display: block;
}

.decoder-popular__content .owl-stage {
	display: flex;
}

.decoder-popular__content .owl-item {
	min-height: 1px;
}

.decoder-popular__column {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.decoder-popular-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 140px;
	padding-bottom: 16px;
	color: inherit;
}

.decoder-popular-card + .decoder-popular-card {
	padding-top: 16px;
	border-top: 1px solid var(--decoder-border-strong);
}

.decoder-popular-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
	min-height: 0;
}

.decoder-popular-card__title {
	display: -webkit-box;
	flex: 0 0 auto;
	max-height: 46px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.decoder-popular-card__title a {
	color: inherit;
}

.decoder-popular-card__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-popular .owl-dots {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 32px;
	margin-top: 24px;
}

.decoder-popular .owl-dot {
	position: relative;
	width: 12px;
	height: 12px;
	cursor: pointer;
}

.decoder-popular .owl-dot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 4px;
	background: var(--decoder-border-strong);
	transform: translate(-50%, -50%);
	content: "";
}

.decoder-popular .owl-dot.active::before {
	background: var(--decoder-text-secondary);
}

.decoder-category-page {
	background: var(--decoder-bg-primary);
}

.decoder-category-hero {
	background: var(--decoder-bg-primary);
}

.decoder-category-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 24px 0 0;
}

.decoder-breadcrumbs {
	display: flex;
	gap: 12px;
	align-items: center;
	color: var(--decoder-text-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-breadcrumbs a {
	color: var(--decoder-text-tertiary);
	text-decoration: underline;
	text-underline-position: from-font;
	    text-underline-offset: 3px;
}

.decoder-breadcrumbs a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-breadcrumbs span[aria-hidden="true"] {
	width: 1px;
	height: 20px;
	background: var(--decoder-border-strong);
}

.decoder-category-hero__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 623px;
	gap: 120px;
	align-items: start;
}

.decoder-category-hero__intro h1 {
	margin: 0;
	color: var(--decoder-white);
	font-size: 44px;
	font-weight: 600;
	line-height: 50px;
	letter-spacing: 0;
}

.decoder-category-hero__intro p {
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0;
}

.decoder-category-tags {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	overflow: hidden;
}

.decoder-category-tags__divider {
	width: 100%;
	height: 1px;
	background: var(--decoder-border-strong);
}

.decoder-category-tags__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.decoder-category-tags__heading h2 {
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0;
}

.decoder-category-tags__controls {
	display: flex;
	gap: 40px;
	align-items: center;
}

.decoder-category-tags__controls .decoder-icon-button:first-child img {
	transform: rotate(180deg);
}

.decoder-category-tags__controls .decoder-icon-button:disabled {
	opacity: 0.4;
	pointer-events: none;
}

.decoder-category-tags__controls .decoder-icon-button:hover {
	border-color: var(--decoder-accent-hover);
}

.decoder-category-tags__scroller {
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.decoder-category-tags__scroller::-webkit-scrollbar {
	display: none;
}

.decoder-category-tag {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 12px;
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-category-tag:hover,
.decoder-category-tag.is-active {
	color: var(--decoder-accent);
}

.decoder-category-archive {
	background: var(--decoder-bg-primary);
}

.decoder-category-archive__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px 0 0;
}

.decoder-category-sort {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	align-self: flex-end;
	width: 304px;
	min-height: 40px;
}

.decoder-category-sort__label {
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	opacity: 0.5;
}

.decoder-category-sort__control {
	position: relative;
	width: 200px;
}

.decoder-category-sort__trigger {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
	height: 40px;
	padding: 10px 12px;
	border: 1px solid var(--decoder-text-muted);
	border-radius: 0;
	background: transparent;
	color: var(--decoder-text-tertiary);
	font-family: var(--decoder-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.decoder-category-sort__trigger span:first-child {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.decoder-category-sort__trigger:hover,
.decoder-category-sort__trigger:focus-visible,
.decoder-category-sort.is-open .decoder-category-sort__trigger {
	border-color: var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
	outline: none;
}

.decoder-category-sort__chevron {
	position: relative;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.decoder-category-sort__chevron::before {
	position: absolute;
	top: 7px;
	left: 6px;
	width: 10px;
	height: 10px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	content: "";
}

.decoder-category-sort__menu {
	position: absolute;
	top: 48px;
	left: 0;
	z-index: 30;
	display: none;
	flex-direction: column;
	width: 200px;
	padding: 16px 12px 16px 10px;
	background: var(--decoder-bg-elevated);
	box-shadow: 0 4px 20px rgba(11, 45, 121, 0.06);
}

.decoder-category-sort.is-open .decoder-category-sort__menu {
	display: flex;
}

.decoder-category-sort__option {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 37px;
	padding: 6px 0 6px 6px;
	border-bottom: 1px solid #4b545f;
	color: var(--decoder-text-secondary);
	font-family: var(--decoder-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.decoder-category-sort__option:last-child {
	border-bottom: 0;
}

.decoder-category-sort__option:hover,
.decoder-category-sort__option:focus-visible,
.decoder-category-sort__option.is-active {
	color: #ffffff;
	outline: none;
}

.decoder-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 405px));
	gap: 100px 32px;
	width: 100%;
}

.decoder-category-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 405px;
	min-height: 379px;
	color: inherit;
}

.decoder-category-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: var(--decoder-bg-secondary);
}

.decoder-category-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.decoder-category-card:hover .decoder-category-card__media img {
	transform: scale(1.03);
}

.decoder-category-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 143px;
}

.decoder-category-card__title {
	display: -webkit-box;
	flex: 1 1 auto;
	max-height: 90px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.decoder-category-card__title a {
	color: inherit;
}

.decoder-category-card__title a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-author-card__category {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 9px 12px;
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-elevated);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	pointer-events: none;
}

.decoder-pagination {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	margin-top: 18px;
}

.decoder-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-pagination .page-numbers.current {
	border-color: var(--decoder-text-secondary);
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-primary);
}

.decoder-pagination a.page-numbers:hover {
	border-color: var(--decoder-accent-hover);
	color: var(--decoder-accent-hover);
}

.decoder-pagination .prev img {
	transform: rotate(180deg);
}

.decoder-category-page .decoder-home-subscription {
	padding: 70px 0 75px;
}

.decoder-single-page {
	background: var(--decoder-bg-primary);
	color: var(--decoder-text-secondary);
}

.decoder-single-main {
	padding: 24px 0 100px;
	background: var(--decoder-bg-primary);
}

.decoder-single-breadcrumbs {
	max-width: 961px;
	margin-bottom: 32px;
	overflow: hidden;
}

.decoder-single-breadcrumbs span:last-child {
	min-width: 0;
	overflow: hidden;
	color: var(--decoder-text-muted);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.decoder-single-layout {
	display: grid;
	grid-template-columns: 183px 732px 293px;
	gap: 36px;
	align-items: start;
}

.decoder-single-meta,
.decoder-single-sidebar {
	position: sticky;
	top: 132px;
}

.decoder-single-meta {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 183px;
}

.decoder-single-meta__category,
.decoder-single-related-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	width: max-content;
	padding: 9px 12px;
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
}

.decoder-single-meta__category {
	color: var(--decoder-bg-secondary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
}

.decoder-single-meta__details {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
}

.decoder-single-meta__author {
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	text-decoration: underline;
	text-underline-position: from-font;
}

.decoder-single-meta__author:hover,
.decoder-single-related-card a:hover,
.decoder-single-content a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-single-meta__time {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	line-height: 23px;
}

.decoder-single-meta__time span span {
	color: var(--decoder-text-muted);
}

.decoder-single-meta__actions {
	display: flex;
	gap: 24px;
	align-items: center;
}

.decoder-single-content-column {
	width: 732px;
	min-width: 0;
}

.decoder-single-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.decoder-single-header h1 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-single-featured {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.decoder-single-featured button {
	display: block;
	width: 100%;
	height: 410px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.decoder-single-featured img,
.decoder-single-content img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-single-featured figcaption,
.decoder-single-content figcaption,
.decoder-single-content .wp-caption-text {
	margin: 0;
	color: var(--decoder-text-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-single-content {
	display: flow-root;
	margin-top: 24px;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-single-content > * {
	margin-top: 0;
	margin-bottom: 0;
}

.decoder-single-content > * + * {
	margin-top: 40px;
}

.decoder-single-content p + p,
.decoder-single-content h2 + p,
.decoder-single-content h3 + p,
.decoder-single-content h4 + p {
	margin-top: 16px;
}

.decoder-single-content h2,
.decoder-single-content h3,
.decoder-single-content h4 {
	color: var(--decoder-text-primary);
	font-weight: 600;
	letter-spacing: 0;
}

.decoder-single-content h2 {
	font-size: 28px;
	line-height: 38px;
}

.decoder-single-content h3,
.decoder-single-content h4 {
	font-size: 21px;
	line-height: 30px;
}

.decoder-single-content p:first-child {
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
}

.decoder-single-content a {
	color: var(--decoder-text-tertiary);
	text-decoration: underline;
	text-underline-position: from-font;
}

.decoder-single-content figure {
	margin-right: 0;
	margin-left: 0;
}

.decoder-single-content figure img {
	height: auto;
	cursor: zoom-in;
}

.decoder-single-content blockquote {
	margin: 0;
	padding: 25px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
}

.decoder-single-content ul,
.decoder-single-content ol {
	padding-left: 24px;
}

.decoder-single-content li + li {
	margin-top: 8px;
}

.decoder-single-content .decoder-block-quote,
.decoder-single-content .decoder-block-gallery {
	margin: 40px 0;
}

.decoder-block-quote {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	padding: 16px 24px 24px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
}

.decoder-block-quote__icon {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.decoder-block-quote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-quote blockquote p {
	margin: 0;
	color: inherit !important;
	font-size: inherit!important;
	font-weight: inherit!important;
	line-height: inherit!important;
}

.decoder-block-quote figcaption {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-block-quote__author {
	color: var(--decoder-text-primary);
}

.decoder-block-quote__caption {
	color: var(--decoder-text-muted);
}

.decoder-block-gallery {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-block-gallery__track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}

.decoder-block-gallery__item {
	display: block;
	width: 100%;
	height: 200px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.decoder-block-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-single-content .decoder-block-quote__icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.decoder-single-content .decoder-block-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.decoder-block-gallery figcaption {
	margin: 0;
	color: var(--decoder-text-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-block-gallery__dots {
	display: none;
}

.decoder-block-gallery--preview {
	gap: 24px;
}

.decoder-block-gallery--preview .decoder-block-gallery__controls {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.decoder-block-gallery--preview .decoder-block-gallery__controls .decoder-icon-button:first-child img {
	transform: rotate(180deg);
}

.decoder-block-gallery--preview .decoder-block-gallery__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-block-gallery--preview .decoder-block-gallery__track {
	display: flex;
	gap: 24px;
	height: 180px;
	overflow: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.decoder-block-gallery--preview .decoder-block-gallery__item {
	position: relative;
	flex: 0 0 calc((100% - 48px) / 3);
	width: calc((100% - 48px) / 3);
	height: 180px;
	overflow: hidden;
	scroll-snap-align: start;
}

.decoder-block-gallery--preview .decoder-block-gallery__item--more::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.7);
	content: "";
}

.decoder-block-gallery__more-count {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	color: var(--decoder-text-secondary);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
}

.decoder-block-gallery--preview.is-preview-scrolled .decoder-block-gallery__item--more::after,
.decoder-block-gallery--preview.is-preview-scrolled .decoder-block-gallery__more-count {
	display: none;
}

.decoder-single-content .decoder-block-route {
	margin: 40px 0;
}

.decoder-block-route {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.decoder-block-route__title {
	display: flex;
	align-items: center;
	min-height: 26px;
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-route__list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}

.decoder-block-route__stage {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	min-width: 0;
}

.decoder-block-route__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	color: var(--decoder-accent);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
}

.decoder-block-route__stage p {
	display: -webkit-box;
	min-width: 100%;
	height: 46px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.decoder-block-route__connector {
	position: relative;
	flex: 0 0 32px;
	align-self: stretch;
	width: 32px;
	padding-bottom: 56px;
}

.decoder-block-route__connector::before,
.decoder-block-route__connector::after {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.decoder-block-route__connector::before {
	width: 28px;
	height: 2px;
	background: var(--decoder-text-muted);
}

.decoder-block-route__connector::after {
	width: 0;
	height: 0;
	margin-left: 13px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid var(--decoder-text-muted);
}

.decoder-single-content .decoder-block-importance {
	margin: 40px 0;
}

.decoder-block-importance {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	padding: 24px;
	border: 1px solid var(--decoder-accent);
	background: var(--decoder-text-primary);
	color: var(--decoder-bg-primary);
}

.decoder-block-importance__heading {
	display: flex;
	gap: 16px;
	align-items: center;
	width: 100%;
}

.decoder-block-importance__icon {
	display: block;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	object-fit: contain;
}

.decoder-single-content .decoder-block-importance__heading h2,
.decoder-block-importance__heading h2 {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	color: #2563eb;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-importance__text {
	width: 100%;
	color: var(--decoder-bg-primary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-block-importance__text p {
	margin: 0;
	color: inherit !important;
	font-size: inherit!important;
	font-weight: inherit!important;
	line-height: inherit!important;
}

.decoder-single-content .decoder-block-column-charts {
	margin: 40px 0;
}

.decoder-block-column-charts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-single-content .decoder-block-column-charts__title,
.decoder-block-column-charts__title {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-column-charts__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-block-column-charts__grid {
	display: flex;
	gap: 32px;
	align-items: center;
	width: 100%;
}

.decoder-column-chart {
	display: flex;
	flex: 0 0 328px;
	flex-direction: column;
	gap: 8px;
	width: 328px;
	padding: 16px 24px;
	background: var(--decoder-bg-elevated);
}

.decoder-single-content .decoder-column-chart h3,
.decoder-column-chart h3 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-column-chart__plot {
	position: relative;
	width: 100%;
	height: 175px;
}

.decoder-column-chart__lines {
	position: absolute;
	top: 15px;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 278px;
}

.decoder-column-chart__line {
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
}

.decoder-column-chart__line span {
	width: 30px;
	color: var(--decoder-text-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	text-align: right;
}

.decoder-column-chart__line i {
	flex: 1 1 0;
	height: 1px;
	background: var(--decoder-border-strong);
}

.decoder-column-chart__bars {
	position: absolute;
	right: 10px;
	bottom: 1px;
	left: 50px;
	display: flex;
	gap: 16px;
	align-items: flex-end;
	height: 174px;
}

.decoder-column-chart__bar-wrap {
	position: relative;
	display: flex;
	flex: 0 0 30px;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	width: 30px;
}

.decoder-column-chart__bar {
	position: relative;
	display: block;
	width: 30px;
	height: var(--bar-height);
	min-height: 2px;
	padding: 0;
	border: 0;
	background: var(--decoder-accent);
	cursor: default;
}

.decoder-column-chart__bar span {
	position: absolute;
	bottom: calc(100% + 4px);
	left: 50%;
	z-index: 3;
	display: none;
	width: max-content;
	max-width: 120px;
	padding: 2px 3px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
	white-space: nowrap;
	transform: translateX(-50%);
}

.decoder-column-chart__bar:hover span,
.decoder-column-chart__bar:focus-visible span {
	display: block;
}

.decoder-column-chart__bar-wrap p {
	margin: 0;
	color: var(--decoder-text-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
}

.decoder-block-column-charts__source {
	margin: 0;
	color: var(--decoder-text-tertiary);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

.decoder-single-content .decoder-block-line-chart {
	margin: 40px 0;
}

.decoder-block-line-chart {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-single-content .decoder-block-line-chart__title,
.decoder-block-line-chart__title {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-line-chart__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-line-chart {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 328px;
	padding: 24px;
	background: var(--decoder-bg-elevated);
}

.decoder-single-content .decoder-line-chart h3,
.decoder-line-chart h3 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-line-chart__plot {
	position: relative;
	width: 100%;
	height: 155px;
}

.decoder-line-chart__lines {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 279px;
}

.decoder-line-chart__line {
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
}

.decoder-line-chart__line span {
	width: 30px;
	color: var(--decoder-text-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	text-align: right;
}

.decoder-line-chart__line i {
	flex: 1 1 0;
	height: 1px;
	background: var(--decoder-border-strong);
}

.decoder-line-chart__diagram {
	position: absolute;
	bottom: 0.25px;
	left: 38px;
	width: 226px;
	height: 69.5px;
}

.decoder-line-chart__svg {
	position: absolute;
	top: -78px;
	left: 0;
	width: 226px;
	height: 121px;
	overflow: visible;
}

.decoder-line-chart__svg polyline {
	fill: none;
	stroke: var(--decoder-accent);
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.decoder-line-chart__point-wrap {
	position: absolute;
	top: var(--point-y);
	left: var(--point-x);
	width: 12px;
	height: 12px;
	    margin-top: -5px;
}

.decoder-line-chart__point {
	position: relative;
	z-index: 2;
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--decoder-accent);
	cursor: default;
}

.decoder-line-chart__point span {
	position: absolute;
	bottom: calc(100% + 4px);
	left: 50%;
	z-index: 4;
	display: none;
	width: max-content;
	max-width: 120px;
	padding: 2px 3px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
	white-space: nowrap;
	transform: translateX(-50%);
}

.decoder-line-chart__point:hover span,
.decoder-line-chart__point:focus-visible span {
	display: block;
}

.decoder-line-chart__labels {
	position: absolute;
	top: 50.71px;
	left: 0;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	width: 226px;
}

.decoder-line-chart__labels span {
	margin: 0;
	color: var(--decoder-text-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	white-space: nowrap;
}

.decoder-block-line-chart__source {
	margin: 0;
	color: var(--decoder-text-tertiary);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

.decoder-single-content .decoder-block-data-table {
	margin: 40px 0;
}

.decoder-block-data-table {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.decoder-block-data-table__intro {
	width: 100%;
	color: var(--decoder-text-primary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-data-table__intro p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.decoder-block-data-table__wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-single-content .decoder-block-data-table table,
.decoder-block-data-table table {
	display: table;
	width: auto;
	margin: 0;
	overflow: visible;
	border-collapse: collapse;
	color: var(--decoder-text-secondary);
	table-layout: fixed;
}

.decoder-block-data-table th,
.decoder-block-data-table td {
	width: 100px;
	padding: 8px 4px;
	border: 1px solid var(--decoder-border-strong);
	text-align: center;
}

.decoder-block-data-table th {
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-block-data-table td {
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	white-space: nowrap;
}

.decoder-block-data-table__source {
	width: 100%;
	margin: 0;
	color: var(--decoder-text-tertiary);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

.decoder-single-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	color: var(--decoder-text-secondary);
}

.decoder-single-content th,
.decoder-single-content td {
	padding: 12px;
	border: 1px solid var(--decoder-border-strong);
	text-align: left;
}

.decoder-single-content .decoder-block-data-table table {
	display: table;
	width: max-content;
	overflow: visible;
}

.decoder-single-content .decoder-block-data-table th,
.decoder-single-content .decoder-block-data-table td {
	width: 100px;
	padding: 8px 4px;
	text-align: center;
}

.decoder-single-content .decoder-block-timeline {
	margin: 40px 0;
}

.decoder-block-timeline {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.decoder-single-content .decoder-block-timeline__title,
.decoder-block-timeline__title {
	width: 100%;
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0;
}

.decoder-block-timeline__body {
	position: relative;
	width: 100%;
	padding: 1px 7px;
}

.decoder-block-timeline__body::before {
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: 14px;
	width: 2px;
	background: var(--decoder-border-strong);
	content: "";
}

.decoder-block-timeline__list {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.decoder-single-content .decoder-block-timeline__list {
	margin: 0;
	padding-left: 0;
}

.decoder-block-timeline__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	width: 100%;
}

.decoder-single-content .decoder-block-timeline__item + .decoder-block-timeline__item {
	margin-top: 0;
}

.decoder-block-timeline__date {
	display: flex;
	flex: 0 0 92px;
	gap: 16px;
	align-items: center;
}

.decoder-block-timeline__dot {
	display: block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	border-radius: 1000px;
	background: var(--decoder-accent);
}

.decoder-block-timeline__year {
	width: 60px;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-timeline__text {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-single-content .decoder-block-audio {
	box-sizing: border-box;
	width: 100%;
	margin: 32px 0;
}

.decoder-block-audio {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 24px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
}

.decoder-block-audio__native { display: none; }

.decoder-block-audio__progress-row,
.decoder-block-audio__details {
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.decoder-block-audio__progress-row { gap: 24px; align-items: center; }

.decoder-block-audio__play,
.decoder-block-audio__download {
	box-sizing: border-box;
	display: flex;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--decoder-text-secondary);
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}

.decoder-block-audio__play:hover,
.decoder-block-audio__play:focus-visible { border-color: #60a5fa; }

.decoder-block-audio__play-icon { display: block; width: 24px; height: 24px; }

.decoder-block-audio__play-icon--play-hover,
.decoder-block-audio__download-icon--hover { display: none !important; }

.decoder-block-audio.is-playing .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio.is-loading .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio.is-error .decoder-block-audio__play-icon--play-hover { display: none !important; }

.decoder-block-audio__play:hover .decoder-block-audio__play-icon--play,
.decoder-block-audio__play:focus-visible .decoder-block-audio__play-icon--play,
.decoder-block-audio__download:hover .decoder-block-audio__download-icon--default,
.decoder-block-audio__download:focus-visible .decoder-block-audio__download-icon--default { display: none; }

.decoder-block-audio__play:hover .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio__play:focus-visible .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio__download:hover .decoder-block-audio__download-icon--hover,
.decoder-block-audio__download:focus-visible .decoder-block-audio__download-icon--hover { display: block !important; }

.decoder-block-audio.is-playing .decoder-block-audio__play:hover .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio.is-playing .decoder-block-audio__play:focus-visible .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio.is-loading .decoder-block-audio__play:hover .decoder-block-audio__play-icon--play-hover,
.decoder-block-audio.is-error .decoder-block-audio__play:hover .decoder-block-audio__play-icon--play-hover { display: none !important; }

.decoder-block-audio__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid var(--decoder-text-muted);
	border-top-color: var(--decoder-text-secondary);
	border-radius: 50%;
	animation: decoder-audio-spin 0.8s linear infinite;
}

@keyframes decoder-audio-spin {
	to { transform: rotate(360deg); }
}

.decoder-block-audio__play-icon--pause,
.decoder-block-audio.is-playing .decoder-block-audio__play-icon--play,
.decoder-block-audio.is-loading .decoder-block-audio__play-icon,
.decoder-block-audio.is-error .decoder-block-audio__play-icon { display: none !important; }

.decoder-block-audio.is-playing .decoder-block-audio__play { border-color: #2563eb; }
.decoder-block-audio.is-playing .decoder-block-audio__play-icon--pause { display: block !important; }
.decoder-block-audio.is-loading .decoder-block-audio__spinner { display: block; }

.decoder-block-audio__progress-group { flex: 1 1 auto; min-width: 0; }

.decoder-block-audio__progress-line {
	display: flex;
	gap: 12px;
	align-items: center;
	width: 100%;
	min-height: 25px;
}

.decoder-block-audio__current,
.decoder-block-audio__duration {
	flex: 0 0 auto;
	color: var(--decoder-text-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	white-space: nowrap;
}

.decoder-block-audio__current { width: 42px; text-align: center; }

.decoder-block-audio__range {
	--audio-progress: 0%;
	flex: 1 1 auto;
	min-width: 0;
	height: 16px;
	margin: 0;
	padding: 0;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

.decoder-block-audio__range::-webkit-slider-runnable-track {
	height: 6px;
	border: 0;
	border-radius: 0;
	background: linear-gradient(to right, var(--decoder-accent) var(--audio-progress), var(--decoder-text-muted) var(--audio-progress));
}

.decoder-block-audio__range::-moz-range-track { height: 6px; border: 0; background: var(--decoder-text-muted); }
.decoder-block-audio__range::-moz-range-progress { height: 6px; background: var(--decoder-accent); }

.decoder-block-audio__range::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	margin-top: -5px;
	border: 0;
	border-radius: 50%;
	background: var(--decoder-text-secondary);
	appearance: none;
}

.decoder-block-audio__range::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: var(--decoder-text-secondary);
}

.decoder-block-audio__status {
	margin: 0;
	color: var(--decoder-text-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

.decoder-block-audio.is-error .decoder-block-audio__status { color: #ef4444; }
.decoder-block-audio.is-error .decoder-block-audio__play { border-color: #ef4444; }

.decoder-block-audio__details { gap: 36px; }
.decoder-block-audio__copy { flex: 1 1 auto; min-width: 0; }

.decoder-single-content .decoder-block-audio__copy h2,
.decoder-block-audio__copy h2 {
	margin: 0 0 12px;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-audio__length {
	display: block;
	color: var(--decoder-text-tertiary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-audio__download {
	border-color: transparent;
	background: var(--decoder-bg-elevated);
}

.decoder-block-audio__download:hover,
.decoder-block-audio__download:focus-visible { border-color: var(--decoder-border-strong); }
.decoder-block-audio__download[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.decoder-single-content .decoder-block-pdf {
	width: 100%;
	margin: 40px 0;
}

.decoder-single-content .decoder-block-pdf-card {
	margin: 40px 0;
}

.decoder-block-pdf-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	width: 100%;
	padding: 24px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
}

.decoder-block-pdf-card__info {
	display: flex;
	gap: 36px;
	align-items: flex-start;
	width: 100%;
}

.decoder-block-pdf-card__icon {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
}

.decoder-block-pdf-card__copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.decoder-block-pdf-card__copy h2 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	word-break: break-word;
}

.decoder-block-pdf-card__copy span {
	color: var(--decoder-text-tertiary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-pdf-card__download,
.decoder-block-pdf-card__view {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 0;
	background: var(--decoder-bg-elevated);
	cursor: pointer;
}

.decoder-block-pdf-card__download {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
}

.decoder-block-pdf-card__download:hover,
.decoder-block-pdf-card__download:focus-visible,
.decoder-block-pdf-card__view:hover,
.decoder-block-pdf-card__view:focus-visible {
	border-color: var(--decoder-text-secondary);
}

.decoder-block-pdf-card__download[aria-disabled="true"],
.decoder-block-pdf-card__view[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.decoder-block-pdf-card__view {
	gap: 10px;
	min-height: 40px;
	padding: 0 16px;
	border-color: var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-single-content .decoder-block-pdf-source {
	margin: 40px 0;
}

.decoder-block-pdf-source {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	width: 100%;
	padding: 24px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-primary);
}

.decoder-block-pdf-source__name {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
}

.decoder-block-pdf-source__name h2,
.decoder-block-pdf-source__name p {
	width: 100%;
	margin: 0;
	word-break: break-word;
}

.decoder-block-pdf-source__name h2 {
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-pdf-source__name p,
.decoder-block-pdf-source__link {
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-pdf-source__view {
	box-sizing: border-box;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 232px;
	height: 40px;
	padding: 0 16px;
	border: 1px solid var(--decoder-text-secondary);
	border-radius: 0;
	background: transparent;
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	cursor: pointer;
}

.decoder-block-pdf-source__view-icon--hover {
	display: none;
}

.decoder-block-pdf-source__view:hover,
.decoder-block-pdf-source__view:focus-visible {
	border-color: var(--decoder-text-secondary);
	background: var(--decoder-text-secondary);
	color: var(--decoder-bg-primary);
}

.decoder-block-pdf-source__view:hover .decoder-block-pdf-source__view-icon--default,
.decoder-block-pdf-source__view:focus-visible .decoder-block-pdf-source__view-icon--default {
	display: none;
}

.decoder-block-pdf-source__view:hover .decoder-block-pdf-source__view-icon--hover,
.decoder-block-pdf-source__view:focus-visible .decoder-block-pdf-source__view-icon--hover {
	display: block;
}

.decoder-block-pdf-source__view[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.decoder-block-pdf-source__divider {
	width: 100%;
	height: 1px;
	background: var(--decoder-border-strong);
}

.decoder-block-pdf-source__link {
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
}

.decoder-block-pdf-source__link a,
.decoder-block-pdf-source__link-text {
	min-width: 0;
	color: var(--decoder-text-tertiary);
	text-decoration: underline;
	text-underline-position: from-font;
	word-break: break-word;
}

.decoder-block-pdf-source__link a:hover,
.decoder-block-pdf-source__link a:focus-visible {
	color: #60a5fa;
}

.decoder-single-content .decoder-block-map {
	margin: 40px 0;
}

.decoder-block-map {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
}

.decoder-block-map__frame {
	width: 100%;
	height: 410px;
	overflow: hidden;
}

.decoder-block-map__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.decoder-block-map__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	line-height: 23px;
}

.decoder-block-map__caption {
	width: 100%;
	margin: 0;
	color: #66717e;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	word-break: break-word;
}

.decoder-block-pdf {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-block-pdf__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}

.decoder-single-content .decoder-block-pdf__heading h2,
.decoder-block-pdf__heading h2 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-pdf__switchers {
	display: flex;
	gap: 40px;
	height: 40px;
}

.decoder-block-pdf__switcher,
.decoder-block-pdf__zoom,
.decoder-pdf-modal__close,
.decoder-pdf-modal__download {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--decoder-text-secondary);
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}

.decoder-block-pdf__switcher {
	width: 40px;
	height: 40px;
}

.decoder-block-pdf__switcher--prev img { transform: rotate(180deg); }
.decoder-block-pdf__switcher:disabled { opacity: 0.4; cursor: default; }
.decoder-block-pdf__switcher:not(:disabled):hover,
.decoder-block-pdf__switcher:not(:disabled):focus-visible { border-color: #60a5fa; }

.decoder-block-pdf__scroller {
	width: 100%;
	overflow: hidden;
	scroll-behavior: smooth;
}

.decoder-block-pdf__pages {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 51px;
	width: max-content;
}

.decoder-block-pdf__page-card {
	position: relative;
	display: flex;
	flex: 0 0 210px;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
	width: 210px;
}

.decoder-block-pdf__page {
	position: relative;
	width: 210px;
	height: 297.176px;
	padding: 0;
	border: 0;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
}

.decoder-block-pdf__paper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 168px;
	height: 250px;
	margin: 0 auto;
	background: #fff;
}

.decoder-block-pdf__paper canvas {
	display: block;
	width: 168px;
	height: 250px;
}

.decoder-block-pdf__empty {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--decoder-text-muted);
	font-size: 12px;
	transform: translate(-50%, -50%);
}

.decoder-block-pdf__count {
	width: 100%;
	color: var(--decoder-text-tertiary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	text-align: center;
}

.decoder-block-pdf__zoom {
	position: absolute;
	right: 10px;
	bottom: 51px;
	width: 40px;
	height: 40px;
	border-color: transparent;
	background: var(--decoder-bg-elevated);
}

.decoder-block-pdf__zoom:hover,
.decoder-block-pdf__zoom:focus-visible { border-color: var(--decoder-border-strong); }

.decoder-block-pdf__pagination { display: none; }

.decoder-pdf-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0;
	background: rgba(11, 15, 20, 0.82);
}

.decoder-pdf-modal[hidden] { display: none; }

body.decoder-pdf-modal-open { overflow: hidden; }

.decoder-pdf-modal__dialog {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 732px;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
}

.decoder-pdf-modal__header {
	box-sizing: border-box;
	display: flex;
	gap: 50px;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 71px;
	padding: 12px 16px;
	background: var(--decoder-bg-elevated);
}

.decoder-pdf-modal__file {
	display: flex;
	flex: 1 1 auto;
	gap: 16px;
	align-items: flex-start;
	min-width: 0;
}

.decoder-pdf-modal__file > img { flex: 0 0 40px; width: 40px; height: 40px; }

.decoder-pdf-modal__file > div {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.decoder-pdf-modal__file strong {
	color: var(--decoder-text-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	word-break: break-word;
}

.decoder-pdf-modal__file span {
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-pdf-modal__download,
.decoder-pdf-modal__close {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-color: transparent;
	background: var(--decoder-bg-elevated);
}

.decoder-pdf-modal__download:hover,
.decoder-pdf-modal__download:focus-visible,
.decoder-pdf-modal__close:hover,
.decoder-pdf-modal__close:focus-visible { border-color: var(--decoder-border-strong); }

.decoder-pdf-modal__download[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.decoder-pdf-modal__docs {
	width: 100%;
	height: calc(100vh - 79px);
	overflow-x: hidden;
	overflow-y: auto;
	background: transparent;
}

.decoder-pdf-modal__page {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 732px;
	min-height: 842px;
	padding-top: 56px;
	background: #fff;
}

.decoder-pdf-modal__page canvas {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.decoder-pdf-modal__fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: calc(100vh - 79px);
	border: 0;
	background: var(--decoder-white);
}

.decoder-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 293px;
}

.decoder-single-cta {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 293px;
	padding: 24px;
}

.decoder-single-cta h2,
.decoder-single-cta p {
	margin: 0;
}

.decoder-single-cta h2 {
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-single-cta p {
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-single-cta .decoder-button {
	width: max-content;
}

.decoder-single-cta--submit {
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
}

.decoder-single-cta--submit h2 {
	color: var(--decoder-text-primary);
}

.decoder-single-cta--submit p:last-child {
	color: var(--decoder-text-tertiary);
}

.decoder-single-cta--support {
	background: var(--decoder-text-secondary);
	color: var(--decoder-border-strong);
}

.decoder-single-cta--support h2 {
	color: var(--decoder-bg-primary);
}

.decoder-single-related {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.decoder-single-related h2 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
}

.decoder-single-related__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.decoder-single-related-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--decoder-border-strong);
}

.decoder-single-related-card:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.decoder-single-related-card h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.decoder-single-related-card h3 a {
	color: inherit;
}

.decoder-single-related-card__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	line-height: 23px;
}

.decoder-single-related-card__meta a {
	color: inherit;
	text-decoration: underline;
	text-underline-position: from-font;
}

.decoder-single-tags {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin-top: 40px;
}

.decoder-single-tags__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.decoder-single-tags__heading h2,
.decoder-single-more__heading h2 {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
}

.decoder-single-more {
	padding: 100px 0;
	background: var(--decoder-bg-primary);
	padding-top: 0px;
}

.decoder-single-more__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.decoder-share-popover {
	position: fixed;
	z-index: 110;
	display: block;
}

.decoder-share-popover[hidden] {
	display: none;
}

.decoder-share-popover__box {
	display: flex;
	gap: 16px;
	align-items: center;
	width: max-content;
	padding: 24px;
	border: 1px solid var(--decoder-border-strong);
	background: var(--decoder-bg-elevated);
	    margin-top: 46px;
}

.decoder-image-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 80px;
	background: rgba(11, 15, 20, 0.9);
}

.decoder-image-modal[hidden] {
	display: none;
}

body.decoder-modal-open {
	overflow: hidden;
}

.decoder-image-modal__dialog {
	position: relative;
	width: min(1036px, calc(100vw - 160px));
}

.decoder-image-modal__dialog > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: calc(100vh - 160px);
	object-fit: contain;
}

.decoder-image-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
}

.decoder-image-modal__prev,
.decoder-image-modal__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.decoder-image-modal__prev {
	left: -60px;
}

.decoder-image-modal__prev img {
	transform: rotate(180deg);
}

.decoder-image-modal__next {
	right: -60px;
}

.decoder-desktop-menu {
	position: fixed;
	inset: 0;
	z-index: 999;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
	opacity: 0;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.decoder-desktop-menu.is-open {
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
}

.decoder-desktop-menu__panel {
	width: 100%;
	min-height: 528px;
	padding: 60px 0;
	background: var(--decoder-bg-overlay);
	color: var(--decoder-text-secondary);
	transform: translateY(-12px);
	transition: transform 180ms ease;
}

.decoder-desktop-menu.is-open .decoder-desktop-menu__panel {
	transform: translateY(0);
}

.decoder-desktop-menu__top {
	display: flex;
	align-items: center;
	gap: 160px;
	width: 100%;
}

.decoder-desktop-menu__search {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}

.decoder-desktop-menu__search input {
	width: 100%;
	height: 40px;
	border: 1px solid var(--decoder-text-muted);
	border-radius: 0;
	background: transparent;
	color: var(--decoder-text-primary);
	padding: 10px 12px;
	font-size: 15px;
	line-height: 23px;
	outline: none;
}

.decoder-desktop-menu__search input::placeholder {
	color: var(--decoder-text-muted);
	opacity: 1;
}

.decoder-desktop-menu__content {
	display: flex;
	align-items: flex-start;
	    justify-content: space-between;
	width: 100%;
	margin-top: 120px;
}

.decoder-desktop-menu__nav {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	flex: 0 0 424px;
}

.decoder-desktop-menu__aside {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 459px;
	flex: 0 0 459px;
}

.decoder-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 1000;
	visibility: hidden;
	pointer-events: none;
}

.decoder-mobile-menu.is-open {
	visibility: visible;
	pointer-events: auto;
}

.decoder-mobile-menu__panel {
	width: 360px;
	max-width: 100%;
	min-height: 100vh;
	max-height: 100vh;
	overflow-y: auto;
	padding: 10px 12px 24px;
	background: var(--decoder-bg-overlay);
	color: var(--decoder-text-secondary);
	transform: translateX(-100%);
	transition: transform 180ms ease;
}

.decoder-mobile-menu.is-open .decoder-mobile-menu__panel {
	transform: translateX(0);
}

.decoder-mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.decoder-mobile-menu__search {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.decoder-mobile-menu__search input,
.decoder-newsletter input {
	width: 100%;
	height: 40px;
	border: 1px solid var(--decoder-text-muted);
	border-radius: 0;
	background: transparent;
	color: var(--decoder-text-primary);
	padding: 10px 12px;
	font-size: 15px;
	line-height: 23px;
	outline: none;
}

.decoder-mobile-menu__search input::placeholder,
.decoder-newsletter input::placeholder {
	color: var(--decoder-text-muted);
	opacity: 1;
}

.decoder-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.decoder-mobile-menu__buttons {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.decoder-mobile-menu__buttons .decoder-button {
	flex: 1 1 0;
	padding-inline: 12px;
}

.decoder-mobile-menu__social {
	margin-top: 24px;
}

.decoder-mobile-menu__social p,
.decoder-footer__social p,
.decoder-footer__newsletter p {
	margin: 0;
	color: var(--decoder-white);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
}

.decoder-mobile-menu__social p {
	font-size: 15px;
	line-height: 22px;
}

.decoder-footer {
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
	padding: 50px 0 40px;
}

.decoder-footer__intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 80px;
}

.decoder-footer__intro p {
	width: 567px;
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
}

.decoder-footer__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
	min-height: 240px;
	margin-bottom: 40px;
}

.decoder-footer__menus {
	display: flex;
	gap: 100px;
	flex: 1 1 auto;
}

.decoder-footer__nav-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.decoder-footer__nav-title {
	margin: 0;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	white-space: nowrap;
}

.decoder-menu-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
}

.decoder-menu-list a {
	display: flex;
	align-items: center;
	min-height: 36px;
	color: var(--decoder-text-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-menu-list a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-footer__aside {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 459px;
	flex: 0 0 459px;
}

.decoder-footer__social,
.decoder-footer__newsletter {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.decoder-social {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}

.decoder-newsletter {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.decoder-newsletter input {
	flex: 1 1 auto;
	min-width: 0;
}

.decoder-newsletter .decoder-button {
	border: 0;
}

.decoder-footer__policy {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--decoder-border-strong);
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-footer__policy p {
	margin: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
	border: 0;
}

.screen-reader-text:focus {
	top: 5px;
	left: 5px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	clip: auto !important;
	background: var(--decoder-text-primary);
	color: var(--decoder-bg-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
}

@media (max-width: 900px) {
	.decoder-category-nav,
	.decoder-desktop-menu {
		display: none;
	}

	.decoder-container {
		width: calc(100% - 24px);
	}

	.decoder-header__inner {
		min-height: 54px;
	}

	.decoder-header__menu-toggle {
		display: inline-flex;
	}

	.decoder-header__logo-desktop,
	.decoder-header__desktop-menu,
	.decoder-header__search--desktop,
	.decoder-header__submit,
	.decoder-header__actions .decoder-language {
		display: none;
	}

	.decoder-header__search--mobile {
		display: inline-flex;
	}

	.decoder-header__logo-mobile {
		display: block;
		width: 99px;
		height: 25px;
	}

	.decoder-header__actions {
		gap: 14px;
	}

	.decoder-header__actions .decoder-button {
		padding-inline: 16px;
	}

	.decoder-latest-news__inner {
		gap: 32px;
		padding: 16px 0 36px;
	}

	.decoder-featured-article {
		flex-direction: column;
		gap: 16px;
	}

	.decoder-featured-article__media {
		width: 100%;
		height: auto;
		aspect-ratio: 336 / 220;
		flex-basis: auto;
	}

	.decoder-featured-article__content {
		gap: 16px;
	}

	.decoder-featured-article__title {
        font-size: 30px;
        line-height: 36px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
	}

	.decoder-featured-article__excerpt {
		-webkit-line-clamp: 6;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 23px;
	}

	.decoder-latest-news__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.decoder-news-card {
		min-height: 0;
		gap: 12px;
		padding-top: 16px;
		padding-bottom: 16px;
		border-top: 1px solid var(--decoder-border-strong);
	}

	.decoder-news-card + .decoder-news-card {
		padding-left: 0;
	}

	.decoder-news-card:nth-child(n+2)::before {
		display: none;
	}

	.decoder-news-card__title {
		max-height: 44px;
		font-size: 15px;
		line-height: 22px;
		-webkit-line-clamp: 2;
	}

	.decoder-category-news__inner {
		gap: 24px;
		padding: 36px 0;
	}

	.decoder-section-heading {
		display: contents;
	}

	.decoder-section-heading h2 {
		order: 0;
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-section-link {
		order: 2;
		justify-content: flex-end;
		width: 100%;
		height: 40px;
	}

	.decoder-category-news .decoder-section-link {
		height: 24px;
	}

	.decoder-category-news__layout {
		order: 1;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.decoder-category-news-card--image {
		width: 100%;
		min-height: 331px;
	}

	.decoder-category-news-card__media {
		height: auto;
		aspect-ratio: 336 / 182;
	}

	.decoder-category-news-card--image .decoder-category-news-card__content {
		min-height: 133px;
	}

	.decoder-category-news-list {
		gap: 0;
	}

	.decoder-category-news-card--compact {
		min-height: 0;
		padding-top: 24px;
		border-top: 1px solid var(--decoder-border-strong);
	}

	.decoder-category-news-card--compact + .decoder-category-news-card--compact {
		padding-top: 24px;
		margin-top: 24px;
	}

	.decoder-investigations__inner {
		gap: 24px;
		padding: 36px 0;
	}

	.decoder-investigations__grid {
		order: 1;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.decoder-investigation-card {
		width: 100%;
		min-height: 331px;
	}

	.decoder-investigation-card__media {
		height: auto;
		aspect-ratio: 336 / 183;
	}

	.decoder-investigation-card__content {
		min-height: 132px;
	}

	.decoder-investigation-card__title {
		max-height: 69px;
		font-size: 18px;
		line-height: 23px;
	}

	.decoder-home-subscription {
		padding-bottom: 0;
	}

	.decoder-subscription-box {
		min-height: 392px;
	}

	.decoder-subscription-box__content {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		min-height: 0;
		padding: 24px 16px;
	}

	.decoder-subscription-box__description,
	.decoder-subscription-box__social {
		flex: 0 1 auto;
		width: 100%;
	}

	.decoder-subscription-box__description h2 {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-subscription-box__description p {
		width: 100%;
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-subscription-box__divider {
		width: 100%;
		height: 1px;
	}

	.decoder-subscription-box__social h3 {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-subscription-form,
	.decoder-subscription-box__shortcode form {
		width: 100%;
	}

	.decoder-analytics__inner {
		gap: 24px;
		padding: 36px 0;
	}

	.decoder-analytics__grid {
		order: 1;
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.decoder-analytics-card {
		width: 100%;
		flex-direction: column;
		gap: 16px;
		min-height: 331px;
	}

	.decoder-analytics-card:nth-child(n+2) {
		padding-top: 0;
		border-top: 1px solid var(--decoder-border-strong);
	}

	.decoder-analytics-card__media {
		width: 100%;
		height: auto;
		aspect-ratio: 336 / 193;
		flex-basis: auto;
	}

	.decoder-analytics-card__content {
		min-height: 122px;
	}

	.decoder-analytics-card__title {
		max-height: 69px;
		-webkit-line-clamp: 3;
	}

	.decoder-factchecking__inner {
		gap: 24px;
		padding: 0 0 36px;
	}

	.decoder-factchecking__top {
		gap: 24px;
	}

	.decoder-factchecking__top h2 {
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-factchecking__intro {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.decoder-factchecking__intro p {
		width: 100%;
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-factchecking__content {
		grid-template-columns: 1fr;
		gap: 32px;
		min-height: 0;
	}

	.decoder-factchecking-featured {
		width: 100%;
	}

	.decoder-factchecking-featured__media {
		height: auto;
		aspect-ratio: 336 / 188;
	}

	.decoder-factchecking-featured__title {
		font-size: 24px;
		line-height: 32px;
	}

	.decoder-factchecking-item {
		min-height: 0;
		padding-bottom: 0;
	}

	.decoder-factchecking-item + .decoder-factchecking-item {
		padding-top: 24px;
		margin-top: 24px;
	}

	.decoder-donate {
		padding-bottom: 0;
	}

	.decoder-donate__box {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		min-height: 0;
		padding: 24px 16px 16px;
	}

	.decoder-donate__content {
		gap: 16px;
	}

	.decoder-donate__content h2 {
		font-size: 22px;
		line-height: 28px;
	}

	.decoder-donate__content p {
		font-size: 16px;
		line-height: 25px;
	}

	.decoder-donate__media {
		display: none;
	}

	.decoder-donate__media img {
		height: 100%;
		object-fit: contain;
	}

	.decoder-popular__inner {
		gap: 24px;
		padding: 36px 0;
	}

	.decoder-popular__heading {
		align-items: center;
	}

	.decoder-popular__heading h2 {
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-popular__controls {
		gap: 60px;
		justify-content: center;
		width: 100%;
	}

	.decoder-popular__controls--desktop {
		display: none;
	}

	.decoder-popular__controls--mobile {
		display: flex;
	}

	.decoder-popular-card:nth-child(n+2) {
		padding-top: 16px;
		border-top: 1px solid var(--decoder-border-strong);
	}

	.decoder-popular .owl-dots {
		display: none;
	}

	.decoder-category-hero__inner {
		gap: 24px;
		padding: 16px 0 0;
	}

	.decoder-breadcrumbs {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-category-hero__intro {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.decoder-category-hero__intro h1 {
		font-size: 30px;
		line-height: 36px;
	}

	.decoder-category-hero__intro p {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-category-tags__heading {
		align-items: flex-start;
	}

	.decoder-category-tags__heading h2 {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-category-tags__controls {
		display: none;
	}

	.decoder-category-tags__scroller {
		align-items: flex-start;
		flex-wrap: wrap;
		max-height: 136px;
		overflow: hidden;
	}

	.decoder-category-archive__inner {
		gap: 32px;
		padding: 36px 0 0;
	}

	.decoder-category-sort {
		width: 304px;
	}

	.decoder-category-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.decoder-category-card {
		width: 100%;
		gap: 12px;
		min-height: 0;
	}

	.decoder-category-card__media {
		height: auto;
		aspect-ratio: 336 / 220;
	}

	.decoder-category-card__content {
		gap: 12px;
		min-height: 0;
	}

	.decoder-category-card__title {
		max-height: 44px;
		font-size: 15px;
		line-height: 22px;
		-webkit-line-clamp: 2;
	}

	.decoder-category-card .decoder-article-meta {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-pagination {
		width: 100%;
		margin-top: 0;
	}

	.decoder-category-page .decoder-home-subscription {
		padding: 0 0 36px;
	}

	.decoder-single-main {
		padding: 16px 0 36px;
	}

	.decoder-single-breadcrumbs {
		margin-bottom: 24px;
	}

	.decoder-single-layout {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.decoder-single-meta,
	.decoder-single-sidebar {
		position: static;
		width: 100%;
	}

	.decoder-single-meta {
		order: 1;
		gap: 24px;
	}

	.decoder-single-content-column {
		display: contents;
	}

	.decoder-single-header {
		order: 0;
		width: 100%;
	}

	.decoder-single-content {
		order: 2;
		width: 100%;
		margin-top: 0;
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-single-content-column {
		width: 100%;
	}

	.decoder-single-sidebar {
		order: 3;
		gap: 24px;
	}

	.decoder-single-meta__category {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-single-meta__details {
		gap: 16px;
	}

	.decoder-single-header h1 {
		font-size: 30px;
		line-height: 36px;
	}

	.decoder-single-featured button {
		height: auto;
		aspect-ratio: 336 / 220;
	}

	.decoder-single-content > * + * {
		margin-top: 32px;
	}

	.decoder-single-content .decoder-block-quote,
	.decoder-single-content .decoder-block-gallery {
		margin: 32px 0;
	}

	.decoder-block-quote {
		gap: 16px;
		padding: 8px 16px 16px;
	}

	.decoder-block-quote__icon {
		width: 40px;
		height: 40px;
	}

	.decoder-block-quote blockquote {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-quote figcaption {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-block-gallery {
		align-items: center;
		overflow: hidden;
	}

	.decoder-block-gallery__track {
		display: flex;
		gap: 16px;
		width: 100%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.decoder-block-gallery__track::-webkit-scrollbar {
		display: none;
	}

	.decoder-block-gallery__item {
		flex: 0 0 280px;
		width: 280px;
		height: 200px;
		scroll-snap-align: start;
	}

	.decoder-block-gallery figcaption {
		align-self: stretch;
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-block-gallery__dots {
		display: flex;
		gap: 4px;
		align-items: center;
		justify-content: center;
	}

	.decoder-block-gallery__dots button {
		position: relative;
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.decoder-block-gallery__dots button::before {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 4px;
		height: 4px;
		background: var(--decoder-border-strong);
		transform: translate(-50%, -50%);
		content: "";
	}

	.decoder-block-gallery__dots button.is-active::before {
		background: var(--decoder-text-secondary);
	}

	.decoder-block-gallery--preview {
		gap: 8px;
		overflow: hidden;
	}

	.decoder-block-gallery--preview .decoder-block-gallery__controls {
		display: none;
	}

	.decoder-block-gallery--preview .decoder-block-gallery__body {
		gap: 8px;
		width: 100%;
	}

	.decoder-block-gallery--preview .decoder-block-gallery__track {
		gap: 16px;
		height: 180px;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.decoder-block-gallery--preview .decoder-block-gallery__item {
		flex: 0 0 280px;
		width: 280px;
		height: 180px;
	}

	.decoder-block-gallery--preview .decoder-block-gallery__item--more::after,
	.decoder-block-gallery--preview .decoder-block-gallery__more-count {
		display: none;
	}

	.decoder-single-content .decoder-block-route {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-importance {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-column-charts {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-column-charts__title,
	.decoder-block-column-charts__title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-column-charts__grid {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.decoder-column-chart {
		width: 328px;
		max-width: 100%;
		flex-basis: auto;
	}

	.decoder-single-content .decoder-block-line-chart {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-line-chart__title,
	.decoder-block-line-chart__title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-line-chart {
		width: 328px;
		max-width: 100%;
	}

	.decoder-single-content .decoder-block-data-table {
		margin: 32px 0;
	}

	.decoder-block-data-table {
		gap: 16px;
	}

	.decoder-block-data-table__intro {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-single-content .decoder-block-data-table table,
	.decoder-block-data-table table {
		width: 100% !important;
		table-layout: fixed;
	}

	.decoder-block-data-table th,
	.decoder-block-data-table td {
		width: auto !important;
		min-width: 0;
	}

	.decoder-block-data-table td {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-single-content .decoder-block-timeline {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-timeline__title,
	.decoder-block-timeline__title {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-block-timeline__body::before {
		top: -8px;
		left: 13.7px;
		width: 2.6px;
	}

	.decoder-block-timeline__item {
		gap: 8px;
	}

	.decoder-block-timeline__year {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-timeline__text {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-route {
		gap: 16px;
	}

	.decoder-block-route__title {
		min-height: 26px;
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-single-content .decoder-block-route__title {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-block-route__list {
		flex-direction: column;
		gap: 4px;
		align-items: flex-start;
	}

	.decoder-block-route__stage {
		flex: 0 0 auto;
		flex-direction: row;
		gap: 16px;
		align-items: center;
		width: 100%;
	}

	.decoder-block-route__number {
		width: 50px;
		height: 50px;
		flex: 0 0 50px;
	}

	.decoder-block-route__stage p {
		display: block;
		flex: 1 1 0;
		min-width: 0;
		height: auto;
		text-align: left;
		-webkit-line-clamp: unset;
	}

	.decoder-block-route__connector {
		flex: 0 0 32px;
		width: 50px;
		height: 32px;
		padding-bottom: 0;
	}

	.decoder-block-route__connector::before,
	.decoder-block-route__connector::after {
		top: 50%;
		left: 50%;
	}

	.decoder-block-route__connector::before {
		width: 2px;
		height: 28px;
	}

	.decoder-block-route__connector::after {
		margin-top: 13px;
		margin-left: 0;
		border-top: 8px solid var(--decoder-text-muted);
		border-right: 6px solid transparent;
		border-bottom: 0;
		border-left: 6px solid transparent;
	}

	.decoder-single-content p:first-child,
	.decoder-single-content h3,
	.decoder-single-content h4 {
		font-size: 18px;
		line-height: 26px;
	}

	.decoder-single-content h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.decoder-single-cta {
		width: 100%;
	}

	.decoder-single-tags {
		margin-top: 36px;
	}

	.decoder-single-tags__heading h2,
	.decoder-single-more__heading h2,
	.decoder-single-related h2 {
		font-size: 21px;
		line-height: 30px;
	}

	.decoder-single-more {
		padding: 36px 0;
	}

	.decoder-single-more__heading {
		margin-bottom: 24px;
	}

	.decoder-share-popover {
		max-width: calc(100% - 48px);
	}

	.decoder-share-popover__box {
		flex-wrap: wrap;
		width: max-content;
		max-width: 100%;
	}

	.decoder-image-modal {
		padding: 24px;
	}

	.decoder-image-modal__dialog {
		width: 100%;
	}

	.decoder-image-modal__dialog > img {
		max-height: calc(100vh - 96px);
	}

	.decoder-image-modal__prev {
		left: 12px;
	}

	.decoder-image-modal__next {
		right: 12px;
	}

	.decoder-footer {
		padding: 36px 0 24px;
	}

	.decoder-footer__intro {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		margin-bottom: 24px;
	}

	.decoder-footer__intro p {
		width: 100%;
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-footer__content {
		flex-direction: column;
		gap: 24px;
		min-height: 0;
		margin-bottom: 24px;
	}

	.decoder-footer__menus {
		flex-direction: column;
		gap: 24px;
	}

	.decoder-footer__nav-block {
		gap: 4px;
	}

	.decoder-footer__nav-title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-menu-list a {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-footer__aside {
		width: 100%;
		flex-basis: auto;
		gap: 24px;
	}

	.decoder-footer__social,
	.decoder-footer__newsletter {
		gap: 16px;
	}

	.decoder-footer__social p,
	.decoder-footer__newsletter p {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-newsletter .decoder-button {
		padding-inline: 8px;
	}

	.decoder-footer__policy {
		flex-direction: column;
		gap: 16px;
		padding-top: 8px;
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-block-audio {
		gap: 16px;
		padding: 16px;
	}

	.decoder-block-audio__progress-row {
		gap: 24px;
	}

	.decoder-block-audio__details {
		gap: 8px;
	}

	.decoder-single-content .decoder-block-audio__copy h2,
	.decoder-block-audio__copy h2 {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-audio__length {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-single-content .decoder-block-pdf {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-pdf-card {
		margin: 32px 0;
	}

	.decoder-single-content .decoder-block-pdf-source {
		margin: 32px 0;
	}

	.decoder-block-pdf-source {
		gap: 16px;
		padding: 16px;
	}

	.decoder-block-pdf-source__name h2 {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-pdf-source__name p,
	.decoder-block-pdf-source__link {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-pdf-source__link {
		align-items: flex-start;
	}

	.decoder-single-content .decoder-block-map {
		margin: 32px 0;
	}

	.decoder-block-map__frame {
		height: auto;
		aspect-ratio: 732 / 430.407;
	}

	.decoder-block-map__caption {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-block-pdf-card {
		gap: 16px;
		padding: 16px;
	}

	.decoder-block-pdf-card__info {
		gap: 8px;
	}

	.decoder-block-pdf-card__copy h2 {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-pdf-card__copy span {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-single-content .decoder-block-pdf__heading h2,
	.decoder-block-pdf__heading h2 {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-pdf__switchers { display: none; }

	.decoder-block-pdf__scroller {
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		 scrollbar-width: none;
	}

	.decoder-block-pdf__scroller::-webkit-scrollbar { display: none; }

	.decoder-block-pdf__pages {
		justify-content: flex-start;
		gap: 16px;
		width: max-content;
	}

	.decoder-block-pdf__page-card { scroll-snap-align: start; }
	.decoder-block-pdf__count {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-pdf__pagination {
		display: flex;
		gap: 4px;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 12px;
	}

	.decoder-block-pdf__pagination span {
		display: block;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: var(--decoder-border-strong);
	}

	.decoder-block-pdf__pagination span.is-active { background: var(--decoder-text-secondary); }

	.decoder-pdf-modal {
		padding: 0;
	}

	.decoder-pdf-modal__dialog {
		width: 100%;
		height: 100vh;
		max-height: 100vh;
	}

	.decoder-pdf-modal__header {
		gap: 12px;
		min-height: 71px;
		padding: 12px;
	}

	.decoder-pdf-modal__docs { height: calc(100vh - 79px); }

	.decoder-pdf-modal__page {
		width: 100%;
		min-height: 480px;
		padding-top: 24px;
	}

	.decoder-pdf-modal__page canvas {
		width: calc(100% - 32px);
		height: auto;
	}
}

@media (max-width: 359px) {
	.decoder-header__actions {
		gap: 8px;
	}

	.decoder-header__logo-mobile {
		width: 86px;
	}

	.decoder-header__actions .decoder-button {
		padding-inline: 10px;
	}

	.decoder-social {
		gap: 8px;
	}
}

.decoder-single-content .decoder-block-video {
	width: 100%;
	margin: 40px 0;
}

.decoder-block-video {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	aspect-ratio: 730 / 409;
	min-height: 0;
	overflow: hidden;
	background: var(--decoder-bg-elevated);
}

.decoder-block-video__ready,
.decoder-block-video__player,
.decoder-block-video__native,
.decoder-block-video__preview {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.decoder-block-video__ready {
	overflow: hidden;
}

.decoder-block-video__preview {
	object-fit: cover;
}

.decoder-block-video__player,
.decoder-block-video__native {
	border: 0;
	object-fit: cover;
}

.decoder-block-video__native {
	z-index: 2;
}

.decoder-block-video__player iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.decoder-block-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	padding: 0;
	border: 0;
	border-radius: 1000px;
	background: #cbd1d9;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.decoder-block-video__play img {
	display: block;
	width: 47.1824px;
	height: 47.1824px;
}

.decoder-block-video__play:hover,
.decoder-block-video__play:focus-visible {
	background: #f5f7fa;
}

.decoder-block-video__message {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 24px;
	border: 1px solid #4b545f;
	background: #212730;
	text-align: center;
}

.decoder-block-video__error-icon {
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 24px;
}

.decoder-block-video__error-title,
.decoder-block-video__error-text,
.decoder-block-video__unavailable-title,
.decoder-block-video__unavailable-text {
	margin: 0;
}

.decoder-block-video__error-title {
	color: #ef4444;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-video__error-text {
	margin-top: 4px;
	color: #ef4444;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-video__retry {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin-top: 24px;
	padding: 8px 16px;
	border: 1px solid #cbd1d9;
	border-radius: 0;
	background: transparent;
	color: #f5f7fa;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	cursor: pointer;
}

.decoder-block-video__retry:hover,
.decoder-block-video__retry:focus-visible {
	background: #cbd1d9;
	color: #0b0f14;
}

.decoder-block-video__retry img {
	display: block;
	width: 24px;
	height: 24px;
}

.decoder-block-video__unavailable-title {
	color: #f5f7fa;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
}

.decoder-block-video__unavailable-text {
	max-width: 560px;
	margin-top: 4px;
	color: #8e99a6;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-block-video.is-playing .decoder-block-video__preview,
.decoder-block-video.is-playing .decoder-block-video__play {
	display: none;
}

.decoder-block-video__ready[hidden],
.decoder-block-video__player[hidden],
.decoder-block-video__native[hidden],
.decoder-block-video__message[hidden] {
	display: none;
}

.decoder-single-content .decoder-block-social-post {
	margin: 48px 0;
}

.decoder-block-social-post {
	width: 100%;
	background: #212730;
	border: 1px solid #4b545f;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
	box-sizing: border-box;
}

.decoder-block-social-post__header,
.decoder-block-social-post__profile,
.decoder-block-social-post__link-row,
.decoder-block-social-post__stats,
.decoder-block-social-post__stat,
.decoder-block-social-post__read,
.decoder-block-social-post__source,
.decoder-block-social-post__retry {
	display: flex;
	align-items: center;
}

.decoder-block-social-post__header {
	width: 100%;
	align-items: flex-start;
	gap: 24px;
}

.decoder-block-social-post__profile {
	flex: 1 1 auto;
	min-width: 0;
	align-items: flex-start;
	gap: 16px;
}

.decoder-block-social-post__avatar {
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	border-radius: 50%;
	border: 1px solid #4b545f;
	overflow: hidden;
	background: #29313b;
	display: flex;
	align-items: center;
	justify-content: center;
}

.decoder-block-social-post__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.decoder-block-social-post__avatar span {
	color: #f5f7fa;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.decoder-block-social-post__identity {
	align-self: stretch;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.decoder-block-social-post__identity strong {
	color: #f5f7fa;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-social-post__identity span {
	color: #8e99a6;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-social-post__source {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	justify-content: center;
	border: 1px solid #cbd1d9;
	background: transparent;
	transition: border-color 0.2s ease;
}

.decoder-block-social-post__source:hover,
.decoder-block-social-post__source:focus-visible {
	border-color: #60a5fa;
}

.decoder-block-social-post__source img {
	width: 24px;
	height: 24px;
	display: block;
}

.decoder-block-social-post__link-row {
	width: 100%;
	gap: 24px;
}

.decoder-block-social-post__url {
	flex: 1 1 auto;
	min-width: 0;
	color: #8e99a6;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s ease;
}

.decoder-block-social-post__read {
	flex: 0 0 auto;
	height: 40px;
	gap: 8px;
	color: #3b82f6;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.decoder-block-social-post__read img {
	width: 24px;
	height: 24px;
	display: block;
}

.decoder-block-social-post__url:hover,
.decoder-block-social-post__url:focus-visible,
.decoder-block-social-post__read:hover,
.decoder-block-social-post__read:focus-visible {
	color: #60a5fa;
}

.decoder-block-social-post__divider {
	width: 100%;
	height: 1px;
	background: #4b545f;
}

.decoder-block-social-post__stats {
	width: 100%;
	gap: 36px;
}

.decoder-block-social-post__stat {
	gap: 8px;
	color: #8e99a6;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-block-social-post__stat span {
	width: 24px;
	height: 24px;
	display: block;
}

.decoder-block-social-post__stat svg {
	width: 24px;
	height: 24px;
	display: block;
	fill: #9aa5b1;
}

.decoder-block-social-post__stat b {
	font-weight: 400;
}

.decoder-block-social-post__message {
	width: 100%;
	color: #cbd1d9;
}

.decoder-block-social-post__message--error {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-top: 4px;
	color: #ef4444;
}

.decoder-block-social-post__message-copy {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.decoder-block-social-post__warning {
	position: relative;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.decoder-block-social-post__warning::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: 18px;
	height: 18px;
	background: #ef4444;
	clip-path: polygon(50% 4%, 96% 88%, 4% 88%);
}

.decoder-block-social-post__warning::after {
	content: "!";
	position: absolute;
	inset: 3px 0 0;
	color: #212730;
	font-size: 12px;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
}

.decoder-block-social-post__message strong {
	display: block;
	color: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	margin: 0 0 8px;
}

.decoder-block-social-post__message p {
	color: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
	margin: 0;
}

.decoder-block-social-post__message--unavailable {
	padding: 2px 0;
}

.decoder-block-social-post__message--unavailable strong {
	color: #f5f7fa;
}

.decoder-block-social-post__message--unavailable p {
	color: #cbd1d9;
}

.decoder-block-social-post__retry {
	min-height: 40px;
	padding: 0 16px;
	justify-content: center;
	gap: 10px;
	border: 1px solid #cbd1d9;
	color: #cbd1d9;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.decoder-block-social-post__retry:hover,
.decoder-block-social-post__retry:focus-visible {
	border-color: #60a5fa;
	color: #60a5fa;
}

.decoder-block-social-post__retry img {
	width: 24px;
	height: 24px;
	display: block;
}

.decoder-single-content .decoder-block-external-embed {
	margin: 48px 0;
}

.decoder-block-external-embed {
	width: 100%;
	background: #212730;
	border: 1px solid #4b545f;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
	box-sizing: border-box;
}

.decoder-block-external-embed__header,
.decoder-block-external-embed__profile,
.decoder-block-external-embed__date-row,
.decoder-block-external-embed__footer,
.decoder-block-external-embed__stat,
.decoder-block-external-embed__read,
.decoder-block-external-embed__source,
.decoder-block-external-embed__share,
.decoder-block-external-embed__retry {
	display: flex;
	align-items: center;
}

.decoder-block-external-embed__header {
	width: 100%;
	align-items: flex-start;
	gap: 24px;
}

.decoder-block-external-embed__profile {
	flex: 1 1 auto;
	min-width: 0;
	align-items: flex-start;
	gap: 16px;
}

.decoder-block-external-embed__avatar {
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	border-radius: 50%;
	border: 1px solid #4b545f;
	overflow: hidden;
	background: #3b424c;
	display: flex;
	align-items: center;
	justify-content: center;
}

.decoder-block-external-embed__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.decoder-block-external-embed__avatar span {
	color: #f5f7fa;
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.decoder-block-external-embed__identity {
	align-self: stretch;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.decoder-block-external-embed__identity strong {
	color: #cbd1d9;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-external-embed__identity span {
	color: #8e99a6;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-external-embed__source {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	justify-content: center;
	background: transparent;
	transition: border-color 0.2s ease;
}

.decoder-block-external-embed__source img,
.decoder-block-external-embed__read img,
.decoder-block-external-embed__share img,
.decoder-block-external-embed__retry img {
	width: 24px;
	height: 24px;
	display: block;
}

.decoder-block-external-embed__title {
	width: 100%;
	color: #f5f7fa;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s ease;
}

.decoder-block-external-embed__date-row {
	width: 100%;
	gap: 24px;
}

.decoder-block-external-embed__date-row > span {
	flex: 1 1 auto;
	min-width: 0;
	color: #8e99a6;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-external-embed__read {
	height: 40px;
	flex: 0 0 auto;
	gap: 8px;
	color: #3b82f6;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.decoder-block-external-embed__title:hover,
.decoder-block-external-embed__title:focus-visible,
.decoder-block-external-embed__read:hover,
.decoder-block-external-embed__read:focus-visible {
	color: #60a5fa;
}

.decoder-block-external-embed__divider {
	width: 100%;
	height: 1px;
	background: #4b545f;
}

.decoder-block-external-embed__footer {
	width: 100%;
	justify-content: space-between;
}

.decoder-block-external-embed__stat {
	gap: 8px;
	color: #8e99a6;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-block-external-embed__stat svg {
	width: 24px;
	height: 24px;
	fill: #cbd1d9;
	display: block;
}

.decoder-block-external-embed__stat b {
	font-weight: 400;
}

.decoder-block-external-embed__share {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	justify-content: center;
	border: 1px solid #cbd1d9;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.decoder-block-external-embed__share:hover,
.decoder-block-external-embed__share:focus-visible {
	border-color: #60a5fa;
}

.decoder-block-external-embed__message {
	width: 100%;
	color: #cbd1d9;
}

.decoder-block-external-embed__message--error {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	color: #ef4444;
}

.decoder-block-external-embed__message-copy {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.decoder-block-external-embed__warning {
	position: relative;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.decoder-block-external-embed__warning::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: 18px;
	height: 18px;
	background: #ef4444;
	clip-path: polygon(50% 4%, 96% 88%, 4% 88%);
}

.decoder-block-external-embed__warning::after {
	content: "!";
	position: absolute;
	inset: 3px 0 0;
	color: #212730;
	font-size: 12px;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
}

.decoder-block-external-embed__message strong {
	display: block;
	color: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	margin: 0 0 8px;
}

.decoder-block-external-embed__message p {
	color: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
	margin: 0;
}

.decoder-block-external-embed__message--unavailable strong {
	color: #f5f7fa;
}

.decoder-block-external-embed__message--unavailable p {
	color: #cbd1d9;
}

.decoder-block-external-embed__retry {
	min-height: 40px;
	padding: 0 16px;
	justify-content: center;
	gap: 10px;
	border: 1px solid #cbd1d9;
	color: #cbd1d9;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.decoder-block-external-embed__retry:hover,
.decoder-block-external-embed__retry:focus-visible {
	border-color: #60a5fa;
	color: #60a5fa;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-video {
		margin: 32px 0;
	}

	.decoder-block-video__error-title,
	.decoder-block-video__unavailable-title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-video__error-text,
	.decoder-block-video__unavailable-text {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-video__unavailable-text {
		max-width: 290px;
	}

	.decoder-single-content .decoder-block-social-post {
		margin: 40px 0;
	}

	.decoder-block-social-post {
		padding: 16px;
	}

	.decoder-block-social-post__header,
	.decoder-block-social-post__link-row {
		gap: 8px;
	}

	.decoder-block-social-post__stats {
		justify-content: space-between;
		gap: 12px;
	}

	.decoder-block-social-post__message--error {
		gap: 16px;
	}

	.decoder-block-social-post__message-copy {
		gap: 16px;
	}

	.decoder-block-social-post__message p {
		height: auto;
	}

	.decoder-single-content .decoder-block-external-embed {
		margin: 40px 0;
	}

	.decoder-block-external-embed {
		padding: 16px;
	}

	.decoder-block-external-embed__header {
		gap: 8px;
	}

	.decoder-block-external-embed__date-row {
		gap: 8px;
	}

	.decoder-block-external-embed__message-copy {
		gap: 16px;
	}

	.decoder-block-external-embed__message p {
		height: auto;
	}
}

.decoder-single-content .decoder-block-update-info {
	margin: 48px 0;
}

.decoder-block-update-info {
	width: 100%;
	box-sizing: border-box;
	padding: 24px;
	border: 1px solid #4b545f;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	word-break: break-word;
}

.decoder-block-update-info__heading,
.decoder-block-update-info__text {
	width: 100%;
}

.decoder-block-update-info__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.decoder-block-update-info__heading h2 {
	margin: 0;
	color: #f5f7fa;
	font-size: 21px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0;
}

.decoder-block-update-info__date {
	margin: 0;
	color: #8e99a6;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-update-info__text {
	color: #cbd1d9;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-update-info__text p {
	margin: 0;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-update-info {
		margin: 40px 0;
	}

	.decoder-block-update-info {
		padding: 16px;
	}

	.decoder-block-update-info__heading h2 {
		font-size: 16px;
		line-height: 24px;
	}

	.decoder-block-update-info__date,
	.decoder-block-update-info__text {
		font-size: 15px;
		line-height: 23px;
	}
}

.decoder-single-content .decoder-block-donate-card {
	margin: 48px 0;
}

.decoder-block-donate-card {
	width: 100%;
	box-sizing: border-box;
	padding: 24px;
	border: 1px solid #4b545f;
	background: #212730;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
}

.decoder-block-donate-card__copy {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.decoder-block-donate-card__copy h2 {
	margin: 0;
	color: #f5f7fa;
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 0;
}

.decoder-block-donate-card__copy p {
	width: 100%;
	margin: 0;
	color: #cbd1d9;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-donate-card__button {
	min-height: 40px;
	box-sizing: border-box;
	padding: 0 24px;
	background: #3b82f6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.decoder-block-donate-card__button:hover,
.decoder-block-donate-card__button:focus-visible {
	background: #60a5fa;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-donate-card {
		margin: 40px 0;
	}

	.decoder-block-donate-card {
		padding: 24px 16px 16px;
		gap: 16px;
	}

	.decoder-block-donate-card__copy {
		gap: 16px;
	}

	.decoder-block-donate-card__copy h2 {
		font-size: 22px;
		line-height: 28px;
	}

	.decoder-block-donate-card__copy p {
		font-size: 16px;
		line-height: 25px;
	}

	.decoder-block-donate-card__button {
		width: 100%;
	}
}

.decoder-single-content .decoder-block-accordion {
	margin: 40px 0;
}

.decoder-block-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-block-accordion__item {
	width: 100%;
	background: #212730;
}

.decoder-block-accordion__trigger {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
	padding: 16px 24px;
	border: 0;
	background: transparent;
	color: #f5f7fa;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.decoder-block-accordion__title {
	flex: 1 1 auto;
	min-width: 0;
	color: #f5f7fa;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-accordion__icon {
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: url("assets/icons/accordion-chevron-down.svg") center / 24px 24px no-repeat;
}

.decoder-block-accordion__item.is-open .decoder-block-accordion__icon {
	background-image: url("assets/icons/accordion-chevron-up.svg");
}

.decoder-block-accordion__item.is-open .decoder-block-accordion__trigger {
	padding-bottom: 0;
}

.decoder-block-accordion__panel {
	padding: 12px 24px 16px;
}

.decoder-block-accordion__panel[hidden] {
	display: none;
}

.decoder-block-accordion__text {
	color: #cbd1d9;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-accordion {
		margin: 40px 0;
	}

	.decoder-block-accordion__trigger {
		gap: 16px;
		padding: 16px 12px;
	}

	.decoder-block-accordion__title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-accordion__item.is-open .decoder-block-accordion__trigger {
		padding-bottom: 0;
	}

	.decoder-block-accordion__panel {
		padding: 12px 12px 16px;
	}

	.decoder-block-accordion__text {
		font-size: 15px;
		line-height: 23px;
	}
}

.decoder-single-content .decoder-block-read-more {
	margin: 40px 0;
}

.decoder-block-read-more {
	width: 100%;
}

.decoder-block-read-more__content {
	max-height: none;
	overflow: hidden;
	color: #cbd1d9;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
	transition: max-height 240ms ease;
}

.decoder-block-read-more__item p {
	margin: 0 0 12px;
}

.decoder-block-read-more__item p:last-child {
	margin-bottom: 0;
}

.decoder-block-read-more__toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	padding: 0;
	border: 0;
	background: transparent;
	color: #3b82f6;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0;
	cursor: pointer;
}

.decoder-block-read-more__toggle:hover,
.decoder-block-read-more__toggle:focus-visible {
	color: #60a5fa;
}

.decoder-block-read-more__icon {
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: url("assets/icons/read-more-chevron-down.svg") center / 24px 24px no-repeat;
}

.decoder-block-read-more.is-open .decoder-block-read-more__icon {
	background-image: url("assets/icons/read-more-chevron-up.svg");
}

.decoder-block-read-more__toggle[hidden] {
	display: none;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-read-more {
		margin: 40px 0;
	}

	.decoder-block-read-more__content {
		font-size: 15px;
		line-height: 23px;
	}
}

.decoder-single-content .decoder-block-footnotes {
	margin: 40px 0;
}

.decoder-block-footnotes {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-block-footnotes__divider {
	width: 100%;
	height: 1px;
	background: #4b545f;
}

.decoder-block-footnotes__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-block-footnotes__item {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	color: #8e99a6;
}

.decoder-block-footnotes__number {
	flex: 0 0 auto;
	min-width: 9px;
	color: #8e99a6;
	font-size: 11px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-footnotes__text {
	flex: 1 1 auto;
	min-width: 0;
	color: #8e99a6;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-footnotes {
		margin: 40px 0;
	}

	.decoder-block-footnotes__item {
		gap: 4px;
	}

	.decoder-block-footnotes__number {
		font-size: 11px;
		line-height: 23px;
	}

	.decoder-block-footnotes__text {
		font-size: 15px;
		line-height: 23px;
	}
}

.decoder-single-content .decoder-block-sources {
	margin: 40px 0;
}

.decoder-block-sources {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-block-sources__title {
	width: 100%;
	margin: 0;
	color: #f5f7fa;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
}

.decoder-block-sources__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.decoder-block-sources__item {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	min-height: 25px;
}

.decoder-block-sources__number {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 26px;
	height: 24px;
	padding: 1px 8px;
	color: #cbd1d9;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
}

.decoder-block-sources__link-wrap {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	min-width: 0;
	min-height: 25px;
}

.decoder-block-sources__link {
	color: #8e99a6;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0;
	text-decoration: underline;
	text-underline-position: from-font;
	word-break: break-word;
}

.decoder-block-sources__link:hover,
.decoder-block-sources__link:focus-visible {
	color: #3b82f6;
}

@media (max-width: 900px) {
	.decoder-single-content .decoder-block-sources {
		margin: 40px 0;
	}

	.decoder-block-sources__title {
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-block-sources__number {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-block-sources__link-wrap {
		min-height: 25px;
	}

	.decoder-block-sources__link {
		font-size: 15px;
		line-height: 23px;
	}
}

.decoder-single-more__heading h2 {
	font-size: 44px;
	line-height: 50px;
}

.decoder-single-more__controls {
	display: flex;
	gap: 40px;
	align-items: center;
}

.decoder-single-more__controls .decoder-icon-button:first-child img {
	transform: rotate(180deg);
}

.decoder-single-more__controls .decoder-icon-button:hover,
.decoder-single-more__controls .decoder-icon-button:focus-visible {
	border-color: var(--decoder-accent-hover);
}

.decoder-single-more__carousel {
	width: 100%;
}

.decoder-single-more__carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.decoder-single-more__carousel .owl-item {
	display: flex;
}

.decoder-single-more__carousel .decoder-category-card {
	width: 100%;
}

@media (max-width: 900px) {
	.decoder-single-more__heading {
		align-items: flex-start;
	}

	.decoder-single-more__heading h2 {
		font-size: 21px;
		line-height: 30px;
	}

	.decoder-single-more__controls {
		gap: 16px;
	}

	.decoder-single-more__carousel .decoder-category-card {
		min-height: 0;
	}
}

.single .decoder-single-tags-title {
    margin-bottom: 0px;
}
.decoder-block-external-embed__read, .decoder-block-social-post__read {
    text-decoration: none !important;
    color: #3B82F6 !important;
}
.decoder-block-donate-card__button {
  color: #fff!important;
    text-decoration: none !important;
}
.decoder-block-pdf-source__view img {
    width: 24px;
    height: 24px;
}
.decoder-block-pdf-card__view img {
	    width: 24px;
    height: 24px;
}
.decoder-block-pdf-source__view .decoder-block-pdf-source__view-icon.decoder-block-pdf-source__view-icon--hover {
    display: none;
}
.decoder-block-pdf-source__view:hover .decoder-block-pdf-source__view-icon.decoder-block-pdf-source__view-icon--hover {
    display: block;
}
.decoder-block-pdf-card__view:hover {
    border-color: var(--decoder-text-secondary);
    background: var(--decoder-text-secondary);
    color: var(--decoder-bg-primary);
}
.decoder-block-pdf-card__view:hover img {
     filter: brightness(0);
}
.decoder-block-pdf-card__download {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}
.decoder-single-content figure .decoder-icon-button img {
    cursor: pointer;
}
.single ul.wp-block-list {
    margin-top: 20px;
}
.decoder-block-audio__download {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}
@media (max-width: 900px) {
    .decoder-single-header h1 {
        font-size: 22px;
        line-height: 28px;
    }
    .decoder-single-content p:first-child, .decoder-single-content h3, .decoder-single-content h4 {
        font-size: 18px;
        line-height: 26px;
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
}
.decoder-block-external-embed__title {
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 900px) {
	.single .decoder-single-main {
		padding-top: 16px;
	}

	.single .decoder-single-breadcrumbs {
		margin-bottom: 24px;
	}

	.single .decoder-single-layout {
		gap: 8px;
	}

	.single .decoder-single-meta {
		display: contents;
	}

	.single .decoder-single-meta__category {
		order: -1;
		min-height: 36px;
		padding: 6px 12px;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.single .decoder-single-header {
		gap: 8px;
	}

	.single .decoder-single-header h1 {
		font-size: 22px;
		font-weight: 600;
		line-height: 28px;
	}

	.single .decoder-single-featured {
		gap: 8px;
	}

	.single .decoder-single-featured button {
		position: relative;
		aspect-ratio: 732 / 410;
		height: auto;
		overflow: hidden;
	}

	.single .decoder-single-featured button img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.single .decoder-single-featured figcaption {
		font-size: 14px;
		line-height: 21px;
	}

	.single .decoder-single-meta__details {
		order: 1;
		display: flex;
		flex-flow: row wrap;
		row-gap: 8px;
		column-gap: 8px;
		align-items: center;
		width: 100%;
		margin-top: 8px;
		color: var(--decoder-text-tertiary);
		font-size: 14px;
		line-height: 21px;
	}

	.single .decoder-single-meta__author,
	.single .decoder-single-meta__time > time,
	.single .decoder-single-meta__time > span {
		flex: 0 0 auto;
		font-size: 14px;
		line-height: 21px;
		white-space: nowrap;
	}

	.single .decoder-single-meta__author {
		order: 1;
		padding-right: 8px;
		border-right: 1px solid var(--decoder-border-strong);
	}

	.single .decoder-single-meta__time {
		display: contents;
	}

	.single .decoder-single-meta__time > time {
		order: 2;
		flex: 1 0 calc(100% - 144px);
		min-width: 0;
	}

	.single .decoder-single-meta__time > span:first-of-type {
		order: 4;
	}

	.single .decoder-single-meta__time > span:last-child {
		order: 3;
		padding-right: 8px;
		border-right: 1px solid var(--decoder-border-strong);
	}

	.single .decoder-single-meta__time > span:only-of-type {
		order: 3;
		border-right: 0;
	}

	.single .decoder-single-meta__actions {
		order: 10;
		justify-content: flex-end;
		flex: 0 0 100%;
		width: 100%;
		gap: 24px;
		margin-top: 0;
	}

	.single .decoder-single-meta__actions a.decoder-icon-button {
		order: 1;
	}

	.single .decoder-single-meta__actions button.decoder-icon-button {
		order: 2;
	}

	.single .decoder-single-content {
		order: 2;
		margin-top: 8px;
		font-size: 14px;
		line-height: 21px;
	}

	.single .decoder-single-content > p:first-child {
		font-size: 15px;
		font-weight: 600;
		line-height: 22px;
	}

	.single .decoder-single-content > p + p {
		margin-top: 8px;
	}

	.single .decoder-single-content > h2,
	.single .decoder-single-content > h3,
	.single .decoder-single-content > h4 {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.single .decoder-single-tags__heading h2,
	.single .decoder-single-tags__heading h3 {
		margin: 0;
		color: var(--decoder-text-primary);
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}
.decoder-block-external-embed__title {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

}

/* Support page */
.decoder-support {
	background: var(--decoder-bg-primary);
}

.decoder-support__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 622px;
	gap: 100px;
	align-items: center;
	min-height: 600px;
	padding-block: 100px;
}

.decoder-support__copy {
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-width: 0;
}

.decoder-support__copy h1,
.decoder-support__copy p {
	margin: 0;
}

.decoder-support__copy h1 {
	max-width: 540px;
	color: var(--decoder-text-primary);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
}

.decoder-support__copy p {
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-support__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 622px;
}

.decoder-support__frequency,
.decoder-support__amounts {
	display: grid;
	margin: 0;
	padding: 0;
	border: 0;
}

.decoder-support__frequency {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.decoder-support__amounts {
	grid-template-columns: repeat(4, 106px) minmax(0, 1fr);
	gap: 16px;
}

.decoder-support-option,
.decoder-support-custom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border: 1px solid var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
}

.decoder-support-option {
	padding-inline: 24px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.decoder-support-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.decoder-support-option:hover,
.decoder-support-custom:hover,
.decoder-support-option:focus-within,
.decoder-support-custom:focus-within {
	border-color: var(--decoder-accent-hover);
}

.decoder-support-option.is-selected,
.decoder-support-custom.is-selected {
	border-color: var(--decoder-text-tertiary);
	background: var(--decoder-text-tertiary);
	color: var(--decoder-bg-primary);
}

.decoder-support-custom input[type="number"] {
	width: 100%;
	height: 100%;
	padding: 8px 12px;
	border: 0;
	outline: 0;
	background: transparent;
	color: inherit;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-support-custom input[type="number"]::placeholder {
	color: var(--decoder-text-secondary);
	opacity: 1;
}

.decoder-support-custom.is-selected input[type="number"]::placeholder {
	color: var(--decoder-bg-primary);
}

.decoder-support-custom input[type="number"]::-webkit-inner-spin-button,
.decoder-support-custom input[type="number"]::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.decoder-support__submit {
	width: 100%;
}

.decoder-support__status {
	margin: -8px 0;
	color: var(--decoder-text-secondary);
	font-size: 14px;
	line-height: 21px;
}

@media (max-width: 900px) {
	.decoder-support__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 36px;
		min-height: 0;
		padding-block: 16px 40px;
	}

	.decoder-support__copy {
		gap: 16px;
	}

	.decoder-support__copy h1 {
		max-width: none;
		font-size: 22px;
		line-height: 28px;
	}

	.decoder-support__copy p {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-support__form {
		width: 100%;
	}

	.decoder-support__amounts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px 18px;
	}

	.decoder-support-option--amount {
		padding-inline: 8px;
	}

	.decoder-support-option--amount:nth-of-type(4) {
		grid-column: 1;
	}

	.decoder-support-custom {
		grid-column: 2 / 4;
		margin-left: -2px;
	}
}

/* Payment confirmation page */
.decoder-thanks {
	background: var(--decoder-bg-primary);
}

.decoder-thanks__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: min(100% - 160px, var(--decoder-container));
	min-height: 600px;
	margin-inline: auto;
	padding-block: 100px;
	text-align: center;
}

.decoder-thanks__copy {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 600px;
	max-width: 100%;
}

.decoder-thanks__copy h1,
.decoder-thanks__copy p {
	margin: 0;
}

.decoder-thanks__copy h1 {
	color: var(--decoder-text-primary);
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
}

.decoder-thanks__copy p {
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-thanks__button {
	width: 170px;
	flex: 0 0 40px;
}

@media (max-width: 900px) {
	.decoder-thanks__inner {
		gap: 32px;
		width: calc(100% - 48px);
		min-height: 600px;
		padding-block: 100px;
	}

	.decoder-thanks__copy {
		gap: 24px;
	}

	.decoder-thanks__copy h1 {
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-thanks__copy p {
		font-size: 15px;
		line-height: 23px;
	}
}

/* Send information page */
.decoder-send {
	background: var(--decoder-bg-primary);
}

.decoder-send__inner {
	display: grid;
	grid-template-columns: minmax(0, 559px) minmax(0, 621px);
	gap: 100px;
	padding-top: 24px;
	padding-bottom: 100px;
}

.decoder-send__intro,
.decoder-send__form-wrap {
	min-width: 0;
}

.decoder-send__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 36px;
	color: var(--decoder-text-muted);
	font-size: 14px;
	line-height: 18px;
}

.decoder-send__breadcrumbs a {
    color: var(--decoder-text-tertiary);
    text-decoration: underline;
    text-underline-position: from-font;
    text-underline-offset: 3px;
}

.decoder-send h1,
.decoder-send h2,
.decoder-send p {
	margin: 0;
}

.decoder-send h1 {
	max-width: 559px;
	color: var(--decoder-text-primary);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
}

.decoder-send__description {
	max-width: 559px;
	margin-top: 32px !important;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	line-height: 25px;
}

.decoder-send__secure {
	margin-top: 72px;
}

.decoder-send__secure h2,
.decoder-send__form-wrap > h2 {
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
}

.decoder-send__socials {
	display: flex;
	gap: 24px;
	margin-top: 24px;
}



.decoder-send__form-wrap {
	padding-top: 56px;
}

.decoder-send__form-wrap > h2 {
	margin-bottom: 24px;
	font-size: 30px;
	line-height: 38px;
}

.decoder-send__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.decoder-send__form input[type="text"],
.decoder-send__form textarea {
	width: 100%;
	border: 1px solid var(--decoder-border-strong);
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: var(--decoder-text-primary);
	font-size: 15px;
	line-height: 23px;
}

.decoder-send__form input[type="text"] {
	height: 40px;
	padding: 8px 12px;
}

.decoder-send__form textarea {
	height: 240px;
	padding: 12px;
	resize: vertical;
}

.decoder-send__form input::placeholder,
.decoder-send__form textarea::placeholder {
	color: var(--decoder-text-muted);
	opacity: 1;
}

.decoder-send__form input:focus,
.decoder-send__form textarea:focus {
	border-color: var(--decoder-accent-hover);
}

.decoder-send__form input:invalid:not(:placeholder-shown),
.decoder-send__form textarea:invalid:not(:placeholder-shown) {
	border-color: #ef233c;
}

.decoder-send__upload {
	margin-top: 0;
}

.decoder-send__upload-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	line-height: 25px;
}

.decoder-send__upload-head label {
	border-color: var(--decoder-text-secondary);
}

.decoder-send__upload-head label:hover {
	background: var(--decoder-accent);
}

.decoder-send__upload > input {
	position: absolute;
	width: 1px;
	height: 1px;
	op: auto;
	left: -9999px;
}

.decoder-send__upload > p {
	max-width: 621px;
	margin-top: 16px;
	color: var(--decoder-text-tertiary);
	font-size: 12px;
	line-height: 17px;
}

.decoder-send__consent {
	padding-top: 16px;
	border-top: 1px solid var(--decoder-border-default);
	color: var(--decoder-text-tertiary);
	font-size: 12px;
	line-height: 17px;
}

.decoder-send__consent p + p {
	margin-top: 16px;
}

.decoder-send__consent strong {
	color: var(--decoder-text-secondary);
	font-weight: 700;
}

.decoder-send__submit {
	width: 100%;
	margin-top: 8px;
}

.decoder-send__status {
	margin: -8px 0 8px !important;
	color: var(--decoder-accent-hover);
	font-size: 14px;
}

.decoder-send__status--error {
	color: #ef233c;
}

.decoder-send__field-error {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-top: -8px;
	color: #d72121;
	font-size: 12px;
	line-height: 17px;
}

.decoder-send__field-error > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	margin-top: 2px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

.decoder-send__form input.has-error,
.decoder-send__form textarea.has-error {
	border-color: #d72121;
}

.decoder-send__form textarea.has-error::placeholder {
	color: var(--decoder-text-primary);
}

.decoder-send__files {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	color: var(--decoder-text-secondary);
	font-size: 14px;
	line-height: 20px;
	word-break: break-word;
}

.decoder-send__files:empty {
	display: none;
}

.decoder-send__files li {
	padding-left: 16px;
}

.decoder-send__files li::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 8px 2px -13px;
	border-radius: 50%;
	background: var(--decoder-accent);
}

@media (max-width: 900px) {
	.decoder-send__inner {
		display: flex;
		flex-direction: column;
		gap: 36px;
		padding-top: 0;
		padding-bottom: 40px;
	}

	.decoder-send__breadcrumbs {
		display: none;
	}

	.decoder-send h1 {
		font-size: 22px;
		line-height: 28px;
	}

	.decoder-send__description {
		margin-top: 16px !important;
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-send__secure {
		margin-top: 24px;
	}

	.decoder-send__form-wrap {
		padding-top: 0;
	}

	.decoder-send__form-wrap > h2 {
		margin-bottom: 24px;
		font-size: 22px;
		line-height: 28px;
	}

	.decoder-send__form textarea {
		height: 228px;
	}
}

/* Contact thank-you page */
.decoder-contact-thanks {
	background: var(--decoder-bg-primary);
}

.decoder-contact-thanks__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
	min-height: 600px;
	padding: 100px 80px;
	text-align: center;
}

.decoder-contact-thanks__copy {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 600px;
	max-width: 100%;
}

.decoder-contact-thanks__copy h1,
.decoder-contact-thanks__copy p {
	margin: 0;
}

.decoder-contact-thanks__copy h1 {
	color: var(--decoder-text-primary);
	font-size: 44px;
	font-weight: 600;
	line-height: 50px;
}

.decoder-contact-thanks__copy p {
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-contact-thanks__button {
	width: 170px;
}

@media (max-width: 900px) {
	.decoder-contact-thanks__inner {
		gap: 32px;
		min-height: 600px;
		padding: 100px 24px;
	}

	.decoder-contact-thanks__copy {
		gap: 24px;
	}

	.decoder-contact-thanks__copy h1 {
		max-width: 220px;
		margin-inline: auto;
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-contact-thanks__copy p {
		font-size: 15px;
		line-height: 23px;
	}
}

/* Advanced search page */
.decoder-advanced-search-page {
	background: var(--decoder-bg-primary);
	color: var(--decoder-text-secondary);
}

.decoder-advanced-search {
	padding: 24px 0 100px;
	background: var(--decoder-bg-primary);
}

.decoder-advanced-search__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.decoder-advanced-search__breadcrumbs {
	margin: 0;
}

.decoder-advanced-search__form {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
	width: 841px;
	max-width: 100%;
}

.decoder-advanced-search__head {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

.decoder-advanced-search__head h1 {
	margin: 0;
	color: #ffffff;
	font-size: 44px;
	font-weight: 600;
	line-height: 50px;
	letter-spacing: 0;
}

.decoder-advanced-search__query,
.decoder-advanced-search__row select,
.decoder-date-range__trigger {
	width: 100%;
	height: 40px;
	border: 1px solid var(--decoder-text-muted);
	border-radius: 0;
	background: transparent;
	color: var(--decoder-text-tertiary);
	font-family: var(--decoder-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	outline: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.decoder-advanced-search__query {
	padding: 10px 12px;
}

.decoder-advanced-search__query::placeholder {
	color: var(--decoder-text-muted);
	opacity: 1;
}

.decoder-advanced-search__query:hover,
.decoder-advanced-search__query:focus,
.decoder-advanced-search__row select:hover,
.decoder-advanced-search__row select:focus,
.decoder-date-range__trigger:hover,
.decoder-date-range__trigger:focus {
	border-color: var(--decoder-text-secondary);
	color: var(--decoder-text-secondary);
}

.decoder-advanced-search__filters {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 623px;
	max-width: 100%;
}

.decoder-advanced-search__row {
	display: flex;
	gap: 24px;
	align-items: center;
	width: 100%;
	min-height: 40px;
}

.decoder-advanced-search__row > p {
	flex: 0 0 170px;
	margin: 0;
	color: var(--decoder-text-tertiary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	opacity: 0.5;
}

.decoder-advanced-search__choices {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 8px 24px;
	align-items: center;
	min-width: 0;
}

.decoder-advanced-search__choice {
	display: inline-flex;
	align-items: center;
	height: 40px;
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.decoder-advanced-search__choice input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.decoder-advanced-search__choice:hover,
.decoder-advanced-search__choice:focus-within,
.decoder-advanced-search__choice.is-active {
	color: var(--decoder-accent);
}

.decoder-advanced-search__row--control {
	width: 539px;
	max-width: 100%;
}

.decoder-advanced-search__row select,
.decoder-date-range {
	flex: 0 0 345px;
	width: 345px;
	max-width: 100%;
}

.decoder-advanced-search__row select {
	padding: 8px 44px 8px 12px;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 18px) 17px, calc(100% - 12px) 17px;
	background-repeat: no-repeat;
	background-size: 6px 6px, 6px 6px;
}

.decoder-advanced-search__row select option {
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
}

.decoder-date-range {
	position: relative;
}

.decoder-date-range__trigger {
	display: flex;
	align-items: center;
	padding: 7px 12px;
	text-align: left;
	cursor: pointer;
}

.decoder-date-range__trigger span {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.decoder-date-range__calendar {
	position: absolute;
	top: 48px;
	left: 0;
	z-index: 40;
	width: 284px;
	padding: 16px;
	background: var(--decoder-bg-elevated);
	box-shadow: 0 4px 20px rgba(11, 45, 121, 0.06);
}

.decoder-date-range__calendar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.decoder-date-range__calendar-head strong {
	color: var(--decoder-text-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-date-range__calendar-head button {
	position: relative;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--decoder-text-tertiary);
	cursor: pointer;
}

.decoder-date-range__calendar-head button::before {
	position: absolute;
	top: 7px;
	left: 8px;
	width: 9px;
	height: 9px;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
	content: "";
}

.decoder-date-range__calendar-head [data-date-next]::before {
	left: 5px;
	transform: rotate(225deg);
}

.decoder-date-range__calendar-head button:hover {
	color: var(--decoder-text-secondary);
}

.decoder-date-range__weekdays,
.decoder-date-range__days {
	display: grid;
	grid-template-columns: repeat(7, 36px);
}

.decoder-date-range__weekdays span,
.decoder-date-range__day {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--decoder-text-secondary);
	font-family: var(--decoder-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.decoder-date-range__weekdays span {
	color: var(--decoder-text-tertiary);
}

.decoder-date-range__day {
	border: 0;
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
}

.decoder-date-range__day:hover,
.decoder-date-range__day.is-selected {
	background: #275cc6;
	color: #ffffff;
}

.decoder-date-range__day.is-in-range {
	background: rgba(39, 92, 198, 0.32);
	color: #ffffff;
}

.decoder-date-range__day.is-empty {
	color: var(--decoder-text-secondary);
	opacity: 1;
	cursor: default;
}

.decoder-advanced-search__submit {
	width: 841px;
	max-width: 100%;
}

.decoder-advanced-results {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: flex-start;
	width: 100%;
	padding-top: 32px;
	border-top: 1px solid var(--decoder-border-strong);
}

.decoder-advanced-results h2 {
	margin: 0;
	color: #ffffff;
	font-size: 36px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
}

.decoder-advanced-results__filters {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.decoder-advanced-results__filters > p {
	margin: 0;
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-advanced-results__filters > div {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
}

.decoder-advanced-filter {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 12px;
	background: var(--decoder-bg-elevated);
	color: var(--decoder-text-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.decoder-advanced-filter img {
	width: 24px;
	height: 24px;
}

.decoder-advanced-filter:hover {
	color: #ffffff;
}

.decoder-advanced-results__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 841px;
	max-width: 100%;
}

.decoder-advanced-results__count,
.decoder-advanced-results__empty {
	margin: 0;
	color: var(--decoder-text-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.decoder-advanced-results__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.decoder-advanced-result {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 104px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--decoder-border-strong);
}

.decoder-advanced-result:last-child {
	border-bottom: 0;
}

.decoder-advanced-result h3 {
	display: -webkit-box;
	height: 49px;
	margin: 0;
	overflow: hidden;
	color: var(--decoder-text-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.decoder-advanced-result h3 a {
	color: inherit;
	text-decoration: none;
}

.decoder-advanced-result h3 a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-advanced-result__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--decoder-text-tertiary);
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.decoder-advanced-result__meta a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.decoder-advanced-result__meta a:hover {
	color: var(--decoder-accent-hover);
}

.decoder-advanced-result__meta > span {
	display: block;
	width: 1px;
	height: 20px;
	background: var(--decoder-border-strong);
}

.decoder-advanced-results__pagination {
	margin-top: -14px;
}

@media (max-width: 700px) {
	.decoder-advanced-search {
		padding: 16px 0 36px;
	}

	.decoder-advanced-search__inner {
		gap: 24px;
	}

	.decoder-advanced-search__form {
		gap: 24px;
		width: 100%;
	}

	.decoder-advanced-search__head {
		gap: 24px;
	}

	.decoder-advanced-search__head h1 {
		font-size: 28px;
		line-height: 36px;
	}

	.decoder-advanced-search__filters {
		gap: 16px;
		width: 100%;
	}

	.decoder-advanced-search__row {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}

	.decoder-advanced-search__row > p {
		flex: none;
		width: 170px;
		font-size: 17px;
		line-height: 25px;
	}

	.decoder-advanced-search__choices {
		width: 100%;
		gap: 0 24px;
	}

	.decoder-advanced-search__row--control,
	.decoder-advanced-search__row select,
	.decoder-date-range {
		width: 100%;
		flex-basis: auto;
	}

	.decoder-date-range__calendar {
		width: 304px;
		max-width: calc(100vw - 24px);
	}

	.decoder-date-range__weekdays,
	.decoder-date-range__days {
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}

	.decoder-date-range__weekdays span,
	.decoder-date-range__day {
		width: 100%;
	}

	.decoder-advanced-search__submit {
		width: 100%;
	}

	.decoder-advanced-results {
		gap: 24px;
		padding-top: 24px;
	}

	.decoder-advanced-results h2 {
		font-size: 23px;
		line-height: 32px;
	}

	.decoder-advanced-results__filters > p {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-advanced-results__list {
		gap: 24px;
		width: 100%;
	}

	.decoder-advanced-results__count,
	.decoder-advanced-results__empty {
		font-size: 15px;
		line-height: 23px;
	}

	.decoder-advanced-results__cards {
		gap: 16px;
	}

	.decoder-advanced-result {
		gap: 16px;
		min-height: 104px;
	}

	.decoder-advanced-result h3 {
		height: 49px;
		font-size: 15px;
		line-height: 22px;
	}

	.decoder-advanced-result__meta {
		font-size: 14px;
		line-height: 21px;
	}

	.decoder-advanced-results__pagination {
		margin-top: 0;
	}
}
.decoder-icon-button img {
    filter: grayscale(0.8);
}
.decoder-icon-button:hover img {
    filter: none;
}
@media (max-width: 900px) {
    .decoder-send__inner {
        padding-top: 24px;
    }
}
.decoder-send__consent strong {
    font-size: 13px;
}
.decoder-redaktsiya-hero__inner {
    border-bottom: 1px solid #4B545F;
}
.decoder-redaktsiya-goal__inner {
    border-bottom: 1px solid #4B545F;
}

.decoder-subscription-form .decoder-button {
    background: #3B82F6;
}
.decoder-subscription-form .decoder-button:hover {

    background: var(--decoder-accent-hover);
}
@media (max-width: 900px) {
    .decoder-subscription-form, .decoder-subscription-box__shortcode form {
        display: grid;
    }
}
.decoder-send__form textarea {
    font-family: var(--decoder-font);
}
.decoder-send__upload-head {
    margin-bottom: 16px;
}
.decoder-send__upload-head label:hover {
    background: transparent;
}
.decoder-send__breadcrumbs a {
    color: var(--decoder-text-tertiary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.decoder-send__breadcrumbs {
    color: var(--decoder-text-muted);
    font-size: 15px;
    line-height: 23px;
}
.decoder-send__breadcrumbs a:hover {
    color: #60A5FA;
}
.decoder-single-share-toggle img {
    width: 18px;
    height: 15px;
}
.decoder-block-pdf__switcher img,
.decoder-icon-button img {
    width: 24px;
    height: 24px;
	filter: grayscale(0.8);
}

.decoder-block-pdf__switcher:hover img,
.decoder-icon-button:hover img {
	filter: none;
}
.decoder-pdf-modal__download img {
    width: 24px;
    height: 24px;
	filter: grayscale(0.8);
}
.decoder-pdf-modal__download:hover img {
	filter: none;
}
.decoder-pdf-modal__download {
    border-color: transparent;
}
.decoder-block-pdf-card__download:hover {
  border-color: transparent;
}
.decoder-block-pdf-card__download img {
	width: 24px;
	height: 24px;
	filter: grayscale(0.8);
}	
.decoder-block-pdf-card__download:hover img {
filter: none;
}	
.decoder-block-external-embed__share img {
    width: 18px;
    height: 15px;
	filter: grayscale(0.8);
}
.decoder-block-external-embed__share:hover img {
filter: none;
}
.home .decoder-home-subscription {
    padding-bottom: 0;
}
.home .decoder-donate {
    padding-bottom: 0;
}
.decoder-mobile-menu__social p {
    margin-bottom: 16px;
}


@media (max-width: 900px) {
.decoder-category-news-card--image .decoder-category-news-card__title {
    max-height: 69px;
    -webkit-line-clamp: 3;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
.decoder-category-news-card--compact .decoder-category-news-card__title {
    max-height: 46px;
    -webkit-line-clamp: 2;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
    .decoder-investigation-card__title {
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
    .decoder-investigation-card__content {
        min-height: auto;
    }
    .decoder-category-news-card--compact + .decoder-category-news-card--compact {
        padding-top: 16px;
        margin-top: 16px;
    }
    .decoder-category-news-card--image .decoder-category-news-card__content {
        min-height: auto;
    }
    .decoder-analytics-card__title {
        max-height: max-content;
        -webkit-line-clamp: 3;
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
    .decoder-analytics-card__content {
        min-height: auto;
    }	
    .decoder-factchecking-featured__title {
        line-height: 32px;
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
.decoder-factchecking-item__title {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    max-height: max-content;
}
.decoder-donate__content .decoder-button {
    width: 100%;
}
.decoder-popular-card__title {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
    .decoder-category-hero__intro h1 {
        font-size: 30px;
        line-height: 36px;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 36px;
    }
    .decoder-category-archive__inner {
        margin-bottom: 36px;
    }

}

.decoder-block-read-more__item p:last-child {
    margin-bottom: 0;
    color: var(--decoder-text-secondary);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 16px;
}

@media (min-width: 900px) and (max-width: 1360px){ 
.decoder-subscription-box__description {
    flex: auto;
}
.decoder-investigations__grid {
    grid-template-columns: 1fr 1fr 1fr;
}
.decoder-investigation-card {
    width: 100%;
}
.decoder-analytics-card__media {
    width: 100%;
}
.decoder-analytics__grid {
    grid-template-columns: 1fr 1fr;
}
.decoder-analytics-card {
width: 100%;
}
.decoder-category-card {
    width: 100%;
}
}
