/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://tomusborne.com
Description: Child theme for BatallasRap.com.
Version: 1.0
*/

:root {
	color-scheme: light;
	--batarap-bg: #efe8dc;
	--batarap-bg-elevated: #f6efe4;
	--batarap-surface: rgba(255, 253, 248, 0.9);
	--batarap-surface-solid: #fffdfa;
	--batarap-surface-soft: #f5ede2;
	--batarap-border: rgba(15, 23, 42, 0.14);
	--batarap-border-strong: rgba(15, 23, 42, 0.24);
	--batarap-text: #111827;
	--batarap-ink: #111827;
	--batarap-muted: #4b5563;
	--batarap-muted-2: #6b7280;
	--batarap-accent: #dc2626;
	--batarap-accent-strong: #f97316;
	--batarap-accent-soft: rgba(220, 38, 38, 0.11);
	--batarap-success: #15803d;
	--batarap-warning: #b45309;
	--batarap-shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.09);
	--batarap-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
	--batarap-radius: 22px;
	--batarap-radius-sm: 14px;
	--batarap-container: 1200px;
}

body {
	background:
		radial-gradient(circle at 8% 0%, rgba(220, 38, 38, 0.12), transparent 26%),
		radial-gradient(circle at 92% 2%, rgba(249, 115, 22, 0.14), transparent 22%),
		repeating-linear-gradient(135deg, rgba(15, 23, 42, 0.015) 0 1px, transparent 1px 26px),
		linear-gradient(180deg, #f8f1e6 0%, #f2eadc 38%, #ebdfd0 100%);
	color: var(--batarap-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.site {
	position: relative;
	isolation: isolate;
}

.site::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 12%, rgba(220, 38, 38, 0.06), transparent 22%),
		radial-gradient(circle at 82% 4%, rgba(15, 23, 42, 0.04), transparent 18%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(15, 23, 42, 0.02));
	opacity: 1;
	z-index: -1;
}

a {
	color: var(--batarap-accent);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
	transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover,
a:focus {
	color: var(--batarap-accent-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--batarap-accent);
	outline-offset: 2px;
}

::selection {
	background: rgba(220, 38, 38, 0.18);
	color: var(--batarap-text);
}

body,
button,
input,
select,
textarea {
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--batarap-text);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.15;
}

h1 {
	font-size: clamp(2.35rem, 4.8vw, 4rem);
}

h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

h3 {
	font-size: clamp(1.35rem, 2.15vw, 1.9rem);
}

p,
ol,
ul,
table,
blockquote,
pre {
	color: inherit;
}

blockquote {
	background: #fff7ee;
	border-left-color: rgba(220, 38, 38, 0.35);
	border-radius: 18px;
	padding: 18px 20px;
}

code,
kbd,
tt,
var,
pre {
	background: rgba(15, 23, 42, 0.05);
	border-radius: 10px;
}

pre {
	border: 1px solid var(--batarap-border);
	padding: 18px 20px;
}

table {
	background: var(--batarap-surface-solid);
	border: 1px solid var(--batarap-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--batarap-shadow-sm);
}

th,
td {
	border-color: var(--batarap-border);
}

hr {
	background-color: var(--batarap-border);
	height: 1px;
	margin-block: 40px;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='number'],
textarea,
select {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(15, 23, 42, 0.16);
	border-radius: 14px;
	color: var(--batarap-text);
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='number']:focus,
textarea:focus,
select:focus {
	border-color: rgba(220, 38, 38, 0.32);
	box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'],
a.button,
a.wp-block-button__link:not(.has-background) {
	background: linear-gradient(135deg, var(--batarap-accent), var(--batarap-accent-strong));
	border: 1px solid rgba(220, 38, 38, 0.22);
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(220, 38, 38, 0.18);
	color: #ffffff;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

button:hover,
html input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover,
a.button:hover,
button:focus,
html input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
a.button:focus,
a.wp-block-button__link:not(.has-background):active,
a.wp-block-button__link:not(.has-background):focus,
a.wp-block-button__link:not(.has-background):hover {
	background: linear-gradient(135deg, var(--batarap-accent-strong), var(--batarap-accent));
	box-shadow: 0 16px 32px rgba(220, 38, 38, 0.24);
	color: #ffffff;
	transform: translateY(-1px);
}

.batarap-longtext {
	display: grid;
	gap: 12px;
	margin: 0;
}

.batarap-longtext__body {
	display: grid;
	gap: 14px;
	font-size: 1rem;
	line-height: 1.7;
	position: relative;
}

.batarap-longtext.is-collapsed .batarap-longtext__body {
	overflow: hidden;
	max-height: calc(1.7em * 4);
}

.batarap-longtext.is-collapsed .batarap-longtext__body::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 2.2em;
	background: linear-gradient(180deg, rgba(18, 33, 60, 0), var(--batarap-longtext-fade, #10213d));
}

.batarap-longtext.is-expanded .batarap-longtext__body {
	max-height: none;
	overflow: visible;
}

.batarap-longtext.is-expanded .batarap-longtext__body::after {
	display: none;
}

.batarap-longtext__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--batarap-longtext-toggle, rgba(251, 113, 133, 0.95));
	cursor: pointer;
	align-self: start;
}

.batarap-longtext__toggle:hover,
.batarap-longtext__toggle:focus {
	background: transparent;
	box-shadow: none;
	color: var(--batarap-longtext-toggle, rgba(251, 113, 133, 0.95));
	transform: none;
}

.batarap-longtext__toggle::before {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.batarap-longtext.is-expanded .batarap-longtext__toggle::before {
	transform: rotate(180deg);
}

.batarap-longtext__body > :first-child {
	margin-top: 0;
}

.batarap-longtext__body > :last-child {
	margin-bottom: 0;
}

.site-header,
.main-navigation,
.main-navigation ul ul,
.top-bar {
	background: #0f172a;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}

.site-header.grid-container,
.main-navigation.grid-container,
.top-bar.grid-container {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.site-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.single .site-header {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.inside-header,
.inside-navigation,
.inside-top-bar {
	max-width: var(--batarap-container);
	margin-left: auto;
	margin-right: auto;
}

.single .inside-header.grid-container {
	width: min(100%, var(--batarap-container));
	max-width: var(--batarap-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 18px;
	padding-right: 18px;
}

.main-title a,
.main-title a:hover,
.site-description,
.main-navigation .main-nav ul li a,
.main-navigation .menu-toggle,
.main-navigation .menu-bar-items {
	color: #f8fafc;
}

.site-description {
	opacity: 0.72;
}

.site-branding {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		"logo title"
		"logo description";
	column-gap: 12px;
	align-items: center;
}

.batarap-site-logo {
	grid-area: logo;
	display: inline-flex;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	line-height: 0;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.batarap-site-logo:hover,
.batarap-site-logo:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.batarap-site-logo img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.main-title {
	grid-area: title;
}

.site-description {
	grid-area: description;
}

.main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a,
.main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a,
.main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a,
.main-navigation .menu-bar-item:hover > a,
.main-navigation .menu-bar-item.sfHover > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
	color: #fb7185;
}

.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.one-container .container,
.separate-containers .paging-navigation,
.inside-page-header,
.sidebar .widget {
	background: linear-gradient(180deg, #fffefb 0%, #fff6ec 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 6px solid var(--batarap-accent-strong);
	border-radius: 28px 18px 28px 18px;
	box-shadow: var(--batarap-shadow);
	position: relative;
	overflow: hidden;
}

.separate-containers .inside-article::after,
.separate-containers .comments-area::after,
.separate-containers .page-header::after,
.one-container .container::after,
.separate-containers .paging-navigation::after,
.inside-page-header::after,
.sidebar .widget::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
	pointer-events: none;
}

.blog .inside-article,
.archive .inside-article,
.search .inside-article {
	overflow: hidden;
}

.home .site-main,
.blog .site-main,
.archive .site-main,
.search .site-main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.home .site-main > .page-header,
.blog .site-main > .page-header,
.archive .site-main > .page-header,
.search .site-main > .page-header,
.home .site-main > .batarap-home,
.home .site-main > .paging-navigation,
.blog .site-main > .paging-navigation,
.archive .site-main > .paging-navigation,
.search .site-main > .paging-navigation {
	grid-column: 1 / -1;
}

.home .site-main > article,
.blog .site-main > article,
.archive .site-main > article,
.search .site-main > article {
	margin: 0;
}

.home .inside-article,
.blog .inside-article,
.archive .inside-article,
.search .inside-article {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	grid-template-areas:
		"media header"
		"media summary"
		"media footer";
	gap: 0;
	align-items: stretch;
}

.home .inside-article:first-of-type,
.blog .inside-article:first-of-type,
.archive .inside-article:first-of-type,
.search .inside-article:first-of-type {
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	min-height: 360px;
}

.home .inside-article:first-of-type > .featured-image:first-child img,
.blog .inside-article:first-of-type > .featured-image:first-child img,
.archive .inside-article:first-of-type > .featured-image:first-child img,
.search .inside-article:first-of-type > .featured-image:first-child img,
.home .inside-article:first-of-type > .post-thumbnail:first-child img,
.blog .inside-article:first-of-type > .post-thumbnail:first-child img,
.archive .inside-article:first-of-type > .post-thumbnail:first-child img,
.search .inside-article:first-of-type > .post-thumbnail:first-child img {
	border-radius: 22px 0 0 22px;
	min-height: 100%;
	object-fit: cover;
}

.home .inside-article > .featured-image:first-child,
.blog .inside-article > .featured-image:first-child,
.archive .inside-article > .featured-image:first-child,
.search .inside-article > .featured-image:first-child,
.home .inside-article > .post-thumbnail:first-child,
.blog .inside-article > .post-thumbnail:first-child,
.archive .inside-article > .post-thumbnail:first-child,
.search .inside-article > .post-thumbnail:first-child {
	grid-area: media;
	margin: 0;
	min-height: 100%;
}

.home .inside-article > .entry-header,
.blog .inside-article > .entry-header,
.archive .inside-article > .entry-header,
.search .inside-article > .entry-header {
	grid-area: header;
	padding: 18px 18px 10px 18px;
	display: grid;
	align-content: end;
	background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 244, 231, 0.96));
}

.home .inside-article > .entry-summary,
.blog .inside-article > .entry-summary,
.archive .inside-article > .entry-summary,
.search .inside-article > .entry-summary {
	grid-area: summary;
	padding: 0 18px 16px 18px;
	background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 242, 228, 0.96));
}

.home .inside-article > .entry-content,
.blog .inside-article > .entry-content,
.archive .inside-article > .entry-content,
.search .inside-article > .entry-content {
	grid-area: summary;
	padding: 0 18px 16px 18px;
	background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 242, 228, 0.96));
}

.home .inside-article > .entry-meta,
.blog .inside-article > .entry-meta,
.archive .inside-article > .entry-meta,
.search .inside-article > .entry-meta {
	grid-area: footer;
	padding: 0 18px 18px 18px;
}

.home .inside-article > .featured-image:first-child img,
.blog .inside-article > .featured-image:first-child img,
.archive .inside-article > .featured-image:first-child img,
.search .inside-article > .featured-image:first-child img,
.home .inside-article > .post-thumbnail:first-child img,
.blog .inside-article > .post-thumbnail:first-child img,
.archive .inside-article > .post-thumbnail:first-child img,
.search .inside-article > .post-thumbnail:first-child img {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	border-radius: 22px 0 0 22px;
}

.home .inside-article:first-of-type .entry-summary,
.blog .inside-article:first-of-type .entry-summary,
.archive .inside-article:first-of-type .entry-summary,
.search .inside-article:first-of-type .entry-summary,
.home .inside-article:first-of-type .entry-content,
.blog .inside-article:first-of-type .entry-content,
.archive .inside-article:first-of-type .entry-content,
.search .inside-article:first-of-type .entry-content {
	padding-top: 4px;
	font-size: 1.02rem;
	line-height: 1.6;
}

.home .inside-article:nth-of-type(3n),
.blog .inside-article:nth-of-type(3n),
.archive .inside-article:nth-of-type(3n),
.search .inside-article:nth-of-type(3n) {
	border-top-color: var(--batarap-accent-strong);
}

.home .inside-article:nth-of-type(3n + 1),
.blog .inside-article:nth-of-type(3n + 1),
.archive .inside-article:nth-of-type(3n + 1),
.search .inside-article:nth-of-type(3n + 1) {
	border-top-color: var(--batarap-accent);
}

.home .inside-article:nth-of-type(3n + 2),
.blog .inside-article:nth-of-type(3n + 2),
.archive .inside-article:nth-of-type(3n + 2),
.search .inside-article:nth-of-type(3n + 2) {
	border-top-color: #f59e0b;
}

.blog .inside-article > .featured-image:first-child,
.archive .inside-article > .featured-image:first-child,
.search .inside-article > .featured-image:first-child,
.blog .inside-article > .post-thumbnail:first-child,
.archive .inside-article > .post-thumbnail:first-child,
.search .inside-article > .post-thumbnail:first-child {
	margin: 0;
}

.home .inside-article:not(:first-of-type) > .featured-image:first-child img,
.blog .inside-article:not(:first-of-type) > .featured-image:first-child img,
.archive .inside-article:not(:first-of-type) > .featured-image:first-child img,
.search .inside-article:not(:first-of-type) > .featured-image:first-child img,
.home .inside-article:not(:first-of-type) > .post-thumbnail:first-child img,
.blog .inside-article:not(:first-of-type) > .post-thumbnail:first-child img,
.archive .inside-article:not(:first-of-type) > .post-thumbnail:first-child img,
.search .inside-article:not(:first-of-type) > .post-thumbnail:first-child img {
	display: block;
	width: 100%;
	border-radius: 18px 18px 0 0;
}

.site-main .wp-block-group__inner-container {
	max-width: var(--batarap-container);
}

.entry-title a {
	color: var(--batarap-text);
	text-decoration: none;
}

.entry-meta {
	color: var(--batarap-muted-2);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.page-id-2 .entry-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
	align-items: start;
	margin-top: 0;
}

.tarjeta,
.batarap-card {
	background: linear-gradient(180deg, #fffefc 0%, #fff5e8 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 6px solid var(--batarap-accent);
	border-radius: 28px 18px 28px 18px;
	box-shadow: var(--batarap-shadow);
	padding: 1rem 1.05rem;
}

.tarjeta {
	margin-bottom: 0;
}

.single-batallas .battle-chip,
.battle-inline-pill,
.batarap-pill,
.battle-badge,
.batarap-chip {
	backdrop-filter: blur(10px);
}

.batarap-home {
	width: min(100%, 1280px);
	display: grid;
	gap: 22px;
}

.batarap-home-featured,
.batarap-home-feed,
.batarap-home-pagination {
	grid-column: 1 / -1;
	width: 100%;
}

.batarap-home-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
	align-items: stretch;
	background: linear-gradient(180deg, #fffefb 0%, #fff4e4 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 6px solid var(--batarap-accent);
	border-radius: 28px 18px 28px 18px;
	box-shadow: var(--batarap-shadow);
	overflow: hidden;
}

.batarap-home-featured__media {
	display: block;
	padding: 14px 0 14px 14px;
	background: #0f172a;
}

.batarap-home-featured__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	max-height: 340px;
	object-fit: contain;
	object-position: center;
	background: #0f172a;
	border-radius: 20px;
}

.batarap-home-featured__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	max-height: 340px;
	border-radius: 20px;
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	color: #fff;
	background: linear-gradient(135deg, #111827 0%, #dc2626 100%);
}

.batarap-home-featured__body {
	display: grid;
	gap: 14px;
	align-content: center;
	padding: 18px 22px 20px 12px;
	background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(255, 242, 228, 0.98));
}

.batarap-home-featured__chips,
.batarap-home-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.batarap-home-chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(220, 38, 38, 0.12);
	border: 1px solid rgba(220, 38, 38, 0.2);
	color: var(--batarap-accent);
}

.batarap-home-featured__title,
.batarap-home-card__title {
	margin: 0;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.04;
}

.batarap-home-featured__title {
	font-size: clamp(1.8rem, 3vw, 2.75rem);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.batarap-home-featured__title a,
.batarap-home-card__title a {
	color: inherit;
	text-decoration: none;
}

.batarap-home-featured__title a:hover,
.batarap-home-card__title a:hover {
	color: var(--batarap-accent);
}

.batarap-home-featured__excerpt,
.batarap-home-card__excerpt {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.68;
	color: var(--batarap-muted);
}

.batarap-home-featured__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
	max-width: 68ch;
}

.batarap-home-featured__meta,
.batarap-home-card__meta {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--batarap-muted-2);
}

.batarap-home-feed {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	width: 100%;
	align-items: stretch;
}

.batarap-home-feed > article {
	margin-bottom: 0;
	padding-left: 0;
}

.batarap-home-card {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc(50% - 9px);
	max-width: calc(50% - 9px);
	min-width: 0;
	background: linear-gradient(180deg, #fffdfa 0%, #fff4e7 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 5px solid var(--batarap-accent);
	border-radius: 24px 16px 24px 16px;
	box-shadow: var(--batarap-shadow-sm);
	overflow: hidden;
}

.batarap-home-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: clamp(230px, 26vw, 360px);
	background: #0f172a;
	overflow: hidden;
	line-height: 0;
	color: #fff;
	text-decoration: none;
}

.batarap-home-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
}

.batarap-home-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.16) 0%, rgba(15, 23, 42, 0.48) 35%, rgba(15, 23, 42, 0.9) 100%);
	pointer-events: none;
}

.batarap-home-card__headline {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 18px 18px 16px;
	text-align: left;
	pointer-events: none;
}

.batarap-home-card__headline-text {
	display: -webkit-box;
	font-size: clamp(1.3rem, 2.15vw, 1.85rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #fff;
	text-shadow: 0 12px 26px rgba(15, 23, 42, 0.72);
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.batarap-home-card__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 220px;
	background: linear-gradient(135deg, #111827 0%, #dc2626 100%);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.batarap-home-card__body {
	display: grid;
	gap: 8px;
	align-content: start;
	min-width: 0;
	padding: 14px 16px 18px;
}

.batarap-home-card__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.92rem;
	line-height: 1.55;
}

.batarap-home-card__excerpt {
	-webkit-line-clamp: 2;
}

.batarap-home-card:nth-child(3n) {
	border-top-color: #f59e0b;
}

.batarap-home-card:nth-child(3n + 1) {
	border-top-color: var(--batarap-accent);
}

.batarap-home-card:nth-child(3n + 2) {
	border-top-color: var(--batarap-accent-strong);
}

.batarap-home-pagination {
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.batarap-home-empty {
	padding: 24px;
	border-radius: 24px;
	background: var(--batarap-surface-solid);
	border: 1px solid var(--batarap-border);
	box-shadow: var(--batarap-shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	}
}

@media (max-width: 768px) {
	.batarap-home-feed {
		display: grid;
		grid-template-columns: 1fr;
	}

	.batarap-home-card {
		flex-basis: 100%;
		max-width: 100%;
	}

	.batarap-home-card__media {
		height: clamp(180px, 52vw, 260px);
	}
}

.site-main[class*="single-"] {
	position: relative;
	width: min(100%, 1280px);
	max-width: 1280px;
	margin: 0 auto;
}

.site-content {
	padding: 2em 0;
}

.site-main[class*="single-"] > article {
	width: 100%;
}

@media (max-width: 768px) {
	.site-main[class*="single-"] {
		padding: 14px 12px 48px;
	}
}

.single-batallas .battle-entry {
	display: grid;
	gap: 16px;
	width: 100%;
}

.single-batallas .battle-header {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	gap: 0;
	padding: 0;
	background: linear-gradient(180deg, #fffefb 0%, #fff4e4 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 6px solid var(--batarap-accent);
	border-radius: 28px 18px 28px 18px;
	box-shadow: var(--batarap-shadow);
	overflow: hidden;
}

.single-batallas .battle-header__media {
	display: block;
	min-width: 0;
	overflow: hidden;
	background: #0f172a;
}

.batarap-lazy-media,
.battle-lazy-youtube {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #0f172a;
}

.batarap-lazy-media__poster,
.battle-lazy-youtube__poster {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.batarap-lazy-media__trigger,
.battle-lazy-youtube__trigger {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.16));
	color: #fff;
	cursor: pointer;
}

.batarap-lazy-media__trigger:hover,
.battle-lazy-youtube__trigger:hover {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.2));
}

.batarap-lazy-media__play,
.battle-lazy-youtube__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.84);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
}

.batarap-lazy-media__play svg,
.battle-lazy-youtube__play svg {
	width: 30px;
	height: 30px;
	fill: #fff;
	margin-left: 4px;
}

.batarap-lazy-media iframe,
.battle-lazy-youtube iframe {
	width: 100%;
	height: 100%;
	max-width: 100%;
	border: 0;
	display: block;
}

.single-batallas .battle-header__media > img,
.single-batallas .battle-header__media > .batarap-lazy-media,
.single-batallas .battle-header__media > .battle-lazy-youtube,
.single-batallas .battle-header__media > .battle-header__fallback {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.single-batallas .battle-header__media > .batarap-lazy-media,
.single-batallas .battle-header__media > .battle-lazy-youtube {
	border-radius: 0;
}

.single-batallas .battle-header__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	color: #fff;
	background: linear-gradient(135deg, #111827 0%, #dc2626 100%);
}

.single-batallas .battle-header__body {
	display: grid;
	gap: 14px;
	align-content: end;
	padding: 22px 22px 24px;
	background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(255, 242, 228, 0.98));
}

.single-batallas .battle-header__kicker {
	margin: 0;
}

.single-batallas .battle-title {
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 3.1rem);
	line-height: 1.06;
	letter-spacing: -0.045em;
	max-width: none;
	text-wrap: balance;
	color: var(--batarap-text);
}

.single-batallas .battle-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2px;
}

.single-batallas .battle-header__supporting-link {
	margin: 0;
}

.single-batallas .battle-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.12);
	border: 1px solid rgba(220, 38, 38, 0.2);
	color: var(--batarap-accent);
	text-decoration: none;
	font-size: 0.86rem;
	line-height: 1.2;
}

.single-batallas .battle-chip--muted {
	background: transparent;
	border-color: transparent;
	color: var(--batarap-muted-2);
	padding-inline: 0;
}

.single-batallas .battle-chip:hover {
	opacity: 0.92;
	text-decoration: none;
}

.single-batallas .battle-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	overflow: visible;
}

.single-batallas .battle-panel > h2:not(.battle-section-heading__title) {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.74rem;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--batarap-accent);
}

.single-batallas .battle-section-heading__title,
.batarap-section-heading,
.single-artista .batarap-section-heading,
.single-video .video-section-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.74rem;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--batarap-accent);
}

.single-batallas .battle-section-heading__title::before,
.batarap-section-heading::before,
.single-video .video-section-heading::before {
	content: '';
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-color: currentColor;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.single-batallas .battle-section-heading__title--video::before,
.batarap-section-heading--video::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v2l3-2v12l-3-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm9 2-5 3v4l5 3V8Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v2l3-2v12l-3-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm9 2-5 3v4l5 3V8Z'/%3E%3C/svg%3E");
}

.batarap-section-heading--battle::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 4.2a1 1 0 0 1 1.4 0l2.6 2.6-1.4 1.4-2.6-2.6a1 1 0 0 1 0-1.4Zm11.6 0a1 1 0 0 0-1.4 0l-2.6 2.6 1.4 1.4 2.6-2.6a1 1 0 0 0 0-1.4ZM10 9.8 4 15.8 8.2 20l6-6-4.2-4.2Zm4 0 4.2 4.2L14 18.2l-4.2-4.2L14 9.8Zm-1 3.2-1 1-1-1 1-1 1 1Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 4.2a1 1 0 0 1 1.4 0l2.6 2.6-1.4 1.4-2.6-2.6a1 1 0 0 1 0-1.4Zm11.6 0a1 1 0 0 0-1.4 0l-2.6 2.6 1.4 1.4 2.6-2.6a1 1 0 0 0 0-1.4ZM10 9.8 4 15.8 8.2 20l6-6-4.2-4.2Zm4 0 4.2 4.2L14 18.2l-4.2-4.2L14 9.8Zm-1 3.2-1 1-1-1 1-1 1 1Z'/%3E%3C/svg%3E");
}

.single-batallas .battle-section-heading__title--event::before,
.batarap-section-heading--event::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Zm-1-4H6v2h12V6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Zm-1-4H6v2h12V6Z'/%3E%3C/svg%3E");
}

.single-batallas .battle-section-heading__title--participants::before,
.batarap-section-heading--participants::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3Cpath d='M20 13a3 3 0 0 0-2.5-2.95 5.98 5.98 0 0 1 0 5.9A3 3 0 0 0 20 13Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3Cpath d='M20 13a3 3 0 0 0-2.5-2.95 5.98 5.98 0 0 1 0 5.9A3 3 0 0 0 20 13Z'/%3E%3C/svg%3E");
}

.single-video .video-section-heading--video::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v2l3-2v12l-3-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm9 2-5 3v4l5 3V8Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v2l3-2v12l-3-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm9 2-5 3v4l5 3V8Z'/%3E%3C/svg%3E");
}

.single-video .video-section-heading--event::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Zm-1-4H6v2h12V6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v13a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Zm-1-4H6v2h12V6Z'/%3E%3C/svg%3E");
}

.single-video .video-section-heading--participants::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3Cpath d='M20 13a3 3 0 0 0-2.5-2.95 5.98 5.98 0 0 1 0 5.9A3 3 0 0 0 20 13Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3Cpath d='M20 13a3 3 0 0 0-2.5-2.95 5.98 5.98 0 0 1 0 5.9A3 3 0 0 0 20 13Z'/%3E%3C/svg%3E");
}

.single-video .video-section-heading--program::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Zm2 0v10h12V5H6Zm2 13h8v2H8v-2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Zm2 0v10h12V5H6Zm2 13h8v2H8v-2Z'/%3E%3C/svg%3E");
}

.single-batallas .battle-media {
	margin-top: 2px;
	width: 100%;
	background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
	border: 1px solid rgba(15, 23, 42, 0.24);
	border-top: 6px solid var(--batarap-accent-strong);
	border-radius: 28px 18px 28px 18px;
	padding: 12px;
	box-shadow: var(--batarap-shadow);
	overflow: hidden;
}

.single-batallas .battle-facts {
	margin-top: 2px;
	width: 100%;
}

.single-batallas .battle-fact-card--event {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.single-batallas .battle-related-battles {
	width: 100%;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.single-batallas .battle-facts-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 14px;
	width: 100%;
}

.single-batallas .battle-facts-grid--extras {
	margin-top: 14px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.single-batallas .battle-fact-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.single-batallas .battle-inline-pill,
.batarap-pill {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.12);
	border: 1px solid rgba(220, 38, 38, 0.2);
	color: var(--batarap-accent);
	font-size: 0.8rem;
	line-height: 1.2;
}

.single-batallas .battle-embed {
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
	background: #0f172a;
	padding: 10px;
}

.single-batallas .battle-event-list {
	display: grid;
	gap: 12px;
}

.single-batallas .battle-event-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fffdf9 0%, #fff5e8 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 4px solid var(--batarap-accent);
	box-shadow: var(--batarap-shadow-sm);
	color: inherit;
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.single-batallas .battle-event-card:hover {
	text-decoration: none;
	transform: translateY(-1px);
	opacity: 0.98;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.single-batallas .battle-event-card__title {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.single-batallas .battle-event-card__media {
	flex: 0 0 108px;
	width: 108px;
	height: 108px;
	margin-inline: 0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111827;
}

.single-batallas .battle-event-card__media img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--batarap-surface-solid);
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.single-batallas .battle-event-card__avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 14px;
	background: var(--batarap-surface-soft);
	box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.single-batallas .battle-event-card__avatar-fallback svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

.single-batallas .battle-event-card__body {
	min-width: 0;
	display: grid;
	gap: 10px;
	text-align: left;
	flex: 1;
}

.single-batallas .battle-event-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.single-batallas .battle-event-card__excerpt,
.single-batallas .battle-event-card__footer-item {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--batarap-muted);
}

.single-batallas .battle-event-card__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.single-batallas .battle-participants-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.single-batallas .battle-participant-card {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: stretch;
	padding: 12px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fffdf9 0%, #fff5e8 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 4px solid var(--batarap-accent-strong);
	color: inherit;
	text-decoration: none;
	min-height: 100%;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.single-batallas .battle-participant-card:hover {
	text-decoration: none;
	transform: translateY(-1px);
	border-color: rgba(220, 38, 38, 0.2);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.single-batallas .battle-participant-card--winner {
	border-color: rgba(245, 158, 11, 0.28);
	box-shadow: 0 14px 30px rgba(245, 158, 11, 0.08);
}

.single-batallas .battle-participant-card__media {
	flex: 0 0 104px;
	width: 104px;
	height: 104px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #111827 0%, #dc2626 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.single-batallas .battle-participant-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-batallas .battle-participant-card__avatar-fallback {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.single-batallas .battle-participant-card__body {
	flex: 1;
	min-width: 0;
	display: grid;
	gap: 8px;
}

.single-batallas .battle-participant-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.single-batallas .battle-participant-card__title {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.single-batallas .battle-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.1;
}

.single-batallas .battle-badge--winner {
	background: rgba(220, 38, 38, 0.12);
	color: var(--batarap-accent);
	border: 1px solid rgba(220, 38, 38, 0.2);
}

.single-batallas .battle-participant-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: flex-start;
}

.single-batallas .battle-participant-card__skills,
.single-batallas .battle-participant-card__excerpt,
.single-batallas .battle-participant-card__social {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--batarap-muted);
}

.single-batallas .battle-participant-card__skills-label {
	font-weight: 700;
	color: var(--batarap-text);
}

.single-batallas .battle-fact-card--generic .battle-fact-card__items {
	display: grid;
	gap: 8px;
}

.single-batallas .battle-fact-card__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 12px;
	border-radius: 14px;
	background: #fffaf3;
	border: 1px solid rgba(15, 23, 42, 0.12);
	color: var(--batarap-text);
	text-decoration: none;
}

.single-batallas .battle-fact-card__item:hover {
	opacity: 0.8;
	text-decoration: none;
}

.single-batallas .battle-fact-card__item-title {
	font-weight: 600;
}

.single-batallas .battle-fact-card__item-type {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--batarap-muted-2);
}

.single-batallas .battle-related-battles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	width: 100%;
}

.single-batallas .battle-related-battle-card {
	display: grid;
	gap: 8px;
	padding: 14px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fffdf8 0%, #fff4e4 100%);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-top: 4px solid var(--batarap-accent);
	color: inherit;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.single-batallas .battle-related-battle-card:hover {
	text-decoration: none;
	transform: translateY(-1px);
	border-color: rgba(220, 38, 38, 0.2);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.single-batallas .battle-related-battle-card__title {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.22;
	letter-spacing: -0.02em;
}

.single-batallas .battle-related-battle-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.single-batallas .battle-related-battle-card__artists {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.35;
	color: var(--batarap-muted);
}

.single-batallas .battle-summary p {
	margin-bottom: 0;
}

.single-batallas .battle-summary {
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 242, 228, 0.98));
}

.single-batallas .battle-content {
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 242, 228, 0.98));
}

.single-batallas .battle-content__body > :last-child {
	margin-bottom: 0;
}

.batarap-airtable-fab {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9998;
	pointer-events: none;
}

.batarap-airtable-fab__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 14px 10px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
	color: #f8fafc;
	text-decoration: none;
	pointer-events: auto;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.batarap-airtable-fab__link:hover,
.batarap-airtable-fab__link:focus {
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

.batarap-airtable-fab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.18);
	color: var(--batarap-accent-strong);
	flex: 0 0 auto;
}

.batarap-airtable-fab__icon svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.batarap-airtable-fab__label {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1;
}

@media (max-width: 768px) {
	.single-batallas .battle-header {
		grid-template-columns: 1fr;
	}

	.single-batallas .battle-header__media img,
	.single-batallas .battle-header__media .batarap-lazy-media,
	.single-batallas .battle-header__media .battle-lazy-youtube,
	.single-batallas .battle-header__media .battle-header__fallback {
		aspect-ratio: 16 / 9;
	}

	.single-batallas .battle-header__body {
		padding: 18px 18px 20px;
	}

	.single-batallas .battle-panel {
		padding: 0;
	}

	.single-batallas .battle-title {
		max-width: 100%;
		font-size: clamp(1.35rem, 5.7vw, 1.95rem);
	}

	.single-batallas .battle-facts-grid {
		grid-template-columns: 1fr;
	}

	.single-batallas .battle-participant-card {
		padding: 11px;
	}

	.single-batallas .battle-participant-card__media {
		flex-basis: 82px;
		width: 82px;
		height: 82px;
	}

	.single-batallas .battle-media,
	.single-batallas .battle-related-battles {
		padding: 0;
	}

	.single-batallas .battle-related-battles-grid {
		grid-template-columns: 1fr;
	}

	.single-batallas .battle-lazy-youtube__play,
	.single-batallas .batarap-lazy-media__play {
		width: 64px;
		height: 64px;
	}

	.batarap-airtable-fab {
		right: 12px;
		bottom: 12px;
	}

	.batarap-airtable-fab__link {
		padding: 9px 12px 9px 10px;
	}

	.batarap-home {
		padding-inline: 12px;
	}

	.batarap-home-featured {
		grid-template-columns: 1fr;
	}

	.batarap-home-featured__media img,
	.batarap-home-featured__fallback {
		min-height: 240px;
		max-height: none;
		border-radius: 0;
	}

	.batarap-home-featured__media {
		padding: 12px 12px 0;
	}

	.batarap-home-featured__body {
		padding: 18px 18px 20px;
	}

	.batarap-home-feed {
		grid-template-columns: 1fr;
	}

	.batarap-home-card {
		grid-template-columns: 1fr;
	}

	.batarap-home-card__media img,
	.batarap-home-card__fallback {
		min-height: 180px;
	}
}
