.type-satrack_update > .e-con {
	display: flex;
}

.type-satrack_update > .e-con > .e-con-inner {
	/*max-width: min(100%, 1380px);*/
}

:root {
	--satrack-primary: var(--str-global-color-primaro-40, #153e9f);
	--satrack-dark: var(--str-global-color-primary, #1f1f24);
	--satrack-text: var(--str-global-color-text, #a4a4a4);
	--satrack-accent: var(--str-global-color-naaranja, #eb5d41);
	--satrack-surface: #ffffff;
	--satrack-surface-soft: #eef2fb;
	--satrack-surface-muted: #f8f8f6;
	--satrack-border: rgba(22, 30, 54, 0.1);
	--satrack-border-strong: rgba(22, 30, 54, 0.18);
	--satrack-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
	--satrack-shadow-soft: 0px 0px 8px rgba(0, 0, 0, 0.06);
	--satrack-sticky-offset: 112px;
}

.satrack-hub {
	color: var(--satrack-dark);
	position: relative;
	padding: 15px 30px;
}

.satrack-hub-editor-placeholder {
	padding: 18px 20px;
	border: 1px dashed var(--satrack-border-strong, rgba(22, 30, 54, 0.18));
	border-radius: 16px;
	background: #fff;
	color: var(--satrack-dark, #1f1f24);
	font-size: 14px;
}

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

.satrack-hub__filters {
	display: grid;
	gap: 26px;
	max-width: 1024px;
	margin: auto;
}

.satrack-hub__toolbar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.8rem;
	margin-bottom: 1.8rem;
}

.satrack-hub__toolbar-top {
	align-self: center;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.satrack-country-tabs {
	width: calc(100% - 240px);
	margin: 0 120px;
	max-width: 1000px;
	flex: 1 1 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0;
	padding: 0;
	border-radius: 14px;
	background: #eef2f5;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.satrack-country-tabs__item,
.satrack-lang-switch__trigger,
.satrack-lang-switch__button,
.satrack-hub__clear,
.satrack-platform-buttons__item,
.satrack-date-range__trigger,
.satrack-date-range__apply {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	cursor: pointer;
}

.satrack-country-tabs__item {
	min-height: 66px;
	border-radius: 12px;
	background: transparent;
	color: var(--satrack-text);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.satrack-country-tabs__item:hover {
	background: #ffffff77;
	color: #000000;
	border: 5px solid #00204022;
}

.satrack-country-tabs__item.is-active {
	background: #fff;
	color: var(--satrack-primary);
	font-weight: 700;
	box-shadow: 0 0px 12px rgba(0, 0, 0, 0.12);
	margin: -2px 0;
}

.satrack-lang-switch {
	position: absolute;
	top: -10px;
	right: 10px;
	flex: 0 0 auto;
}

.satrack-update-single__body .satrack-lang-switch {
	position: relative;
	top: 0;
	right: 0;
}

.satrack-lang-switch__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 4px 18px 4px 4px;
	border: 1px solid var(--satrack-border);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	color: rgba(31, 31, 36, 0.88);
}

.satrack-lang-switch__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(22, 30, 54, 0.08);
}

.satrack-lang-switch__flag svg {
	width: 100%;
	height: 100%;
	display: block;
}

.satrack-lang-switch__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #475467;
}

.satrack-lang-switch__caret {
	width: 8px;
	height: 8px;
	margin-left: 6px;
	border-right: 2px solid #00000045;
	border-bottom: 2px solid #00000045;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
}

.satrack-lang-switch__trigger:hover {
	color: #000000;
}

.satrack-lang-switch__trigger:hover .satrack-lang-switch__caret {
	border-right: 2px solid #00000095;
	border-bottom: 2px solid #00000095;
}

.satrack-lang-switch.is-open .satrack-lang-switch__caret {
	transform: rotate(225deg) translateY(-2px);
}

.satrack-lang-switch__menu {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	z-index: 25;
	min-width: 110px;
	padding: 2px;
	border: 1px solid var(--satrack-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 6px 8px rgba(27, 39, 79, 0.16);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.satrack-lang-switch__menu[hidden] {
	display: none;
}

.satrack-lang-switch__button {
	border-radius: 10px;
	background: #fff;
	color: #475467;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 8px 12px;
}

.satrack-lang-switch__button:hover {
	color: #000000;
}

.satrack-lang-switch__button.is-active {
	background: var(--satrack-primary);
	color: #fff;
}

.satrack-lang-menu__label {
	font-weight: 500;
	text-wrap: nowrap;
}

.satrack-lang-menu__label strong {
	font-weight: 600;
}

.satrack-hub__filter-panel {
	display: grid;
	gap: 18px;
	padding: 28px 36px 32px;
	border: 1px solid rgba(18, 29, 57, 0.06);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--satrack-shadow);
	position: relative;
}

.satrack-hub__filter-actions {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	width: 100%;
	left: 0;
	top: -8px;
	padding: 0 20px;
}

.satrack-hub__toolbar-grid {
	display: flex;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.satrack-filter {
	display: grid;
	gap: 8px;
	min-width: 160px;
	flex-grow: 1;
}

.satrack-filter > span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(31, 31, 36, 0.82);
}

.satrack-filter select,
.satrack-filter input,
.satrack-date-range__trigger,
.satrack-date-range__apply {
	width: 100%;
	font-size: 0.9rem;
	min-height: 42px;
	border: 1px solid rgba(22, 30, 54, 0.14);
	border-radius: 8px;
	padding: 0 18px;
	background: #fff;
	color: rgba(31, 31, 36, 0.88);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.satrack-filter select,
.satrack-filter input {
	appearance: none;
	line-height: 1em;
}

.satrack-filter select {
	padding-right: 44px;
	background-image: linear-gradient(45deg, transparent 50%, rgba(31, 31, 36, 0.72) 50%), linear-gradient(135deg, rgba(31, 31, 36, 0.72) 50%, transparent 50%);
	background-position:
		calc(100% - 22px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px);
	background-size: 6px 6px;
	background-repeat: no-repeat;
	color: #565656;
}

.satrack-filter select:focus,
.satrack-filter input:focus,
.satrack-hub__clear:focus,
.satrack-lang-switch__trigger:focus,
.satrack-lang-switch__button:focus,
.satrack-country-tabs__item:focus,
.satrack-date-range__trigger:focus,
.satrack-date-range__apply:focus,
.satrack-platform-buttons__item:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(21, 62, 159, 0.12);
}

.satrack-filter--search {
	position: relative;
	width: min(680px, 100%);
	margin: 0 auto;
}

.satrack-hub__search-row {
	display: grid;
}

.satrack-filter--search input[type="search"] {
	padding: 12px 84px 12px 32px;
	border-radius: 999px;
	font-size: 1.1rem;
	color: rgba(0, 0, 0, 0.88);
}

.satrack-filter--search input[type="search"]::placeholder {
	color: rgba(31, 31, 36, 0.28);
}

.satrack-filter__search-icon {
	position: absolute;
	right: 18px;
	top: 50%;
	width: 26px;
	height: 26px;
	transform: translateY(-50%);
}

.satrack-filter__search-icon svg {
	width: 100%;
	fill: currentColor;
}

.satrack-filter--platform {
	align-self: stretch;
	flex-grow: 0;
	flex-shrink: 1;
	min-width: none;
}

.satrack-platform-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
	min-height: 52px;
}

.satrack-platform-buttons__item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	border-radius: 8px;
	background: transparent;
	color: rgb(51, 51, 56);
	transition: all 0.2s ease;
}

.satrack-platform-buttons__item .plat_icon {
	display: flex;
	width: 26px;
}

.satrack-platform-buttons__item svg {
	width: 100%;
	height: auto;
	fill: currentColor;
	opacity: 0.2;
}

.satrack-platform-buttons__item .label-platform-buttons {
	font-size: 0.7rem;
}

.satrack-platform-buttons__item:hover svg,
.satrack-platform-buttons__item.is-active svg {
	opacity: 1;
}

.satrack-platform-buttons__item:hover {
	color: #050e0f;
}

.satrack-platform-buttons__item.is-active {
	color: var(--str-global-color-secondary, #153e9f);
	background: rgba(10, 148, 210, 0.08);
}

.satrack-hub__clear {
	border: 1px solid #d2d2d2;
	background: #f1f1f1;
	color: #d2d2d2;
	font-size: 0.85rem;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	transition: all 0.4s ease;
	align-self: flex-end;
	justify-self: flex-end;
}

.satrack-hub__clear-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.satrack-hub__clear--icon {
	border-radius: 10px;
	padding: 12px;
	margin-bottom: 4px;
}

.satrack-hub__clear--text,
.satrack-hub__clear--icon_text {
	border-radius: 22px;
	padding: 8px 20px;
}

.satrack-hub__clear-icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.satrack-hub__clear-icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}

.satrack-hub__clear--icon::after {
	content: attr(data-tooltip);
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(31, 31, 36, 0.92);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.satrack-hub__clear--icon:hover::after,
.satrack-hub__clear--icon:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.satrack-hub__clear:hover {
	border-color: var(--satrack-accent);
	background: var(--satrack-accent);
	color: #fff;
}

.satrack-filter--date {
	position: relative;
}

.satrack-date-range {
	position: relative;
}

.satrack-date-range[hidden] {
	display: none;
}

.satrack-date-range__trigger {
	text-align: left;
}

.satrack-date-range__popover {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 20;
	width: min(360px, calc(100vw - 48px));
	padding: 18px;
	border: 1px solid var(--satrack-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
	display: grid;
	gap: 14px;
}

.satrack-date-range__popover[hidden] {
	display: none;
}

.satrack-date-range__title {
	font-size: 14px;
	line-height: 1.4;
}

.satrack-date-range__field {
	display: grid;
	gap: 8px;
}

.satrack-date-range__field span {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(31, 31, 36, 0.7);
}

.satrack-date-range__apply {
	background: rgba(21, 62, 159, 0.08);
	color: var(--satrack-primary);
	font-weight: 700;
}

.satrack-hub__content {
	margin-top: 8px;
	position: relative;
	min-height: 280px;
}

.satrack-hub__loading {
	position: absolute;
	inset: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(16, 24, 40, 0.1), rgba(21, 62, 159, 0.18)), rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
}

.satrack-hub__loading[hidden] {
	display: none;
}

.satrack-hub__loading-spinner {
	width: 84px;
	height: 84px;
	border: 6px solid rgba(21, 62, 159, 0.18);
	border-top-color: var(--satrack-primary);
	border-right-color: var(--satrack-accent);
	border-radius: 50%;
	box-shadow:
		0 0 0 14px rgba(255, 255, 255, 0.96),
		0 18px 42px rgba(15, 23, 42, 0.18);
	animation: satrack-spin 0.75s linear infinite;
}

.satrack-hub__content.is-loading {
	pointer-events: none;
}

.satrack-hub__results {
	position: relative;
	z-index: 1;
}

.satrack-hub__layout {
	display: grid;
	grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.satrack-hub__index,
.satrack-card {
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--satrack-shadow);
}

.satrack-hub__index {
	position: sticky;
	top: var(--satrack-sticky-offset);
	padding: 24px;
}

.satrack-hub__index h3 {
	margin: 0 0 22px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(31, 31, 36, 0.84);
}

.satrack-hub__index-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.satrack-hub__index li + li {
	border-top: 1px solid rgba(22, 30, 54, 0.08);
}

.satrack-hub__index a {
	position: relative;
	display: block;
	padding: 12px 0 12px 26px;
	color: rgba(31, 31, 36, 0.86);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.2em;
}

.satrack-hub__index a .satrack-hub__index-icon {
	color: var(--str-global-color-primaro-30, #153e9f);
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0px;
	top: 10px;
}

.satrack-hub__index a .satrack-hub__index-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.satrack-hub__entries {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
}

.satrack-card {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}

.satrack-card--no-media {
	width: 36%;
}

.satrack-card__media {
	position: relative;
	width: 36%;
}

.satrack-card__media img,
.satrack-card__media video,
.satrack-card__media iframe,
.satrack-card__media .wp-video,
.satrack-card__media .wp-video-shortcode {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
	inset: 0;
	position: absolute;
}

.satrack-card__body {
	width: 64%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	align-content: start;
	gap: 6px;
	padding: 30px 40px 28px;
}

.satrack-card_float {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 16px;
}

.satrack-card__flag {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 2;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0px;
	padding: 6px 6px;
	border-radius: 99px;
	background: var(--satrack-type-color, #4b5563);
	color: #fff;
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	height: 2rem;
	width: 2rem;
	overflow: hidden;
	transition: all 0.4s ease;
}

.satrack-card__flag:hover {
	gap: 10px;
	padding: 6px 16px;
	width: auto;
	transition: all 0.4s ease;
}

.satrack-card__flag svg,
.satrack-type-badge svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

.satrack-card__flag .label-tipo {
	width: 0;
	white-space: nowrap;
	overflow: hidden;
	transition: width 0.4s ease;
}

.satrack-card__flag:hover .label-tipo {
	width: 100%;
	line-height: 1em;
}

.satrack-card__details {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #898989;
	padding-bottom: 2px;
	border-bottom: 1px solid var(--satrack-type-color, #4b5563);
}

.seg_details {
	display: flex;
	gap: 0.4rem;
}

.satrack-card__details .label {
	font-weight: 400;
}

.satrack-card__details .terminos {
	font-weight: 800;
	color: #696969;
}

.satrack-card__country-flags {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 8px;
	vertical-align: middle;
}

.satrack-card__country-flag {
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: inset 0 0 0 1px rgba(22, 30, 54, 0.08);
}

.satrack-card__country-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: #eef2fb;
	color: var(--satrack-primary);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(21, 62, 159, 0.12);
}

.satrack-card__meta {
	margin-top: 16px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(31, 31, 36, 0.72);
}

.satrack-card__title {
	margin: 0;
	color: var(--satrack-primary);
	font-weight: 600;
	font-size: clamp(20px, 1.6rem, 42px);
	line-height: 1em;
}

.satrack-card__title-link {
	color: inherit;
	text-decoration: none;
}

.satrack-card__subtitle {
	margin: 0;
	font-size: clamp(16px, 1.2vw, 24px);
	line-height: 1em;
	font-weight: 700;
	color: #141414;
}

.satrack-card__excerpt {
	margin-top: 20px;
	font-size: 0.9rem;
	line-height: 1.3em;
	color: #454545;
	min-height: 40px;
	flex-grow: 1;
	margin-bottom: 16px;
}

.satrack-card__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.satrack-card__button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 6px 20px;
	border: 1px solid var(--satrack-primary, #19289a);
	border-radius: 999px;
	color: var(--satrack-primary, #19289a);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.4s ease;
}

.satrack-card__button:hover {
	background-color: var(--satrack-primary, #19289a);
	color: #ffffff;
}

.satrack-card__button-arrow {
	font-size: 20px;
	line-height: 1;
}

.satrack-update-media__image,
.satrack-update-media video,
.satrack-update-media iframe,
.satrack-update-media .wp-video,
.satrack-update-media .wp-video-shortcode {
	border-radius: 0;
	background: var(--satrack-surface-muted);
}

.satrack-update-single {
	display: grid;
	gap: 32px;
}

.satrack-update-single-layout {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 50px;
	align-items: start;
	padding: 32px;
}

.satrack-virtual-single {
}

.satrack-virtual-single__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.satrack-virtual-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 32px;
	align-items: start;
}

.satrack-virtual-single__sidebar {
	position: sticky;
	top: 120px;
}

.satrack-virtual-single__sidebar-card {
	padding: 20px;
	box-shadow: var(--satrack-shadow);
	border-radius: 12px;
	background: #fff;
}

.satrack-virtual-single__sidebar-title {
	margin: 12px 0 20px;
	font-size: 1rem;
	line-height: 1em;
	font-weight: 700;
	color: #1f1f24;
}

.satrack-virtual-single__related-list {
	margin: 0;
}

.satrack-virtual-single__related-list li {
	display: flex;
}

.satrack-virtual-single__related-list li a {
	position: relative;
	display: block;
	padding: 8px 0 8px 26px;
	color: rgba(31, 31, 36, 0.86);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1em;
}

.satrack-virtual-single__related-list li a:hover {
	color: var(--bs-link-hover-color);
}

.satrack-virtual-single__related-list li. .satrack-hub__index-icon {
	width: 12px;
	height: 12px;
}

.satrack-virtual-single__related-list li .satrack-hub__index-icon {
	color: var(--str-global-color-primaro-30, #153e9f);
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0px;
	top: 10px;
}

.satrack-virtual-single__related-list li .satrack-hub__index-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.satrack-virtual-single__related-empty {
	margin: 0;
	color: #6b7280;
	font-size: 0.98rem;
	line-height: 1.6;
}

.satrack-update-single__media {
	overflow: hidden;
	position: relative;
	border-top: 4px solid var(--satrack-type-color, var(--satrack-primary));
}

.satrack-update-single__media img,
.satrack-update-single__media video,
.satrack-update-single__media iframe,
.satrack-update-single__media .wp-video,
.satrack-update-single__media .wp-video-shortcode {
	display: block;
	width: 100%;
	aspect-ratio: 2.2;
	object-fit: cover;
	overflow: center center;
	height: auto;
}

.satrack-update-single__body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}

.satrack-update-single__back {
	display: flex;
	justify-content: flex-start;
}

.satrack-update-single__back-link {
	display: inline-flex;
	align-items: left;
	gap: 10px;
	color: #848484;
	font-size: 0.85rem;
	line-height: 1em;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.2s ease;
}

.satrack-update-single__back-link:hover {
	color: var(--satrack-primary, #000000);
}

.satrack-update-single__language-switch {
	display: flex;
	justify-content: flex-end;
}

.satrack-update-single__type {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0.5rem 1.2rem;
}

.satrack-single-platform-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 2px 14px;
	border-radius: 99px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
}

.satrack-single-platform-badge .plat_icon {
	display: inline-flex;
	width: 20px;
}

.satrack-single-platform-badge svg {
	width: 100%;
	height: auto;
	fill: currentColor;
}

.satrack-single-platform-badge .label-platform-buttons {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1em;
}

.satrack-update-single__date {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7280;
}

.satrack-update-single__title {
	margin: 16px 0 0;
	font-weight: 700;
	font-size: clamp(18px, 2rem, 54px);
	line-height: 1.1em;
	color: var(--satrack-primary);
}

.satrack-update-single__subtitle,
.satrack-update-single__content h2 {
	margin: 24px 0 12px !important;
	font-size: clamp(16px, 1.5rem, 42px);
	line-height: 1.1em;
	font-weight: 700;
	color: #242424;
}

.satrack-update-single__content h3 {
	margin: 24px 0 12px !important;
	font-size: clamp(14px, 1.3rem, 34px);
	line-height: 1em;
	font-weight: 700;
	color: #545454;
}

.satrack-update-single__meta {
	display: flex;
	padding: 0 0 0.5rem;
	margin-bottom: 0;
	justify-content: flex-start;
	align-items: stretch;
	gap: 20px;
	border-bottom: 1px solid #e2e2e2;
}

.satrack-update-single__meta-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	font-size: 0.7rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.satrack-update-single__meta-label {
	font-weight: 400;
	color: #6b7280;
}

.satrack-update-single__meta-value {
	font-weight: 600;
	color: #000000;
}

.satrack-update-single__meta-list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px;
}

.satrack-update-single__meta-term {
	display: inline-flex;
	align-items: center;
}

.satrack-update-single__meta-separator {
	display: inline-flex;
	align-items: center;
	margin-right: 2px;
	color: #98a2b3;
	font-weight: 400;
}

.satrack-update-single__content {
	color: #525252;
	font-size: 1rem;
	line-height: 1.3em;
	padding-bottom: 50px;
}

.satrack-update-single__content p:not(:last-child) {
	margin-bottom: 12px;
	text-align: justify;
}

.satrack-update-single__content li {
	margin-bottom: 9px;
	text-align: justify;
}

.satrack-update-single__content li:last-child {
	margin-bottom: 16px;
	text-align: justify;
}

.satrack-update-single__content figure.wp-block-image {
	margin: 24px 0px !important;
}

.satrack-update-single__content figure.wp-block-image img {
	width: 100%;
}

@media (max-width: 980px) {
	.satrack-update-single-layout,
	.satrack-virtual-single__layout {
		grid-template-columns: 1fr;
	}

	.satrack-update-single-layout .satrack-virtual-single__sidebar,
	.satrack-virtual-single__sidebar {
		position: static;
	}

	.satrack-update-single__type {
		gap: 10px;
		padding: 0.75rem 1rem;
	}
}

.satrack-update-single__content > :first-child {
	margin-top: 0;
}

.satrack-update-single__content > :last-child {
	margin-bottom: 0;
}

.satrack-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--satrack-type-color, #4b5563);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.satrack-update-single__type .satrack-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 16px;
	border-radius: 99px;
	background: #ffffff;
	color: var(--satrack-type-color, #4b5563);
	font-size: 0.7rem;
	line-height: 1em;
	font-weight: 500;
	text-transform: uppercase;
}

.satrack-update-single__type .satrack-type-badge svg {
	width: 15px;
	height: 15px;
	fill: var(--satrack-type-color, #4b5563);
}

.satrack-card__play {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(17, 24, 39, 0.86);
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22);
}

.satrack-card__play::before {
	content: "";
	position: absolute;
	top: 24px;
	left: 30px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #fff;
}

.satrack-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding-top: 6px;
}

.satrack-pagination a,
.satrack-pagination span.current {
	display: inline-flex;
	min-width: 34px;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--satrack-border-strong);
	background: #fff;
	color: var(--satrack-type-color, #4b5563);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}

.satrack-pagination span.current,
.satrack-pagination a:hover {
	background: rgba(21, 62, 159, 0.08);
	border-color: rgba(21, 62, 159, 0.3);
}

.satrack-hub__empty {
	padding: 30px;
	border: 1px dashed var(--satrack-border-strong);
	border-radius: 24px;
	text-align: center;
	background: #fff;
}

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

@media (max-width: 1280px) {
	.satrack-hub__toolbar-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.satrack-card {
		grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
	}
}

@media (max-width: 1024px) {
	.satrack-hub {
		padding: 10px 30px;
	}

	.satrack-hub__index {
		display: none;
	}

	.satrack-country-tabs {
		width: 100%;
		margin: auto;
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	.satrack-hub__toolbar-top {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.satrack-lang-switch {
		position: relative;
		align-self: flex-end;
	}

	.satrack-hub__filter-panel {
		padding: 24px;
	}

	.satrack-hub__toolbar-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.satrack-hub__layout,
	.satrack-card {
		grid-template-columns: 1fr;
	}

	.satrack-hub__index {
		position: static;
	}

	.satrack-card__media::after {
		width: 100%;
		height: 5px;
		top: auto;
		bottom: 0;
	}

	.satrack-card__body {
		padding: 24px;
	}

	.satrack-update-single {
		gap: 24px;
	}
}

@media (max-width: 677px) {
	.satrack-hub {
		padding: 20px;
	}

	.satrack-country-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.satrack-country-tabs__item {
		min-height: 72px;
		font-size: 15px;
	}

	.satrack-hub__filter-panel {
		padding: 18px;
	}

	.satrack-hub__filter-actions {
		justify-content: stretch;
	}

	.satrack-hub__clear {
		width: 100%;
	}

	.satrack-hub__toolbar-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.satrack-filter--search input[type="search"] {
		min-height: 58px;
		padding-left: 22px;
		padding-right: 66px;
		font-size: 17px;
	}

	.satrack-filter__search-icon {
		right: 22px;
		width: 22px;
		height: 22px;
		border-width: 2.5px;
	}

	.satrack-date-range__popover {
		width: min(100%, calc(100vw - 36px));
	}

	.satrack-card__flag {
		position: absolute;
	}

	.satrack-card__media img,
	.satrack-card__media video,
	.satrack-card__media iframe,
	.satrack-card__media .wp-video,
	.satrack-card__media .wp-video-shortcode {
		min-height: 260px;
		position: relative;
		aspect-ratio: 1.8;
	}

	.satrack-card__title {
		font-size: clamp(20px, 1.4rem, 42px);
	}

	.satrack-card__subtitle {
		font-size: clamp(14px, 1.2rem, 30px);
	}

	.satrack-card__actions {
		justify-content: flex-start;
	}

	.satrack-card {
		flex-direction: column;
		align-items: stretch;
	}

	.satrack-card__media {
		width: 100%;
	}

	.satrack-update-media img {
		width: 100%;
		aspect-ratio: 2;
		min-height: 0;
	}

	.satrack-card__body {
		width: 100%;
		padding: 30px;
	}
}
