:root {
	--latam-bg: #ffffff;
	--latam-paper: #ffffff;
	--latam-band: #f7f9ff;
	--latam-ink: #04020d;
	--latam-muted: #797979;
	--latam-line: rgba(4, 2, 13, 0.08);
	--latam-accent: #3666db;
	--latam-accent-hover: #21144b;
	--latam-accent-soft: rgba(54, 102, 219, 0.08);
	--latam-green: #37961c;
	--latam-red: #b90505;
	--latam-green-soft: rgba(55, 150, 28, 0.06);
	--latam-red-soft: rgba(185, 5, 5, 0.06);
	--latam-hero-bg: linear-gradient(90deg, #21144b 0%, #122880 100%);
	--latam-hero-text: #ffffff;
	--latam-hero-muted: rgba(255, 255, 255, 0.9);
	--latam-hero-pill: rgba(255, 255, 255, 0.06);
	--latam-logo-blue: #1a5cff;
	--latam-logo-gold: #f5a524;
	--latam-nav: #111827;
	--latam-nav-active: #1a5cff;
	--latam-sans: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
	--latam-hero-font: "42dot Sans", var(--latam-sans);
	--latam-max: 46rem;
	--latam-hero-max: 77.5rem;
	--latam-gutter: 100px;
	--latam-footer-bg: #04020d;
	--latam-footer-text: #ffffff;
	--latam-footer-muted: #797979;
	--latam-footer-line: rgba(255, 255, 255, 0.12);
	--latam-footer-gold: #f4b942;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--latam-bg);
	color: var(--latam-ink);
	font-family: var(--latam-sans);
	font-size: 1.0625rem;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -3rem;
	z-index: 100;
	padding: 0.5rem 0.75rem;
	background: var(--latam-ink);
	color: #fff;
}

.skip-link:focus {
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: relative;
	background: var(--latam-paper);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	min-height: 72px;
	padding: 16px var(--latam-gutter);
}

.page-body__inner {
	width: min(var(--latam-max), calc(100% - (var(--latam-gutter) * 2)));
	margin-inline: auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: inherit;
}

.site-logo__image {
	display: block;
	height: 36px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}

.site-logo__mark {
	display: flex;
	flex-shrink: 0;
}

.site-logo__wordmark {
	display: flex;
	align-items: baseline;
	gap: 4px;
	line-height: 1;
}

.site-logo__mejores {
	color: var(--latam-logo-blue);
	font-size: 22px;
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.site-logo__casinos-wrap {
	position: relative;
	padding-top: 8px;
}

.site-logo__casinos {
	color: var(--latam-nav);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.site-logo__latam {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--latam-logo-gold);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
}

.site-header__toggle {
	display: none;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1.5px solid var(--latam-nav);
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
}

.site-header__toggle[aria-expanded="true"] {
	border-color: var(--latam-nav-active);
}

.site-header__toggle-bar,
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
	display: block;
	width: 14px;
	height: 1.5px;
	margin: 0 auto;
	background: var(--latam-nav);
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle-bar {
	position: relative;
}

.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
	position: absolute;
	left: 0;
	content: "";
}

.site-header__toggle-bar::before {
	top: -5px;
}

.site-header__toggle-bar::after {
	top: 5px;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar {
	background: transparent;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::before {
	top: 0;
	transform: rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::after {
	top: 0;
	transform: rotate(-45deg);
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	color: var(--latam-nav);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--latam-nav-active);
}

.hero {
	background: var(--latam-hero-bg);
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	padding: 58px var(--latam-gutter);
}

.entry-content > .hero,
.entry-content > .wp-block-shortcode:has(.hero),
.entry-content > .latam-brands-block,
.entry-content > .wp-block-shortcode:has(.latam-brands-block) {
	margin: 0;
}

/* Full-bleed sections on pages: widen the column instead of 100vw breakout (avoids ~8px scrollbar scroll). */
.page-body__inner:has(.hero),
.page-body__inner:has(.latam-brands-block) {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.entry-content .hero,
.entry-content .latam-brands-block,
.entry-content > .wp-block-shortcode:has(.hero),
.entry-content > .wp-block-shortcode:has(.latam-brands-block) {
	position: relative;
	left: auto;
	right: auto;
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* Keep non-bleed page content in the reading column when full-bleed blocks widen the inner */
.page-body__inner:has(.hero) > :not(.hero):not(.latam-brands-block):not(.latam-faq):not(.latam-advantages):not(.latam-media):not(.wp-block-shortcode),
.page-body__inner:has(.latam-brands-block) > :not(.hero):not(.latam-brands-block):not(.latam-faq):not(.latam-advantages):not(.latam-media):not(.wp-block-shortcode),
.page-body__inner:has(.latam-faq) > :not(.hero):not(.latam-brands-block):not(.latam-faq):not(.latam-advantages):not(.latam-media):not(.wp-block-shortcode),
.page-body__inner:has(.latam-advantages) > :not(.hero):not(.latam-brands-block):not(.latam-faq):not(.latam-advantages):not(.latam-media):not(.wp-block-shortcode),
.page-body__inner:has(.latam-media) > :not(.hero):not(.latam-brands-block):not(.latam-faq):not(.latam-advantages):not(.latam-media):not(.wp-block-shortcode),
.page-body__inner:has(.hero) > .wp-block-shortcode:not(:has(.hero)):not(:has(.latam-brands-block)):not(:has(.latam-faq)):not(:has(.latam-advantages)):not(:has(.latam-media)),
.page-body__inner:has(.latam-brands-block) > .wp-block-shortcode:not(:has(.hero)):not(:has(.latam-brands-block)):not(:has(.latam-faq)):not(:has(.latam-advantages)):not(:has(.latam-media)),
.page-body__inner:has(.latam-faq) > .wp-block-shortcode:not(:has(.hero)):not(:has(.latam-brands-block)):not(:has(.latam-faq)):not(:has(.latam-advantages)):not(:has(.latam-media)),
.page-body__inner:has(.latam-advantages) > .wp-block-shortcode:not(:has(.hero)):not(:has(.latam-brands-block)):not(:has(.latam-faq)):not(:has(.latam-advantages)):not(:has(.latam-media)),
.page-body__inner:has(.latam-media) > .wp-block-shortcode:not(:has(.hero)):not(:has(.latam-brands-block)):not(:has(.latam-faq)):not(:has(.latam-advantages)):not(:has(.latam-media)) {
	width: min(var(--latam-hero-max), calc(100% - (var(--latam-gutter) * 2)));
	margin-inline: auto;
	box-sizing: border-box;
}

.page-body:has(.hero) .page-body__inner {
	padding-top: 0;
}

.hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	max-width: var(--latam-hero-max);
	margin-inline: auto;
}

.hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
}

.hero__title {
	margin: 0;
	width: 100%;
	text-align: left;
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 46px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0;
}

.hero__description {
	width: 100%;
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.56;
}

.hero__description p {
	margin: 0;
}

.hero__description p + p {
	margin-top: 0;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	margin: 0;
}

.hero__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero__dates {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.hero__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	background: rgba(255, 255, 255, 0.2);
}

.hero__author-name {
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.56;
}

.hero__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-sizing: border-box;
	height: 25px;
	padding: 2px 10px;
	border-radius: 6px;
	background: var(--latam-hero-pill);
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.hero__pill-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--latam-hero-text);
}

.hero__pill time {
	color: inherit;
}

.hero--brand .hero__inner {
	gap: 20px;
}

.hero--brand .hero__brand-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.hero--brand .hero__brand-copy {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.hero--brand .hero__subtitle {
	margin: 0;
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
}

.hero--brand .hero__brand-author {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
}

.hero--brand .hero__brand-author-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 2px 0;
}

.hero--brand .hero__brand-author .hero__avatar {
	width: 42px;
	height: 42px;
}

.hero--brand .hero__brand-author .hero__author-name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	white-space: nowrap;
}

.hero--brand .hero__brand-dates {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.hero--brand .hero__brand-date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 2px 10px;
	background: var(--latam-hero-pill);
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
	white-space: nowrap;
}

.hero--brand .hero__brand-date time {
	color: inherit;
}

.hero--brand .hero__card {
	width: 100%;
}

.hero--brand .hero__description {
	max-width: none;
}

.hero__crumb {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.hero__crumb-home {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.hero__crumb-home:hover,
.hero__crumb-home:focus-visible {
	color: var(--latam-hero-text);
}

.hero__crumb-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.hero__crumb-sep {
	opacity: 0.8;
}

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

.hero__crumb-link:hover,
.hero__crumb-link:focus-visible {
	color: var(--latam-hero-text);
}

.latam-brand-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 20px 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	min-width: 0;
	overflow: hidden;
}

.latam-brand-hero__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex: 0 0 232px;
	width: 232px;
	height: 154px;
	padding: 12px;
	border-radius: 8px;
	background: #04020d;
	overflow: hidden;
}

.latam-brand-hero__logo-img,
.latam-brand-hero__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.latam-brand-hero__logo-fallback {
	font-size: 18px;
	font-weight: 700;
}

.latam-brand-hero__panels {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
	flex: 1 1 auto;
}

.latam-brand-hero__payments {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	box-sizing: border-box;
	height: 154px;
	padding: 21px 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	min-width: 0;
}

.latam-brand-hero__deposit {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	line-height: 1.56;
	white-space: nowrap;
}

.latam-brand-hero__deposit-label {
	color: rgba(255, 255, 255, 0.64);
	font-weight: 500;
}

.latam-brand-hero__deposit-value {
	color: #fff;
	font-weight: 700;
}

.latam-brand-hero__pay-list {
	display: grid;
	grid-template-columns: repeat(3, 50px);
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.latam-brand-hero__pay {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 50px;
	height: 34px;
	padding: 4px;
	border: 1.65px solid rgba(4, 2, 13, 0.12);
	border-radius: 6.6px;
	background: #fff;
}

.latam-brand-hero__pay img {
	max-width: 100%;
	max-height: 18px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.latam-brand-hero__stats {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
	box-sizing: border-box;
	height: 154px;
	margin: 0;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	list-style: none;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	line-height: 1.56;
	white-space: nowrap;
}

.latam-brand-hero__stats > li {
	display: flex;
	align-items: center;
	gap: 2px;
}

.latam-brand-hero__stat-label {
	color: rgba(255, 255, 255, 0.64);
	font-weight: 500;
}

.latam-brand-hero__stat-value {
	color: #fff;
	font-weight: 700;
}

.latam-brand-hero__bonuses {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	box-sizing: border-box;
	width: 249px;
	height: 154px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	min-width: 0;
}

.latam-brand-hero__bonuses-title {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
	white-space: nowrap;
}

.latam-brand-hero__bonus-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.latam-brand-hero__bonus-list li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	box-sizing: border-box;
	width: 212px;
	max-width: 100%;
	padding: 4px 8px;
	border-radius: 8px;
	background: var(--latam-accent-soft);
	border: 1px solid var(--latam-accent);
	color: #fff;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	white-space: nowrap;
}

.latam-brand-hero__bonus-list .latam-brand__bonus-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.latam-brand-hero__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.latam-brand-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 207px;
	padding: 8px 28px;
	border-radius: 8px;
	background: var(--latam-accent);
	color: #fff;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.latam-brand-hero__button:hover,
.latam-brand-hero__button:focus-visible {
	background: #2b56c7;
	color: #fff;
}

.latam-brand-hero__rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.latam-brand-hero__score {
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
}

.hero--author .hero__inner {
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
}

.hero--author .hero__profile {
	display: grid;
	grid-template-columns: 373px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 28px;
	row-gap: 20px;
	width: 100%;
}

.hero--author .hero__portrait {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 373px;
}

.hero--author .hero__photo {
	display: block;
	width: 373px;
	height: 289px;
	border-radius: 8px;
	object-fit: cover;
	background: rgba(255, 255, 255, 0.12);
}

.hero--author .hero__copy-head {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-width: 0;
}

.hero--author .hero__copy-head .hero__title {
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.22;
	overflow-wrap: anywhere;
}

.hero--author .hero__socials {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 17px;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 0;
}

.hero--author .hero__socials li {
	display: flex;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.hero--author .hero__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: var(--latam-hero-text);
	text-decoration: none;
}

.hero--author .hero__social:hover,
.hero--author .hero__social:focus-visible {
	opacity: 0.75;
}

.hero--author .hero__social-icon {
	display: block;
	width: 30px;
	height: 30px;
}

.hero--author .hero__description {
	grid-column: 2;
	grid-row: 2;
	max-width: none;
	margin: 0;
	min-width: 0;
	color: var(--latam-hero-text);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
	overflow-wrap: anywhere;
}

.hero--author .hero__description p {
	margin: 0;
}

.hero--author .hero__description p + p {
	margin-top: 0.75em;
}

.latam-author-articles {
	background: var(--latam-paper);
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	padding: 58px var(--latam-gutter);
}

.latam-author-articles__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
	width: 100%;
	max-width: var(--latam-hero-max);
	margin-inline: auto;
}

.latam-author-articles__title {
	margin: 0;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.latam-author-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	width: 100%;
}

.latam-author-card {
	margin: 0;
	min-width: 0;
}

.latam-author-card.is-enter {
	opacity: 0;
	transform: translate3d(0, 22px, 0) scale(0.985);
}

.latam-author-card.is-enter.is-visible {
	animation: latam-author-card-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: var(--enter-delay, 0ms);
}

@keyframes latam-author-card-enter {
	from {
		opacity: 0;
		transform: translate3d(0, 22px, 0) scale(0.985);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.latam-author-card__link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.latam-author-card__link:hover .latam-author-card__title,
.latam-author-card__link:focus-visible .latam-author-card__title {
	color: var(--latam-accent);
}

.latam-author-card__media {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 396 / 218;
	background: var(--latam-accent-soft);
}

.latam-author-card.is-enter.is-visible .latam-author-card__media {
	animation: latam-author-card-media 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: calc(var(--enter-delay, 0ms) + 40ms);
}

@keyframes latam-author-card-media {
	from {
		opacity: 0.55;
		transform: scale(1.04);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.latam-author-card__image,
.latam-author-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.latam-author-card__placeholder {
	min-height: 100%;
	background: linear-gradient(135deg, rgba(33, 20, 75, 0.12), rgba(18, 40, 128, 0.18));
}

.latam-author-card__title {
	margin: 0;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.latam-author-articles__empty {
	margin: 0;
	color: var(--latam-muted);
}

.latam-author-articles__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	align-self: flex-start;
	box-sizing: border-box;
	margin-top: 8px;
	padding: 8px 28px;
	border: 0;
	border-radius: 8px;
	background: var(--latam-accent);
	color: #fff;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	cursor: pointer;
	transition:
		background 0.2s ease,
		opacity 0.28s ease,
		transform 0.28s ease;
}

.latam-author-articles__more::after {
	content: "";
	display: none;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: latam-author-more-spin 0.7s linear infinite;
}

.latam-author-articles__more:hover,
.latam-author-articles__more:focus-visible {
	background: #2b56c7;
	color: #fff;
}

.latam-author-articles__more:disabled,
.latam-author-articles__more.is-loading {
	opacity: 0.78;
	cursor: wait;
}

.latam-author-articles__more.is-loading::after {
	display: inline-block;
}

.latam-author-articles__more.is-hiding {
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
}

.latam-author-articles__more[hidden] {
	display: none;
}

@keyframes latam-author-more-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.latam-author-card.is-enter,
	.latam-author-card.is-enter.is-visible,
	.latam-author-card.is-enter.is-visible .latam-author-card__media {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.latam-author-articles__more,
	.latam-author-articles__more.is-hiding,
	.latam-author-articles__more::after {
		transition: none;
		animation: none;
		transform: none;
	}

	.latam-author-articles__more.is-loading::after {
		display: none;
	}
}

.hero--author .hero__role {
	display: none;
}

.single-latam_brand .page-body__inner,
.single-latam_author_article .page-body__inner,
.single-latam_author .page-body__inner,
.page-template-author-hero-pages .page-body__inner {
	width: min(var(--latam-hero-max), calc(100% - (var(--latam-gutter) * 2)));
	padding-top: 36px;
}

.page-body {
	padding: 0 0 4.5rem;
}

.page-body:has(.latam-brands-block),
.page-body:has(.latam-faq),
.page-body:has(.latam-advantages),
.page-body:has(.latam-media) {
	background: var(--latam-band);
}

.page-body__inner {
	padding-top: 0.5rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.archive-item {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--latam-line);
}

.archive-item__title {
	margin: 0 0 0.5rem;
	font-family: var(--latam-sans);
}

.site-footer {
	background: var(--latam-footer-bg);
	color: var(--latam-footer-text);
	font-family: var(--latam-hero-font);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	box-sizing: border-box;
	gap: 36px;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 48px var(--latam-gutter) 38px;
}

.site-footer__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px 64px;
	width: 100%;
	min-width: 0;
	min-height: 86px;
}

.site-footer__brand {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: min(575px, 46%);
}

.site-footer__brand-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.site-footer__brand-logo img {
	display: block;
	width: 228px;
	height: 36px;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
}

.site-footer__wordmark {
	display: flex;
	align-items: baseline;
	gap: 4px;
	line-height: 1;
}

.site-footer__wordmark-mejores {
	color: var(--latam-accent);
	font-size: 22px;
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.site-footer__wordmark-casinos-wrap {
	position: relative;
	padding-top: 8px;
}

.site-footer__wordmark-casinos {
	color: var(--latam-footer-text);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.site-footer__wordmark-latam {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--latam-footer-gold);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
}

.site-footer__description {
	margin: 0;
	color: var(--latam-footer-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
}

.site-footer__nav {
	width: 100%;
}

.site-footer__nav--countries {
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
}

.site-footer__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list li {
	display: inline-flex;
	align-items: center;
}

.site-footer__nav--countries .site-footer__list {
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px 36px;
}

.site-footer__nav--countries a {
	white-space: nowrap;
}

.site-footer__nav--links {
	min-height: 25px;
}

.site-footer__nav--links .site-footer__list {
	justify-content: space-between;
	gap: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
}

.site-footer__nav--links .site-footer__list li {
	flex: 1 1 0;
	min-width: 0;
}

.site-footer__nav--links .site-footer__list li:last-child {
	flex: 0 1 auto;
	justify-content: flex-end;
}

.site-footer__nav--links .site-footer__list li:not(:last-child)::after {
	content: "";
	flex: 1 1 auto;
	align-self: center;
	height: 16px;
	margin: 0 18px;
	background: linear-gradient(
		90deg,
		transparent calc(50% - 0.5px),
		var(--latam-footer-line) calc(50% - 0.5px),
		var(--latam-footer-line) calc(50% + 0.5px),
		transparent calc(50% + 0.5px)
	);
}

.site-footer a {
	color: var(--latam-footer-text);
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer__nav--countries .is-current > a {
	color: var(--latam-accent);
}

.site-footer__rule {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	border: 0;
	background: var(--latam-footer-line);
}

/* Only between brand and countries when the head stacks (≤1024). */
.site-footer__rule.site-footer__rule--head {
	display: none;
	flex: 0 0 auto;
}

.site-footer__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 64px;
	min-height: 32px;
}

.site-footer__logo {
	display: block;
	height: 32px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
}

.site-footer p {
	margin: 0;
}

.site-footer__copyright {
	color: var(--latam-footer-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

/* Brand-768: logo + CTA on top row, bonuses | payments | stats below */
@media (max-width: 1024px) and (min-width: 641px) {
	:root {
		--latam-gutter: 40px;
	}

	.hero,
	.latam-brands-block {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.site-footer__inner {
		padding: 42px var(--latam-gutter) 34px;
		gap: 30px;
	}

	.site-footer__head {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		min-height: 0;
	}

	.site-footer__rule.site-footer__rule--head {
		display: block;
	}

	.site-footer__brand {
		gap: 12px;
		max-width: none;
	}

	.site-footer__nav--countries,
	.site-footer__nav--countries .site-footer__list {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 12px 24px;
	}

	.site-footer__nav--links .site-footer__list {
		display: grid;
		grid-template-columns: repeat(4, max-content);
		justify-content: space-between;
		align-items: center;
		width: 100%;
		row-gap: 36px;
		column-gap: 0;
	}

	.site-footer__nav--links .site-footer__list li {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.site-footer__nav--links .site-footer__list li:last-child {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(5) {
		grid-column: 1;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(6) {
		grid-column: 2;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(7) {
		grid-column: 4;
		justify-self: end;
	}

	.site-footer__nav--links .site-footer__list li:not(:last-child)::after {
		flex: 0 0 1px;
		width: 1px;
		height: 16px;
		margin: 0 16px;
		background: var(--latam-footer-line);
	}

	.site-footer__nav--links .site-footer__list li:nth-child(4)::after,
	.site-footer__nav--links .site-footer__list li:nth-child(6)::after {
		display: none;
	}

	.site-footer__logos {
		gap: 32px 40px;
	}

	.site-footer__logo {
		height: 18px;
		max-width: 110px;
	}

}

/* Brand card: wrap until ~1440 — single-row desktop does not fit mid widths (e.g. 1091) */
@media (max-width: 1360px) and (min-width: 641px) {
	.hero.hero--brand {
		padding: 48px 40px;
	}

	.hero--brand .hero__title {
		font-size: 40px;
		line-height: 1.22;
	}

	.hero--brand .hero__brand-dates {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.latam-brand-hero {
		flex-wrap: wrap;
		align-items: center;
		gap: 18px;
		padding: 20px 26px;
		overflow: hidden;
	}

	.latam-brand-hero__logo {
		order: 1;
		flex: 0 0 232px;
		max-width: 100%;
		background: #131412;
	}

	.latam-brand-hero__cta {
		order: 2;
		margin-left: auto;
		min-width: 0;
	}

	.latam-brand-hero__panels {
		order: 3;
		flex: 1 1 100%;
		align-items: stretch;
		gap: 12px;
		min-width: 0;
	}

	.latam-brand-hero__bonuses {
		order: 1;
		width: auto;
		max-width: none;
		height: auto;
		min-height: 187px;
		flex: 1 1 0;
		min-width: 0;
		overflow: hidden;
	}

	.latam-brand-hero__payments {
		order: 2;
		height: auto;
		min-height: 187px;
		padding: 14px;
		flex: 1 1 0;
		min-width: 0;
		overflow: hidden;
	}

	.latam-brand-hero__stats {
		order: 3;
		height: auto;
		min-height: 187px;
		padding: 14px;
		width: auto;
		flex: 1 1 0;
		min-width: 0;
		white-space: normal;
		overflow: hidden;
	}

	.latam-brand-hero__stats > li {
		flex-wrap: wrap;
		min-width: 0;
	}

	.latam-brand-hero__pay-list {
		grid-template-columns: repeat(3, 45px);
	}

	.latam-brand-hero__pay {
		width: 45px;
		height: 31px;
	}

	.latam-brand-hero__bonuses-title {
		white-space: normal;
	}

	.latam-brand-hero__bonus-list {
		min-width: 0;
		width: 100%;
	}

	.latam-brand-hero__bonus-list li {
		width: 100%;
		max-width: 168px;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 4px 8px;
		height: auto;
		white-space: normal;
		line-height: 1.25;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.latam-brand-hero__deposit {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		white-space: normal;
		min-width: 0;
	}

	.latam-brand-hero__button {
		width: 207px;
		max-width: 100%;
	}

	/* Author-768: photo 274×212 + title/icons, bio full width; articles 2-col */
	.hero.hero--author {
		padding: 48px 40px;
	}

	.hero--author .hero__profile {
		grid-template-columns: 274px minmax(0, 1fr);
		column-gap: 28px;
		row-gap: 12px;
		align-items: center;
	}

	.hero--author .hero__portrait {
		grid-row: 1;
		width: 274px;
		max-width: 100%;
	}

	.hero--author .hero__photo {
		width: 274px;
		max-width: 100%;
		height: 212px;
		border-radius: 8px;
	}

	.hero--author .hero__copy-head {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 20px;
		min-width: 0;
	}

	.hero--author .hero__copy-head .hero__title {
		font-size: 40px;
		line-height: 1.14;
		overflow-wrap: anywhere;
	}

	.hero--author .hero__socials {
		margin: 0;
	}

	.hero--author .hero__description {
		grid-column: 1 / -1;
		grid-row: 2;
		min-width: 0;
	}

	.latam-author-articles {
		padding: 52px 40px;
	}

	.latam-author-articles__inner {
		gap: 20px;
	}

	.latam-author-articles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.latam-author-card__link {
		gap: 10px;
	}

	.latam-author-card__media {
		aspect-ratio: 336 / 202;
		border-radius: 8px;
	}

	.latam-author-card__title {
		font-size: 20px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.latam-author-articles__title {
		font-size: 30px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}
}

/* Footer head stacks until ~1440 so countries stay one row without overflow */
@media (max-width: 1360px) and (min-width: 1025px) {
	.site-footer__head {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		min-height: 0;
	}

	.site-footer__rule.site-footer__rule--head {
		display: block;
	}

	.site-footer__brand {
		max-width: none;
	}

	.site-footer__nav--countries,
	.site-footer__nav--countries .site-footer__list {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 12px 24px;
	}
}

@media (max-width: 768px) {
	:root {
		--latam-gutter: 40px;
	}

	.site-header {
		z-index: 40;
	}

	.site-header__inner {
		padding: 6px var(--latam-gutter) 12px;
		min-height: 0;
	}

	.site-header__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 20;
		flex-shrink: 0;
		width: 28px;
		height: 28px;
	}

	.site-header__toggle[aria-expanded="true"] {
		border-color: var(--latam-nav);
	}

	/* Figma Homepage-Menu: dim overlay below header */
	body::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 30;
		background: rgba(4, 2, 13, 0.74);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.32s ease, visibility 0.32s ease;
	}

	body.latam-nav-open::before {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	body.latam-nav-open {
		overflow: hidden;
	}

	/* Figma Homepage-Menu 768: right panel 292×299, links 16/500 gap 32 */
	.site-nav {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		position: absolute;
		top: 100%;
		right: 0;
		left: auto;
		z-index: 35;
		box-sizing: border-box;
		width: 292px;
		min-height: 299px;
		padding: 52px 24px 40px;
		border: 0;
		background: var(--latam-paper);
		box-shadow: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(16px, -12px, 0);
		transition:
			opacity 0.28s ease,
			transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.34s;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate3d(0, 0, 0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 32px;
		width: 100%;
	}

	.site-nav__list > li {
		border-bottom: 0;
		opacity: 0;
		transform: translateY(-10px);
		transition:
			opacity 0.28s ease,
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.site-nav.is-open .site-nav__list > li {
		opacity: 1;
		transform: none;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(1) {
		transition-delay: 0.04s;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(2) {
		transition-delay: 0.08s;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(3) {
		transition-delay: 0.12s;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(4) {
		transition-delay: 0.16s;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(5) {
		transition-delay: 0.2s;
	}

	.site-nav.is-open .site-nav__list > li:nth-child(6) {
		transition-delay: 0.24s;
	}

	.site-nav__list a {
		display: block;
		padding: 0;
		color: var(--latam-ink, #04020d);
		font-family: var(--latam-hero-font, "42dot Sans", sans-serif);
		font-size: 16px;
		font-weight: 500;
		line-height: 1.56;
		text-align: center;
		white-space: nowrap;
	}

	.site-nav__list a:hover,
	.site-nav__list .current-menu-item > a,
	.site-nav__list .current_page_item > a {
		color: var(--latam-ink, #04020d);
	}

	@media (prefers-reduced-motion: reduce) {
		body::before,
		.site-nav,
		.site-nav__list > li {
			transition: none;
		}

		.site-nav {
			transform: none;
		}

		.site-nav__list > li {
			transform: none;
		}
	}

	.hero--brand .hero__brand-head {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
	}

	.hero {
		padding: 48px var(--latam-gutter);
	}

	.hero.hero--brand {
		padding: 48px var(--latam-gutter);
	}

	.hero__inner {
		gap: 16px;
	}

	.hero__copy {
		gap: 10px;
	}

	.hero__avatar {
		width: 38px;
		height: 38px;
	}

	.hero--brand .hero__inner {
		gap: 20px;
	}

	.hero--brand .hero__title {
		font-size: 40px;
		line-height: 1.22;
	}

	.hero--brand .hero__subtitle {
		margin: 0;
		font-size: 16px;
		line-height: 1.56;
	}

	.hero--brand .hero__brand-copy {
		flex: 1 1 0;
		min-width: 0;
	}

	.hero--brand .hero__brand-author {
		flex: 0 0 auto;
		max-width: none;
	}

	.hero--brand .hero__brand-dates {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.hero--brand .hero__crumb {
		font-size: 14px;
		gap: 6px;
	}

	.hero--brand .hero__description {
		max-width: none;
		font-size: 16px;
		line-height: 1.56;
	}

	.latam-brands-block {
		padding: 52px var(--latam-gutter);
		gap: 20px;
	}

	.latam-brands-block__title {
		font-size: 30px;
		font-weight: 700;
		line-height: 1.2;
	}

	.latam-brands {
		gap: 12px;
	}

	.hero__title {
		font-size: 40px;
		line-height: 1.14;
	}

	.site-footer__inner {
		padding: 42px var(--latam-gutter) 34px;
		gap: 30px;
	}

	.site-footer__head {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		min-height: 0;
	}

	.site-footer__rule.site-footer__rule--head {
		display: block;
	}

	.site-footer__brand {
		gap: 12px;
		max-width: none;
	}

	.site-footer__nav--countries,
	.site-footer__nav--countries .site-footer__list {
		width: 100%;
		justify-content: space-between;
		gap: 0;
	}

	.site-footer__nav--links .site-footer__list {
		display: grid;
		grid-template-columns: repeat(4, max-content);
		justify-content: space-between;
		align-items: center;
		width: 100%;
		row-gap: 36px;
		column-gap: 0;
	}

	.site-footer__nav--links .site-footer__list li {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.site-footer__nav--links .site-footer__list li:last-child {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(5) {
		grid-column: 1;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(6) {
		grid-column: 2;
	}

	.site-footer__nav--links .site-footer__list li:nth-child(7) {
		grid-column: 4;
		justify-self: end;
	}

	.site-footer__nav--links .site-footer__list li:not(:last-child)::after {
		flex: 0 0 1px;
		width: 1px;
		height: 16px;
		margin: 0 16px;
		background: var(--latam-footer-line);
	}

	.site-footer__nav--links .site-footer__list li:nth-child(4)::after,
	.site-footer__nav--links .site-footer__list li:nth-child(6)::after {
		display: none;
	}

	.site-footer__logos {
		gap: 53px;
	}

	.site-footer__logo {
		height: 18px;
		max-width: 110px;
	}
}

@media (max-width: 640px) {
	:root {
		--latam-gutter: 15px;
	}

	.hero.hero--brand,
	.hero.hero--author {
		padding: 36px var(--latam-gutter);
	}

	/* Author-360: crumb overlays padding; photo → title → icons → bio */
	.hero.hero--author {
		position: relative;
	}

	.hero--author .hero__inner {
		gap: 0;
	}

	.hero--author .hero__crumb {
		position: absolute;
		top: 8px;
		left: var(--latam-gutter);
		z-index: 1;
		gap: 4px;
		font-size: 12px;
		line-height: 1.5;
		color: rgba(255, 255, 255, 0.55);
	}

	.hero--author .hero__crumb-icon {
		width: 14px;
		height: 14px;
	}

	.hero--author .hero__crumb-current,
	.hero--author .hero__crumb-link {
		color: var(--latam-hero-text);
	}

	.hero--author .hero__profile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
	}

	.hero--author .hero__portrait {
		grid-column: auto;
		grid-row: auto;
		width: 212px;
		max-width: 100%;
		order: 1;
	}

	.hero--author .hero__photo {
		width: 212px;
		max-width: 100%;
		height: 164px;
		border-radius: 6px;
	}

	.hero--author .hero__copy-head {
		grid-column: auto;
		grid-row: auto;
		display: contents;
	}

	.hero--author .hero__copy-head .hero__title {
		order: 2;
		width: auto;
		max-width: 100%;
		font-size: 32px;
		line-height: 1.1;
		overflow-wrap: anywhere;
	}

	.hero--author .hero__socials {
		order: 3;
		gap: 12px;
		margin-top: 0;
	}

	.hero--author .hero__description {
		grid-column: auto;
		grid-row: auto;
		order: 4;
		width: 100%;
		font-size: 14px;
		line-height: 1.42;
		min-width: 0;
	}

	.latam-author-articles {
		padding: 42px var(--latam-gutter);
	}

	.latam-author-articles__inner {
		gap: 20px;
	}

	.latam-author-articles__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.latam-author-card__link {
		gap: 8px;
	}

	.latam-author-card__media {
		aspect-ratio: 330 / 174;
		border-radius: 6px;
	}

	.latam-author-card__title {
		font-size: 16px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.latam-author-articles__title {
		font-size: 28px;
		line-height: 1.04;
		overflow-wrap: anywhere;
	}

	.hero--brand .hero__inner {
		gap: 16px;
	}

	.hero--brand .hero__brand-head {
		flex-direction: column;
		gap: 16px;
	}

	.hero--brand .hero__brand-copy {
		gap: 8px;
	}

	.hero--brand .hero__brand-author {
		max-width: none;
	}

	.hero--brand .hero__brand-author .hero__avatar {
		width: 34px;
		height: 34px;
	}

	.hero--brand .hero__brand-author .hero__author-name {
		font-size: 14px;
		line-height: 1.42;
	}

	.hero--brand .hero__brand-dates {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.hero--brand .hero__brand-date {
		padding: 0 6px;
		font-size: 14px;
		line-height: 1.42;
		white-space: normal;
		max-width: 100%;
	}

	.hero--brand .hero__brand-author .hero__author-name {
		white-space: normal;
	}

	.hero--brand .hero__title {
		font-size: 32px;
		line-height: 1.22;
		overflow-wrap: anywhere;
	}

	.hero--brand .hero__subtitle {
		margin: 0;
		font-size: 14px;
		line-height: 1.42;
	}

	.hero--brand .hero__crumb {
		font-size: 12px;
		gap: 4px;
	}

	.hero--brand .hero__description {
		font-size: 14px;
		line-height: 1.42;
	}

	/* Brand-360: logo → bonuses → deposit → stats → rating → CTA */
	.latam-brand-hero {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 16px 12px;
		border-radius: 12px;
	}

	.latam-brand-hero__logo {
		order: 1;
		flex: 0 0 auto;
		width: 232px;
		max-width: 100%;
		height: 154px;
		border-radius: 6px;
		background: #131412;
	}

	.latam-brand-hero__panels {
		order: 2;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 12px;
	}

	.latam-brand-hero__bonuses {
		order: 1;
		width: 100%;
		height: auto;
		padding: 16px 14px;
		border-radius: 6px;
	}

	.latam-brand-hero__payments {
		order: 2;
		width: 100%;
		height: auto;
		padding: 16px 14px;
		border-radius: 6px;
	}

	.latam-brand-hero__stats {
		order: 3;
		width: 100%;
		height: auto;
		padding: 16px 14px;
		border-radius: 6px;
		gap: 10px;
		font-size: 14px;
		white-space: normal;
	}

	.latam-brand-hero__bonuses-title,
	.latam-brand-hero__deposit,
	.latam-brand-hero__deposit-label,
	.latam-brand-hero__stat-label {
		color: rgba(255, 255, 255, 0.64);
		font-size: 14px;
		font-weight: 500;
		line-height: 1.42;
	}

	.latam-brand-hero__deposit-value,
	.latam-brand-hero__stat-value {
		font-size: 14px;
		line-height: 1.42;
	}

	.latam-brand-hero__pay-list {
		grid-template-columns: repeat(5, 36px);
		gap: 4px;
		justify-content: start;
	}

	.latam-brand-hero__pay {
		width: 36px;
		height: 24px;
		padding: 2px;
		border-radius: 4px;
	}

	.latam-brand-hero__bonus-list li {
		width: 100%;
		max-width: none;
		justify-content: flex-start;
		align-items: flex-start;
		border-radius: 6px;
		font-size: 14px;
		line-height: 1.42;
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.latam-brand-hero__deposit {
		white-space: normal;
		min-width: 0;
	}

	.latam-brand-hero__bonuses-title {
		white-space: normal;
	}

	.latam-brand-hero__cta {
		order: 3;
		width: 100%;
		gap: 10px;
	}

	.latam-brand-hero__rating {
		order: -1;
		justify-content: center;
	}

	.latam-brand-hero__score {
		font-size: 14px;
		line-height: 1.42;
	}

	.latam-brand-hero__button {
		width: 100%;
		max-width: 302px;
		padding: 8px 28px;
		border-radius: 6px;
		font-size: 14px;
		line-height: 1.42;
	}

	.site-header__inner {
		padding: 4px var(--latam-gutter) 8px;
		min-height: 42px;
	}

	.site-header__toggle {
		width: 20px;
		height: 20px;
		border-width: 1px;
		border-radius: 4px;
	}

	.site-header__toggle-bar,
	.site-header__toggle-bar::before,
	.site-header__toggle-bar::after {
		width: 10px;
		height: 1px;
	}

	.site-header__toggle-bar::before {
		top: -3.5px;
	}

	.site-header__toggle-bar::after {
		top: 3.5px;
	}

	/* Figma Homepage-Menu 360: right panel 175×312, links 14/500 gap 24 */
	.site-nav {
		width: 175px;
		min-height: 312px;
		padding: 30px 16px 40px;
	}

	.site-nav__list {
		gap: 24px;
	}

	.site-nav__list a {
		font-size: 14px;
		line-height: 1.42;
	}

	.site-footer__inner {
		align-items: stretch;
		padding: 32px var(--latam-gutter) 30px;
		gap: 24px;
		text-align: left;
	}

	.site-footer__head {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		min-height: 0;
	}

	.site-footer__rule.site-footer__rule--head {
		display: block;
	}

	.site-footer__brand {
		gap: 12px;
		max-width: none;
	}

	.site-footer__brand-logo img {
		width: auto;
		height: 28px;
	}

	.site-footer__description {
		font-size: 12px;
		line-height: 1.5;
	}

	.site-footer__nav--countries {
		width: 100%;
		font-size: 14px;
		line-height: 1.42;
	}

	.site-footer__nav--countries .site-footer__list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		justify-content: space-between;
		gap: 20px 0;
		width: 100%;
	}

	.site-footer__nav--countries .site-footer__list li {
		width: 105px;
		max-width: 100%;
	}

	.site-footer__nav--links .site-footer__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: space-between;
		gap: 18px 0;
		width: 100%;
		font-size: 14px;
		line-height: 1.42;
	}

	.site-footer__nav--links .site-footer__list li {
		flex: none;
		justify-content: flex-start;
		width: auto;
	}

	.site-footer__nav--links .site-footer__list li:last-child {
		grid-column: 1 / -1;
		justify-content: center;
		justify-self: center;
	}

	.site-footer__nav--links .site-footer__list li:not(:last-child)::after {
		display: none;
	}

	.site-footer__logos {
		display: grid;
		grid-template-columns: repeat(3, max-content);
		justify-content: center;
		justify-items: center;
		align-items: center;
		gap: 20px 53px;
		width: 100%;
	}

	.site-footer__logo {
		height: 18px;
		max-width: 110px;
	}

	.site-footer__copyright {
		font-size: 12px;
		line-height: 1.5;
		text-align: center;
	}

	.site-logo__image {
		height: 28px;
		max-width: 180px;
	}

	.site-logo__mejores,
	.site-logo__casinos {
		font-size: 16px;
	}

	.site-logo__wordmark {
		padding-right: 0;
	}
}

@media (max-width: 480px) {
	.hero,
	.latam-brands-block {
		padding: 36px var(--latam-gutter);
	}

	.hero.hero--brand {
		padding: 36px var(--latam-gutter);
	}

	.hero__inner {
		gap: 16px;
	}

	.hero__copy {
		gap: 10px;
	}

	.hero__title {
		font-size: 32px;
		line-height: 1.1;
	}

	.hero__description,
	.hero__pill {
		font-size: 14px;
		line-height: 1.42;
	}

	.hero__pill {
		height: auto;
		min-height: 25px;
		padding: 2px 8px;
		white-space: normal;
	}

	.hero__meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.hero__dates {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.hero__author {
		gap: 6px;
	}

	.hero__author-name {
		font-size: 14px;
		line-height: 1.42;
	}

	.hero__avatar {
		width: 28px;
		height: 28px;
	}
}

.page-body__inner:has(.latam-brands-block),
.page-body__inner:has(.latam-faq),
.page-body__inner:has(.latam-advantages),
.page-body__inner:has(.latam-media) {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

/* Full-bleed blocks keep their own gutters; media stays in the reading column */
.page-body__inner:has(.latam-media) > .latam-media,
.page-body__inner:has(.latam-faq) > .latam-faq,
.page-body__inner:has(.latam-advantages) > .latam-advantages {
	width: min(var(--latam-hero-max), calc(100% - (var(--latam-gutter) * 2)));
	margin-inline: auto;
	box-sizing: border-box;
}

.latam-brands-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	padding: 58px var(--latam-gutter);
	background: var(--latam-paper);
	font-family: var(--latam-hero-font);
	color: var(--latam-ink);
}

.latam-brands-block__header {
	width: 100%;
	max-width: var(--latam-hero-max);
	margin: 0;
}

.latam-brands-block__title {
	margin: 0;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.latam-brands-block__intro {
	margin: 8px 0 0;
	max-width: 46rem;
	color: var(--latam-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
}

.latam-brands {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	max-width: var(--latam-hero-max);
	margin: 0;
}

.latam-brand {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-sizing: border-box;
	width: 100%;
	padding: 18px 26px;
	border: 2px solid var(--latam-accent);
	border-radius: 16px;
	background: var(--latam-paper);
}
.latam-brand:hover {
	background: var(--latam-accent-soft);
	border: 2px solid #3666DB;
	border-radius: 16px;
}

.latam-brand__main {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
	flex: 1 1 auto;
}

.latam-brand__identity {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex-shrink: 0;
}

.latam-brand__logo-wrap {
	flex-shrink: 0;
}

.latam-brand__rank {
	position: absolute;
	top: 0;
	left: 26px;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 2px;
	box-sizing: border-box;
	width: 32px;
	height: 28px;
	padding: 0;
	background: var(--latam-accent);
	line-height: 1;
	color: #fff;
}

.latam-brand__rank svg {
	display: block;
	width: 12px;
	height: 12px;
}

.latam-brand__rank--n svg {
	display: none;
}

.latam-brand__rank-n {
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.latam-brand__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 112px;
	overflow: hidden;
	border-radius: 8px;
	background: #111;
}

.latam-brand__logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.latam-brand__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	min-width: 0;
}

.latam-brand__title {
	margin: 0;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}

.latam-brand__rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.latam-brand__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.latam-brand__star {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	color: #e5e7eb;
}

.latam-brand__star-bg,
.latam-brand__star-fg {
	display: block;
}

.latam-brand__star-fg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	color: #f5a524;
}

.latam-brand__star svg {
	display: block;
	width: 16px;
	height: 16px;
}

.latam-brand__score {
	color: var(--latam-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.latam-brand__offer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
	flex-shrink: 0;
}

.latam-brand__bonus {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 6px 14px;
	border: 1px solid var(--latam-accent);
	border-radius: 8px;
	background: var(--latam-paper);
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
}

.latam-brand__bonus-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.latam-brand__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.latam-brand__chips li {
	padding: 6px 12px;
	border: 1px solid var(--latam-line);
	border-radius: 8px;
	background: var(--latam-paper);
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.latam-brand__payments {
	flex-shrink: 0;
	min-width: 168px;
}

.latam-brand__payments-title {
	margin: 0 0 8px;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.latam-brand__pay-list {
	display: grid;
	grid-template-columns: repeat(3, 56px);
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.latam-brand__pay {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 38px;
	padding: 4px 6px;
	border: 1px solid var(--latam-line);
	border-radius: 8px;
	background: var(--latam-paper);
}

.latam-brand__pay img {
	max-width: 100%;
	max-height: 28px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.latam-brand__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	min-width: 139px;
}

.latam-brand__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 139px;
	min-height: 40px;
	padding: 8px 28px;
	border-radius: 8px;
	background: var(--latam-accent);
	color: #fff !important;
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}

.latam-brand__cta:hover,
.latam-brand__cta:focus-visible {
	background: var(--latam-accent-hover);
	color: #fff !important;
	text-decoration: none !important;
}

.latam-brand__review {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--latam-accent);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.latam-brand__review:hover,
.latam-brand__review:focus-visible {
	background: transparent;
	color: var(--latam-accent-hover);
}

@media (max-width: 1024px) and (min-width: 769px) {
	.latam-brand {
		flex-wrap: wrap;
		gap: 16px;
	}

	.latam-brand__main {
		flex: 1 1 100%;
		justify-content: space-between;
	}
}

/* Figma Homepage-768 Card_01 — tablet frame (768–1024) */
@media (max-width: 1024px) and (min-width: 768px) {
	.latam-brand {
		flex-wrap: wrap;
		align-items: center;
		padding: 14px 18px;
		gap: 16px;
	}

	.latam-brand__rank {
		left: 18px;
		width: 32px;
		height: 28px;
	}

	.latam-brand__rank-n {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.25;
	}

	.latam-brand__main {
		flex: 1 1 100%;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		min-width: 0;
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(4, 2, 13, 0.12);
	}

	.latam-brand__identity {
		gap: 10px;
		flex-shrink: 0;
	}

	.latam-brand__logo {
		width: 112px;
		height: 96px;
	}

	.latam-brand__title {
		font-size: 24px;
		font-weight: 600;
		line-height: 1.2;
	}

	.latam-brand__score {
		font-size: 16px;
		line-height: 1.56;
	}

	.latam-brand__offer {
		width: 354px;
		max-width: calc(100% - 250px);
		flex: 0 1 354px;
		min-width: 0;
		gap: 8px;
	}

	.latam-brand__bonus {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		min-height: 37px;
		padding: 6px 8px;
		background: var(--latam-accent-soft);
		font-size: 16px;
		line-height: 1.56;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.latam-brand__chips {
		gap: 6px;
		flex-wrap: nowrap;
	}

	.latam-brand__chips li {
		padding: 5px 8px;
		border-radius: 6px;
		font-size: 16px;
		line-height: 1.56;
	}

	.latam-brand__payments {
		width: auto;
		flex: 1 1 auto;
		min-width: 0;
	}

	.latam-brand__payments-title {
		margin: 0 0 6px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.56;
	}

	.latam-brand__pay-list {
		display: flex;
		flex-wrap: nowrap;
		gap: 4px;
		grid-template-columns: none;
	}

	.latam-brand__pay {
		width: 56px;
		height: 38px;
		border-radius: 6.6px;
	}

	.latam-brand__actions {
		width: auto;
		flex: 0 0 auto;
		flex-direction: row;
		align-items: center;
		gap: 24px;
		min-width: 0;
	}

	.latam-brand__cta {
		width: auto;
		min-height: 41px;
		padding: 8px 28px;
		font-size: 16px;
	}

	.latam-brand__review {
		font-size: 16px;
	}
}

/* Figma Homepage-360 Card_01 — exact mobile frame */
@media (max-width: 767px) {
	.latam-brand {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		padding: 12px 14px;
		gap: 12px;
	}

	.latam-brand__rank {
		left: 14px;
		width: 28px;
		height: 24px;
	}

	.latam-brand__rank svg {
		width: 10px;
		height: 10px;
	}

	.latam-brand__rank-n {
		font-size: 12px;
		font-weight: 500;
		line-height: 1.5;
	}

	.latam-brand__main {
		flex: 0 0 auto;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 12px;
		width: 100%;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.latam-brand__identity {
		gap: 8px;
	}

	.latam-brand__logo {
		width: 96px;
		height: 82px;
	}

	.latam-brand__title {
		font-size: 22px;
		font-weight: 600;
		line-height: 1.2;
	}

	.latam-brand__stars {
		gap: 0;
	}

	.latam-brand__star {
		width: 14px;
		height: 14px;
	}

	.latam-brand__score {
		font-size: 14px;
		line-height: 1.42;
	}

	.latam-brand__offer {
		width: 100%;
		max-width: 100%;
		flex: 0 0 auto;
		gap: 6px;
	}

	.latam-brand__bonus {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		min-height: 37px;
		padding: 6px 8px;
		background: var(--latam-accent-soft);
		font-size: 14px;
		line-height: 1.42;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.latam-brand__chips {
		gap: 4px;
		flex-wrap: nowrap;
	}

	.latam-brand__chips li {
		padding: 5px 8px;
		border-radius: 6px;
		font-size: 14px;
		line-height: 1.42;
	}

	.latam-brand__payments {
		width: 100%;
		flex: 0 0 auto;
		min-width: 0;
	}

	.latam-brand__payments-title {
		margin: 0 0 4px;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.42;
	}

	.latam-brand__pay-list {
		display: flex;
		flex-wrap: nowrap;
		gap: 4px;
		grid-template-columns: none;
	}

	.latam-brand__pay {
		width: 38px;
		height: 26px;
		border-radius: 6.6px;
	}

	.latam-brand__actions {
		width: 100%;
		flex: 0 0 auto;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		min-width: 0;
	}

	.latam-brand__cta {
		width: 100%;
		min-height: 36px;
		padding: 8px 28px;
		font-size: 14px;
		line-height: 1.42;
	}

	.latam-brand__review {
		font-size: 14px;
		line-height: 1.42;
	}
}

.latam-faq {
	margin: 3.625rem 0;
}

.latam-faq__title {
	margin: 0 0 26px;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.latam-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 0;
}

.latam-faq__item {
	overflow: hidden;
	border: 1px solid var(--latam-line);
	border-radius: 8px;
	background: var(--latam-paper);
	transition: background 0.35s ease, border-color 0.35s ease;
}

.latam-faq__item.is-open {
	border-color: var(--latam-accent);
	background: var(--latam-accent-soft);
}

.latam-faq__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.latam-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	margin: 0;
	padding: 14px 18px;
	border: 0;
	background: transparent;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.56;
	text-align: left;
	cursor: pointer;
	transition: padding-bottom 0.35s ease;
}

.latam-faq__question:focus-visible {
	outline: 2px solid var(--latam-accent);
	outline-offset: -2px;
}

.latam-faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 10px;
	height: 25px;
	color: var(--latam-muted);
	font-size: 1rem;
	font-weight: 700;
	line-height: 25px;
	text-align: center;
	transition: color 0.25s ease;
}

.latam-faq__icon::before {
	content: "+";
}

.latam-faq__icon::after {
	content: none;
}

.latam-faq__item.is-open .latam-faq__icon {
	color: var(--latam-accent);
}

.latam-faq__item.is-open .latam-faq__icon::before {
	content: "−";
}

.latam-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.latam-faq__item.is-open .latam-faq__answer {
	grid-template-rows: 1fr;
}

.latam-faq__answer-inner {
	overflow: hidden;
	min-height: 0;
	padding: 0 18px;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
	opacity: 0;
	transition: padding 0.35s ease, opacity 0.25s ease;
}

.latam-faq__item.is-open .latam-faq__question {
	padding-bottom: 0;
}

.latam-faq__item.is-open .latam-faq__answer-inner {
	padding: 20px 18px 14px;
	opacity: 1;
	transition: padding 0.35s ease, opacity 0.3s ease 0.05s;
}

.latam-faq__answer-inner p {
	margin: 0;
}

.latam-faq__answer-inner p + p {
	margin-top: 0.5em;
}

@media (prefers-reduced-motion: reduce) {
	.latam-faq__item,
	.latam-faq__question,
	.latam-faq__icon,
	.latam-faq__answer,
	.latam-faq__answer-inner {
		transition: none;
	}
}

.latam-advantages {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
	width: 100%;
	margin: 3.625rem 0;
	background: var(--latam-paper);
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
}

.latam-advantages__title {
	margin: 0 0 26px;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.latam-advantages__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	align-items: stretch;
	width: 100%;
}

.latam-advantages__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	min-height: 100%;
}

.latam-advantages__card {
	box-sizing: border-box;
	flex: 1 1 auto;
	width: 100%;
	padding: 20px 24px;
	border: 0;
	border-radius: 16px;
}

.latam-advantages__col--pros .latam-advantages__card {
	background: var(--latam-green-soft);
}

.latam-advantages__col--cons .latam-advantages__card {
	background: var(--latam-red-soft);
}

.latam-advantages__heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.12;
}

.latam-advantages__col--pros .latam-advantages__glyph {
	color: var(--latam-green);
}

.latam-advantages__col--cons .latam-advantages__glyph {
	color: var(--latam-red);
}

.latam-advantages__glyph {
	display: block;
	flex-shrink: 0;
	width: 21px;
	height: 21px;
}

.latam-advantages__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.latam-advantages__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 10px;
	color: var(--latam-ink);
	font-family: var(--latam-hero-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.56;
}

.latam-advantages__list li:last-child {
	margin-bottom: 0;
}

.latam-advantages__mark {
	display: block;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

@media (max-width: 768px) {
	.latam-advantages__title {
		font-size: 28px;
		line-height: 34px;
	}

	.latam-advantages__grid {
		grid-template-columns: 1fr;
	}
}

body.latam-theme-dark {
	--latam-bg: #121419;
	--latam-paper: #14151f;
	--latam-band: #14151f;
	--latam-ink: #ffffff;
	--latam-muted: #797979;
	--latam-line: rgba(255, 255, 255, 0.12);
	--latam-accent: #3666db;
	--latam-accent-hover: #5b7eef;
	--latam-accent-soft: rgba(54, 102, 219, 0.16);
	--latam-green-soft: rgba(55, 150, 28, 0.14);
	--latam-red-soft: rgba(185, 5, 5, 0.14);
	--latam-nav: #ffffff;
	--latam-nav-active: #8ea4ff;
}

body.latam-theme-dark::before {
	background: rgba(19, 20, 18, 0.74);
}

body.latam-theme-dark .site-nav {
	background: var(--latam-paper, #14151f);
	border: 0;
	box-shadow: none;
}

body.latam-theme-dark .site-nav__list a,
body.latam-theme-dark .site-nav__list a:hover,
body.latam-theme-dark .site-nav__list .current-menu-item > a {
	color: #fff;
}

body.latam-theme-dark .site-header__toggle {
	border-color: rgba(255, 255, 255, 0.85);
}

body.latam-theme-dark .latam-brand:hover {
	background: rgba(54, 102, 219, 0.16);
}
