/*
Theme Name: PlayerStation
Author: Quirilo
Description: Notícias sobre as principais franquias de videogames e tendências.
Version: 1.0.3
Tags: playstation, ps5, ps4, jogos, videogame, sony, tutoriais, lançamentos
*/

/* --- Importação da Fonte --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* --- 1. Variáveis de Cores (Modo Escuro como Padrão Estético) --- */
:root {
	/* Light Mode */
	--color-background: #f0f2f5;
	--color-text: #2c2f33;
	--color-primary: #0c04a4;
	--color-accent: #0c04a4;
	--color-card-bg: #ffffff;
	--color-border: #dcdfe4;
	--color-glow: rgba(106, 50, 238, 0.4);
	--header-bg: rgba(255, 255, 255, 0.85);
	--footer-text: #5f6368;
}

body.dark-mode {
	/* Dark Mode */
	--color-background: #111319;
	--color-text: #e1e3e6;
	--color-primary: #ebff6a;
	--color-accent: #ebff6a;
	--color-card-bg: #1c1f26;
	--color-border: #2c2f38;
	--color-glow: rgba(127, 82, 255, 0.5);
	--header-bg: rgba(28, 31, 38, 0.85);
	--footer-text: #9aa0a6;
}

/* --- 2. Estilos Globais e Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.7;
	background-color: var(--color-background);
	color: var(--color-text);
	margin: 0;
	padding: 0;
	transition: background-color 0.3s, color 0.3s, padding-left 0.3s ease-in-out;
	padding-top: 70px;
}
body.mobile-nav-open {
	overflow: hidden;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.2s;
}
a:hover {
	color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

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

/* --- 3. Cabeçalho Fixo e Rodapé --- */
.site-header {
	background-color: var(--header-bg);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 0 15px;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid var(--color-border);
	transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s, border-color 0.3s;
}

.site-header .container {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
}

.site-title a {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-text);
}

.site-footer {
	padding: 40px 20px;
	background-color: var(--color-card-bg);
	color: var(--footer-text);
	border-top: 1px solid var(--color-border);
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    margin-top: 40px;
}

/* --- 4. Conteúdo Principal --- */
.site-content {
	padding: 40px 0;
}
.home .site-content {
	padding-top: 0;
	padding-bottom: 0;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 25px;
	padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border);
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-primary);
}


/* --- 5. Estilo dos Cards de Post (`.post-item`) --- */
.post-item {
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-border);
	margin-bottom: 25px;
	border-radius: 8px;
	transition: all 0.25s ease-in-out;
	overflow: hidden;
    display: flex;
    flex-direction: column;
}
.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}
body.dark-mode .post-item:hover {
    box-shadow: 0 0 20px var(--color-glow);
}

.post-item .post-thumbnail a {
    display: block;
    overflow: hidden;
}
.post-item .post-thumbnail img {
	width: 100%;
    transition: transform 0.3s ease;
}
.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-item-content {
	padding: 25px;
}

.post-item-title {
	margin-top: 0;
	font-size: 22px;
}
.post-item-title a {
	color: var(--color-text);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size .3s;
}
.post-item-title a:hover {
	background-size: 100% 2px;
}

.post-item-meta {
	font-size: 14px;
	color: var(--footer-text);
	margin-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.post-item-meta a {
    font-weight: 500;
}

/* --- 6. Página Single do Post --- */
.single-post .post-title {
	font-size: 42px;
    text-align: center;
    margin: 0 auto 15px;
    max-width: 90%;
}
.post-meta {
	font-size: 14px;
	color: var(--footer-text);
	margin-bottom: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.single-post .post-thumbnail {
	margin-bottom: 30px;
	border-radius: 8px;
    overflow: hidden;
}
.post-content p {
	margin-bottom: 1.5em;
    font-size: 1.1rem;
}
.post-content a {
    font-weight: 500;
	text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 3px;
    transition: all .2s;
}
.post-content a:hover {
	background-color: var(--color-primary);
	color: var(--color-background);
    text-decoration-color: var(--color-background);
}
.post-tag-link {
    font-weight: 500;
}
.post-tag-link span {
    border-bottom: 1px solid var(--color-border);
    transition: all .2s;
}
.post-tag-link:hover span {
    border-color: transparent;
    background-color: var(--color-border);
    border-radius: 4px;
    padding: 2px 5px;
}

/* --- 7. Posts Relacionados --- */
.related-posts {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
}
.related-posts h3 {
	font-size: 24px;
	margin-bottom: 25px;
}
.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
}
.related-post-item a {
	display: block;
	color: var(--color-text);
    overflow: hidden;
    border-radius: 5px;
}
.related-post-item img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	border-radius: 5px;
    transition: transform .3s ease;
}
.related-post-item a:hover img {
    transform: scale(1.05);
}
.related-post-item span {
	font-size: 15px;
    font-weight: 500;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* --- 8. Paginação --- */
.pagination {
	margin-top: 40px;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pagination .page-numbers {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	padding: 0 12px;
    min-width: 40px;
    height: 40px;
	border: 1px solid var(--color-border);
	border-radius: 5px;
	transition: all 0.2s;
    font-weight: 500;
    box-sizing: border-box;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
	background-color: var(--color-primary);
	color: #fff;
    border-color: var(--color-primary);
}

/* --- 9. Rodapé --- */
.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px 30px;
}
.footer-nav a {
	color: var(--footer-text);
    font-weight: 500;
}
.footer-nav a:hover {
	color: var(--color-primary);
}
.site-footer p {
    font-size: 14px;
}

/* --- 10. Layout com Sidebar --- */
.home-layout-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
.home .home-layout-container,
.archive .home-layout-container,
.search .home-layout-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}
@media (min-width: 900px) {
	.home-layout-container {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	}
}

/* --- 11. Estilos da Sidebar --- */
.sidebar .sidebar-widget {
	background-color: var(--color-card-bg);
	border-radius: 5px;
	padding: 25px;
	border: 1px solid var(--color-border);
    margin-bottom: 25px;
}
.sidebar .widget-title {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--color-border);
}
.sidebar-post-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-post-list li {
	padding: 15px 0;
	border-bottom: 1px solid var(--color-border);
}
.sidebar-post-list li:first-child {
	padding-top: 0;
}
.sidebar-post-list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.sidebar-post-list a {
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--color-text);
}
.sidebar-post-list a:hover .sidebar-post-title-text {
	color: var(--color-primary);
}
.sidebar-post-date {
	width: 45px;
	height: 45px;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1.1;
	transition: all .3s;
}
.sidebar-post-list a:hover .sidebar-post-date {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.sidebar-post-list a:hover .sidebar-post-date .day,
.sidebar-post-list a:hover .sidebar-post-date .month {
    color: #fff;
}
.sidebar-post-date .day {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-text);
	transition: color .3s;
}
.sidebar-post-date .month {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--footer-text);
	transition: color .3s;
}
.sidebar-post-title-text {
	line-height: 1.4;
	transition: color .2s;
    font-weight: 500;
}

/* --- 12. Grade de Posts em Destaque --- */
.featured-posts-grid {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}
.featured-grid-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 10px;
	height: 500px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.featured-small-wrapper {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
}
.featured-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.3s ease-in-out;
}
.featured-item:hover {
	transform: scale(1.02);
}
.featured-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
	z-index: 1;
	transition: background 0.3s;
}
.featured-item:hover::before {
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 70%);
}
.featured-item-content {
	position: relative;
	z-index: 2;
}
.featured-item-title {
	margin: 0;
	line-height: 1.25;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    color: #fff;
}
.featured-large .featured-item-title {
	font-size: 32px;
}
.featured-small .featured-item-title {
	font-size: 22px;
}
@media (max-width: 900px) {
	.featured-grid-container {
		height: auto;
		grid-template-columns: 1fr;
	}
	.featured-large, .featured-small {
		aspect-ratio: 16 / 9;
	}
}

/* --- 13. Seção "Em Alta" e "Popular/Especial" --- */
.home-middle-section-container {
	display: block;
}
.home-middle-flow {
    max-width: 1200px;
    margin: 40px auto;
	padding: 0 20px;
}
.hot-posts-section,
.special-reviews-container {
    margin-bottom: 40px;
}

/* 1. Layout "Em Alta" */
.hot-posts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.hot-post-link {
	display: flex;
	flex-direction: column;
}
.hot-post-image {
	margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}
.hot-post-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background-color: var(--color-border);
    transition: transform .3s ease;
}
.hot-post-link:hover img {
    transform: scale(1.05);
}
.hot-post-title {
	font-size: 1rem;
    font-weight: 500;
    transition: color .2s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.hot-post-link:hover .hot-post-title {
    color: var(--color-primary);
}


/* 2. Layout "Especial" e "Reviews" */
.special-reviews-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
    align-items: stretch;
}
.special-post-item {
    margin: 0;
}
.special-post-link {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}
.special-post-image {
    margin-bottom: 0;
    height: 100%;
}
.special-post-image img {
    aspect-ratio: 16/9;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.special-post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    z-index: 2;
}
.special-post-title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    -webkit-line-clamp: 3;
}
.special-post-link:hover .special-post-title {
    color: #fff;
}
.special-post-link:hover img {
    transform: scale(1.02);
}

/* 3. Layout "Reviews" (Ajustes no card do plugin) */
.reviews-section {
    display: flex;
    flex-direction: column;
}
.reviews-section .section-title {
    margin-bottom: 25px;
}
.reviews-section .mrq-homepage-card {
    flex-grow: 1; /* Faz o card preencher a altura disponível */
}
.mrq-homepage-card a {
	display: flex;
	align-items: center; /* Centraliza verticalmente a imagem e o texto */
    gap: 20px;
    width: 100%;
    height: 100%;
}
.mrq-homepage-card-image {
    position: relative; /* Essencial para o posicionamento da nota */
    width: 45%; /* LARGURA AUMENTADA */
    height: 100%; /* Permite que o container da imagem ocupe toda a altura disponível */
    margin-bottom: 0;
	flex-shrink: 0;
}
.mrq-homepage-card-image img {
	width: 100%;
	height: 100%; /* A imagem agora ocupará 100% da altura do seu container */
	object-fit: cover; /* Garante que a imagem cubra o espaço mantendo a proporção */
	border-radius: 5px;
	aspect-ratio: 4 / 5; /* Mantém a proporção de 4:5, cortando se necessário */
}
.mrq-homepage-card-content {
    padding-top: 0;
}
.mrq-homepage-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
    -webkit-line-clamp: 3;
    margin-bottom: 8px;
}
.mrq-homepage-card a:hover .mrq-homepage-card-title {
    text-decoration: none;
    color: var(--color-primary);
}
.mrq-homepage-card-type {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--footer-text);
}


/* --- 14. Demais Estilos --- */
.archive-header {
	margin-bottom: 40px;
    padding: 25px;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}
.archive-header .section-title {
    margin-bottom: 5px; border-bottom: 0; padding-bottom: 0;
}
.archive-header .section-title::after { display: none; }
.archive-description { font-size: 1.1em; color: var(--footer-text); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-bottom: 1.5em; border-radius: 8px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* --- 15. Layout Responsivo da Lista de Posts --- */
@media (min-width: 768px) {
	.post-item { flex-direction: row; align-items: center; gap: 25px; }
	.post-item .post-thumbnail { flex-basis: 280px; flex-shrink: 0; height: 100%; }
    .post-item .post-thumbnail img { height: 100%; object-fit: cover; }
	.post-item-content { flex: 1; padding: 25px 25px 25px 0; }
    body.search .post-item-content,
    body.archive .post-item-content { padding: 0; }
}

/* --- 16. Estilos do Logo e Navegação Lateral --- */
.site-branding { margin-right: 0; }
.custom-logo { height: 40px; width: auto; vertical-align: middle; }
.logo-dark { display: none; }
body.dark-mode .logo-light { display: none; }
body.dark-mode .logo-dark { display: block; }
#mobile-nav-overlay { position: fixed; inset: 0; background-color: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
#mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }
#side-nav { display: flex; position: fixed; top: 0; left: -282px; width: 280px; height: 100vh; background-color: var(--color-card-bg); z-index: 2001; border-right: 1px solid var(--color-border); transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s, border-color 0.3s; overflow-x: hidden; }
#side-nav.is-open { left: 0; }
.side-nav-text { opacity: 1; }
.header-btn { background: none; border: none; padding: 5px; cursor: pointer; color: var(--color-text); }
#mobile-nav-toggle { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }

@media (min-width: 1200px) {
	#mobile-nav-toggle { display: none; }
	body { padding-left: 70px; }
	body.side-nav-expanded { padding-left: 280px; }
	.site-header { left: 70px; width: calc(100% - 70px); }
	body.side-nav-expanded .site-header { left: 280px; width: calc(100% - 280px); }
	#side-nav { left: 0; width: 70px; transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s, border-color 0.3s; }
	#side-nav.is-expanded { width: 280px; }
	.side-nav-text { opacity: 0; }
	#side-nav.is-expanded .side-nav-text { opacity: 1; transition-delay: 0.15s; }
}

.side-nav-content { display: flex; flex-direction: column; width: 100%; min-width: 280px; }

/* CORREÇÃO DO BOTÃO DE TEMA */
.side-nav-top {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

#side-nav .theme-toggle-button, .side-nav-menu a, #side-nav-collapse-btn { color: var(--footer-text); display: flex; align-items: center; gap: 15px; width: 100%; padding: 10px; border-radius: 8px; font-size: 16px; font-weight: 500; text-align: left; background: none; border: none; cursor: pointer; transition: color 0.2s, background-color 0.2s; }
#side-nav .theme-toggle-button svg, .side-nav-menu a svg { flex-shrink: 0; width: 24px; height: 24px; }
#side-nav .theme-toggle-button:hover, .side-nav-menu a:hover, #side-nav-collapse-btn:hover, .side-nav-menu li.active > a { color: var(--color-text); background-color: var(--color-background); }
.side-nav-menu { list-style: none; padding: 10px; margin: 0; flex-grow: 1; overflow-y: auto; }
.side-nav-menu li { margin-bottom: 5px; }
.side-nav-footer { margin-top: auto; padding: 10px; flex-shrink: 0; }
#side-nav-collapse-btn .icon-expand { display: block; }
#side-nav-collapse-btn .icon-collapse { display: none; }
#side-nav.is-expanded #side-nav-collapse-btn .icon-expand { display: none; }
#side-nav.is-expanded #side-nav-collapse-btn .icon-collapse { display: block; }
.side-nav-sub-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out; padding: 0 10px 0 49px; margin-top: 0; }
.has-panel.active > .side-nav-sub-panel { max-height: 200px; padding: 10px 10px 10px 49px; margin-top: 5px; }
.side-nav-search-form { display: flex; }
.side-nav-search-field { width: 100%; border: 1px solid var(--color-border); border-radius: 5px; background: var(--color-background); padding: 8px; color: var(--color-text); font-size: 14px; }
.side-nav-search-field:focus { outline: none; border-color: var(--color-primary); }
.side-nav-search-submit { display: none; }
.most-viewed-link { font-size: 14px; color: var(--color-text); font-weight: normal; display: block; padding: 5px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-nav-social { margin-top: auto; border-top: 1px solid var(--color-border); display: none; }
#side-nav.is-expanded .side-nav-social, #side-nav.is-open .side-nav-social { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 15px; }
.side-nav-social a { display: flex; align-items: center; justify-content: center; height: 40px; border-radius: 8px; color: var(--footer-text); transition: all 0.2s; }
.side-nav-social a:hover { color: var(--color-primary); background-color: var(--color-background); }
.side-nav-social a .side-nav-text { display: none; }
.side-nav-social a svg { width: 24px; height: 24px; }
.dark-mode .icon-sun { display: block; }
.dark-mode .icon-moon { display: none; }
.icon-sun { display: none; }
.icon-moon { display: block; }

/* --- Responsividade para os novos layouts --- */
@media (max-width: 900px) {
    .special-reviews-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hot-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .hot-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* CORREÇÃO DA VISIBILIDADE DO ÍCONE DE TEMA */
#side-nav .theme-toggle-button svg {
    stroke: currentColor;
}

/* ==========================================================================
   # SOBREPOSIÇÃO DE ESTILOS DE PLUGIN
   ========================================================================== */

/* Remove a cor de fundo de seleção de texto do navegador em todo o site */
::selection {
    background-color: var(--color-primary);
    color: var(--color-card-bg);
}
::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-card-bg);
}

/* Remove completamente o fundo de seleção APENAS nos posts relacionados */
.mrq-related-item ::selection {
    background-color: transparent !important;
}
.mrq-related-item ::-moz-selection {
    background-color: transparent !important;
}

/* Garante que o hover no post relacionado não tenha fundo */
.mrq-related-item a:hover {
    background-color: transparent !important;
}

/* --- Estilos para as Etiquetas da Seção "Em Alta" --- */
.hot-post-image {
    position: relative;
}

.hot-post-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}