/**
 * UI Polish — cards, single post, sidebar, archives
 */

/* ===== SURFACES & LAYOUT ===== */
.mr-main {
	background: var(--mr-bg-light);
}

.mr-surface-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(26, 26, 46, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.mr-archive-section {
	background: var(--mr-bg-light);
	padding-top: 40px;
	padding-bottom: 60px;
}

.mr-archive-section .mr-post-grid {
	margin-top: 8px;
}

/* ===== POST CARDS — PREMIUM ===== */
.mr-post-card {
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 24px rgba(26, 26, 46, 0.07);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.mr-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(71, 59, 240, 0.12);
}

.mr-post-card-image {
	position: relative;
	aspect-ratio: 16 / 10;
}

.mr-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.mr-post-card:hover .mr-card-overlay {
	opacity: 1;
}

.mr-post-card-body {
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mr-post-card-body .mr-cat-labels { order: 1; }
.mr-post-card-body .mr-post-card-title { order: 2; }
.mr-post-card-body .mr-post-card-excerpt { order: 3; }
.mr-post-card-body .mr-card-footer { order: 4; }

.mr-post-card-title {
	font-size: var(--mr-fs-card-title);
	font-weight: 700;
	line-height: 1.45;
	margin: 10px 0 8px;
	transition: color 0.2s ease;
}

.mr-post-card:hover .mr-post-card-title {
	color: var(--mr-primary);
}

.mr-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
	padding-top: 14px;
	border-top: 1px solid var(--mr-border);
}

/* Horizontal cards */
.mr-post-horizontal {
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mr-post-horizontal:hover {
	box-shadow: 0 12px 32px rgba(71, 59, 240, 0.1);
	transform: translateY(-2px);
}

.mr-post-horizontal-body {
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mr-post-horizontal-image {
	min-height: 180px;
}

/* ===== SINGLE POST HERO ===== */
.mr-single-hero {
	width: 100%;
	background: linear-gradient(135deg, #eef0ff 0%, #faf7f3 50%, #f5f3ff 100%);
	padding: 48px 0 40px;
	border-bottom: 1px solid rgba(71, 59, 240, 0.08);
}

.mr-single-hero-cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--mr-primary);
	margin-bottom: 14px;
}

.mr-single-hero-cat:hover {
	color: var(--mr-primary-dark);
}

.mr-single-hero-title {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--mr-text);
	margin: 0 0 16px;
	max-width: 900px;
}

.mr-single-hero .mr-breadcrumbs {
	margin-bottom: 20px;
	font-size: var(--mr-fs-meta);
}

.mr-single-hero-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.mr-author-chip {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mr-author-avatar {
	border-radius: 50%;
	width: 44px !important;
	height: 44px !important;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mr-author-chip span {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: var(--mr-fs-meta);
	color: var(--mr-text-light);
}

.mr-author-chip strong {
	color: var(--mr-text);
	font-size: var(--mr-fs-body);
}

.mr-reading-time {
	font-size: var(--mr-fs-meta);
	font-weight: 600;
	color: var(--mr-text-light);
	background: rgba(255, 255, 255, 0.7);
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid var(--mr-border);
}

/* ===== SINGLE POST CONTENT ===== */
.mr-single-section {
	padding: 40px 0 60px;
	background: var(--mr-bg-light);
}

.mr-single-layout {
	grid-template-columns: 1fr 340px;
	gap: 32px;
}

.mr-single-post.mr-surface-card {
	padding: 0;
	overflow: hidden;
}

.mr-single-featured {
	margin: 0;
	border-radius: 0;
	overflow: hidden;
}

.mr-single-featured img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

body.mr-ckp-redirect-page {
	margin: 0;
	padding: 0;
	background: #fff;
	min-height: 100vh;
}

.mr-ckp-redirect-form {
	display: none;
}

.mr-single-featured-link {
	display: block;
}

.mr-shop-now-wrap {
	margin-top: 28px;
}

.mr-shop-now-btn {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 700;
	padding: 14px 32px;
}

.mr-single-content a.mr-shop-now-btn,
.mr-single-content a.mr-shop-now-btn:hover {
	color: #fff;
	text-decoration: none;
}

.mr-disclosure {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin: 28px 32px 0;
	padding: 18px 20px;
	background: linear-gradient(135deg, #fffbeb 0%, #fff8e1 100%);
	border-left: 4px solid #f59e0b;
	border-radius: 0 10px 10px 0;
	font-size: 14px;
	line-height: 1.6;
}

.mr-disclosure-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: #f59e0b;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.mr-disclosure-content {
	flex: 1;
	min-width: 0;
}

.mr-disclosure-content p {
	margin: 0;
}

.mr-disclosure-content p + p {
	margin-top: 0.75em;
}

.mr-disclosure-content a {
	color: var(--mr-primary);
	text-decoration: underline;
}

.mr-disclosure-content ul,
.mr-disclosure-content ol {
	margin: 0.5em 0 0;
	padding-left: 1.25em;
}

/* Table of Contents */
.mr-toc {
	margin: 24px 32px 0;
	padding: 0;
	background: #f8f9fc;
	border: 1px solid var(--mr-border);
	border-radius: 10px;
	overflow: hidden;
}

.mr-toc-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #fff;
	border: none;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--mr-text);
	cursor: pointer;
}

.mr-toc-toggle svg {
	transition: transform 0.3s ease;
}

.mr-toc-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.mr-toc-list {
	margin: 0;
	padding: 8px 20px 16px 36px;
	list-style: decimal;
	display: none;
}

.mr-toc.is-open .mr-toc-list {
	display: block;
}

.mr-toc-list li {
	margin-bottom: 8px;
}

.mr-toc-list a {
	font-size: 14px;
	color: var(--mr-text);
	font-weight: 500;
	line-height: 1.5;
}

.mr-toc-list a:hover {
	color: var(--mr-primary);
}

.mr-single-content {
	padding: 28px 32px 32px;
	font-size: 16px;
	line-height: 1.85;
	color: #333;
}

.mr-single-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--mr-text);
    margin: 25px 0 10px 0;
    scroll-margin-top: 100px;
}

.mr-single-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--mr-text);
	scroll-margin-top: 100px;
}

.mr-single-content h4 {
	font-size: 17px;
	font-weight: 700;
	margin: 22px 0 10px;
}

.mr-single-content p {
    margin: 2px 0 15px 0;
}

/* ===== Responsive Tables (Blog Detail) ===== */
.mr-table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 18px 0;
}

.mr-table-responsive table {
	width: auto;
	min-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.mr-single-content table {
	width: auto;
	min-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.mr-single-content th,
.mr-single-content td {
	padding: 12px 14px;
	border: 1px solid rgba(71, 59, 240, 0.12);
	vertical-align: top;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.mr-single-content th {
	background: rgba(71, 59, 240, 0.08);
	font-weight: 800;
	color: var(--mr-text);
}

.mr-single-content table caption {
	caption-side: top;
	text-align: left;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--mr-text);
}

.mr-single-content td p,
.mr-single-content th p {
	margin: 0;
}

.mr-single-content table tr:last-child td,
.mr-single-content table tr:last-child th {
	border-bottom-width: 0;
}

.mr-single-content ul,
.mr-single-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.mr-single-content li {
	margin-bottom: 8px;
}

.mr-single-content a {
	color: var(--mr-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mr-single-content blockquote {
	margin: 24px 0;
	padding: 20px 24px;
	background: #f8f9fc;
	border-left: 4px solid var(--mr-primary);
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: var(--mr-text-light);
}

.mr-single-content img {
	border-radius: 10px;
	margin: 20px 0;
}

.mr-page-links {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--mr-border);
}

.mr-page-links-label {
	font-weight: 700;
	margin-right: 8px;
}

/* Tags */
.mr-single-tags {
	padding: 0 32px 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.mr-tags-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--mr-text-light);
}

.mr-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mr-tag-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	background: #f0f0ff;
	color: var(--mr-primary);
	font-size: 12px;
	font-weight: 600;
	border-radius: 50px;
	transition: background 0.2s ease, color 0.2s ease;
}

.mr-tag-pill:hover {
	background: var(--mr-primary);
	color: #fff;
}

.mr-tag-pill span {
	opacity: 0.7;
	font-size: 11px;
}

/* Related posts */
.mr-related-posts {
	padding: 32px;
	margin: 0;
	border-top: 1px solid var(--mr-border);
	background: #fafbfd;
}

.mr-related-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 24px;
	color: var(--mr-text);
}

.mr-related-posts .mr-post-grid {
	gap: 20px;
}

@media (max-width: 1024px) {
	.mr-related-posts .mr-post-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.mr-related-posts .mr-post-grid-4 {
		grid-template-columns: 1fr;
	}
}

/* ===== SIDEBAR ===== */
.mr-sidebar {
	position: sticky;
	top: 40px;
	align-self: start;
	height: 800px;
	overflow: auto;
}

.mr-sidebar-inner {
	position: static;
}

.mr-sidebar-widget {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 2px 16px rgba(26, 26, 46, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.mr-sidebar .widget-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--mr-text);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--mr-primary);
}

.mr-sidebar .widget-title svg {
	color: var(--mr-primary);
	flex-shrink: 0;
}

.mr-sidebar-search {
	display: flex;
	border: 1px solid var(--mr-border);
	border-radius: 50px;
	overflow: hidden;
	background: #f8f9fc;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mr-sidebar-search:focus-within {
	border-color: var(--mr-primary);
	box-shadow: 0 0 0 3px rgba(71, 59, 240, 0.12);
}

.mr-sidebar-search input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 18px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.mr-sidebar-search button {
	border: none;
	background: var(--mr-primary);
	color: #fff;
	padding: 0 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: background 0.2s ease;
}

.mr-sidebar-search button:hover {
	background: var(--mr-primary-dark);
}

.mr-sidebar-cats {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mr-sidebar-cats li {
	border-bottom: 1px solid #bdbdc7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mr-sidebar-cats li:last-child {
	border-bottom: none;
}

.mr-sidebar-cats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--mr-text);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.mr-sidebar-cats a:hover {
	color: var(--mr-primary);
	padding-left: 6px;
}

.mr-sidebar-cats .count,
.mr-sidebar-cats li a span {
	font-size: 11px;
	font-weight: 700;
	background: #f0f0ff;
	color: var(--mr-primary);
	padding: 2px 8px;
	border-radius: 50px;
	min-width: 24px;
	text-align: center;
}

.mr-sidebar-recent {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mr-sidebar-recent li {
	margin-bottom: 14px;
}

.mr-sidebar-recent li:last-child {
	margin-bottom: 0;
}

.mr-sidebar-recent-link {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	color: inherit;
	padding: 8px;
	margin: -8px;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.mr-sidebar-recent-link:hover {
	background: #f8f9fc;
	color: inherit;
}

.mr-sidebar-recent-thumb {
	flex-shrink: 0;
	width: 72px;
	height: 54px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mr-sidebar-recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mr-sidebar-recent-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--mr-text);
	margin-bottom: 4px;
}

.mr-sidebar-recent-info small {
	font-size: 12px;
	color: var(--mr-text-light);
}

.mr-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ===== COMMENTS ===== */
.mr-comments {
	margin: 0;
	padding: 32px;
	border-top: 1px solid var(--mr-border);
	background: #fff;
}

.mr-comments-title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 24px;
}

.mr-comment-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.mr-comment-list .comment {
	padding: 20px;
	margin-bottom: 16px;
	background: #f8f9fc;
	border-radius: 10px;
	border: 1px solid var(--mr-border);
}

.mr-comment-list .children {
	list-style: none;
	margin: 16px 0 0 24px;
	padding: 0;
}

.comment-form {
	display: grid;
	gap: 16px;
}

.comment-form label {
	font-size: 13px;
	font-weight: 600;
	display: block;
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--mr-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--mr-primary);
	box-shadow: 0 0 0 3px rgba(71, 59, 240, 0.1);
}

.comment-form .form-submit input {
	background: var(--mr-primary);
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: var(--mr-fs-btn);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.comment-form .form-submit input:hover {
	background: var(--mr-primary-dark);
	transform: translateY(-1px);
}

/* ===== PAGE HERO ENHANCED ===== */
.mr-page-hero {
	background: linear-gradient(135deg, #eef0ff 0%, #faf7f3 100%);
	padding: 48px 0 36px;
	border-bottom: 1px solid rgba(71, 59, 240, 0.06);
}

.mr-page-section {
	background: var(--mr-bg-light);
	padding: 40px 0 60px;
}

.mr-page-article.mr-surface-card {
	padding: 40px 48px;
	max-width: 900px;
	margin: 0 auto;
}

.mr-single-layout .mr-page-article.mr-surface-card {
	max-width: none;
	margin: 0;
}

.mr-single-layout .mr-page-article .entry-content {
	padding: 0;
}

.mr-page-article .entry-content {
	font-size: 16px;
	line-height: 1.85;
}

/* ===== PAGINATION ===== */
.mr-pagination {
	margin-top: 48px;
}

.mr-pagination .page-numbers {
	min-width: 42px;
	text-align: center;
	font-weight: 600;
}

/* ===== HOMEPAGE SECTIONS ===== */
.mr-top-articles {
	position: relative;
	background: #d3e2ff;
	padding: 56px 0 68px;
	overflow: hidden;
}

.mr-top-articles::after {
	content: '★';
	position: absolute;
	top: 6px;
	right: 110px;
	font-size: 92px;
	color: rgba(71, 59, 240, 0.12);
	line-height: 1;
	pointer-events: none;
}

.mr-top-articles .mr-section-title {
	margin-bottom: 40px;
}

.mr-top-articles-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 24px;
	align-items: stretch;
}

.mr-top-lead,
.mr-top-side {
	position: relative;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.mr-top-lead {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mr-top-lead .mr-cat-label,
.mr-top-side .mr-cat-label {
	position: relative;
	z-index: 3;
}

.mr-top-lead-media,
.mr-top-lead-body,
.mr-top-side-inner,
.mr-top-side-media,
.mr-top-side-body,
.mr-top-side-footer {
	position: relative;
	z-index: 0;
}

.mr-top-side-footer .mr-post-meta,
.mr-top-side-footer .mr-meta-item {
	position: relative;
	z-index: 3;
}

.mr-top-lead-media {
	overflow: hidden;
	flex: 1 1 auto;
	min-height: 200px;
}

.mr-top-lead-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px 20px 0 0;
	transition: transform 0.4s ease;
}

.mr-top-lead:hover .mr-top-lead-media img {
	transform: scale(1.03);
}

.mr-top-lead-body {
	flex: 0 0 auto;
	padding: 16px 20px 18px;
}

.mr-top-lead-title {
	margin: 8px 0 8px;
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	font-weight: 800;
	line-height: 1.3;
	color: var(--mr-text);
}

.mr-top-lead-excerpt {
	margin: 0 0 10px;
	font-size: 0.925rem;
	line-height: 1.55;
	color: var(--mr-text-light);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mr-top-lead-footer {
	padding-top: 2px;
}

.mr-top-articles-side {
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 12px;
	height: 100%;
	min-height: 0;
}

.mr-top-side {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	transition: box-shadow var(--mr-transition);
}

.mr-top-side:hover {
	box-shadow: 0 10px 34px rgba(71, 59, 240, 0.12);
}

.mr-top-side-inner {
	display: flex;
	align-items: stretch;
	flex: 1;
	height: 100%;
	min-height: 100px;
}

.mr-top-side-media {
	flex: 0 0 46%;
	width: 46%;
	min-width: 155px;
	max-width: 210px;
	align-self: stretch;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: #e9ebf0;
}

.mr-top-side-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

.mr-top-side-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 12px 14px 12px 12px;
	min-width: 0;
	min-height: 0;
}

.mr-top-side-content {
	min-width: 0;
	flex: 1;
}

.mr-top-side-footer {
	margin-top: auto;
	padding-top: 6px;
}

.mr-top-side-footer .mr-post-meta {
	gap: 0;
	font-size: 12px;
}

.mr-top-side-title {
	margin: 6px 0 0;
	font-size: 0.925rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--mr-text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mr-top-side .mr-cat-labels {
	margin-bottom: 2px;
}

.mr-top-side .mr-cat-label {
	padding: 4px 10px;
	font-size: 10px;
}

.mr-top-lead:hover {
	box-shadow: 0 10px 34px rgba(71, 59, 240, 0.12);
}

@media (max-width: 1024px) {
	.mr-top-articles {
		padding: 44px 0 56px;
	}

	.mr-top-articles::after {
		right: 40px;
		font-size: 72px;
	}

	.mr-top-articles-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.mr-top-articles-side {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: none;
		height: auto;
		gap: 16px;
	}

	.mr-top-side {
		height: auto;
	}

	.mr-top-side-inner {
		min-height: 120px;
		height: auto;
	}
}

@media (max-width: 768px) {
	.mr-top-articles {
		padding: 36px 0 46px;
	}

	.mr-top-articles::after {
		display: none;
	}

	.mr-top-articles-side {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.mr-top-side {
		height: auto;
	}

	.mr-top-side-inner {
		flex-direction: row;
		min-height: 96px;
		height: auto;
	}

	.mr-top-side-media {
		flex: 0 0 42%;
		width: 42%;
		min-width: 130px;
		max-width: 180px;
	}
}

/* ===== FEATURED CATEGORIES (Homepage) ===== */
.mr-featured-categories {
	background: #fff;
	padding: 56px 0 64px;
}

.mr-featured-categories .mr-section-header {
	margin-bottom: 32px;
}

.mr-featured-categories .mr-view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--mr-primary);
	text-decoration: none;
}

.mr-featured-categories .mr-view-all:hover {
	color: var(--mr-primary-dark);
}

.mr-featured-categories .mr-view-all-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--mr-primary);
	color: #fff;
}

.mr-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mr-cat-card {
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mr-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(71, 59, 240, 0.12);
}

.mr-cat-card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.mr-cat-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.mr-cat-card:hover .mr-cat-card-image img {
	transform: scale(1.05);
}

.mr-cat-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.55) 100%);
	pointer-events: none;
}

.mr-cat-card-body {
	padding: 18px 20px 20px;
}

.mr-cat-card-title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	color: var(--mr-text);
	line-height: 1.3;
}

.mr-cat-card-count {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

@media (max-width: 992px) {
	.mr-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 560px) {
	.mr-featured-categories {
		padding: 40px 0 48px;
	}

	.mr-cat-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mr-cat-card-title {
		font-size: 17px;
	}
}

/* ===== LATEST REVIEWS SLIDER — Thought bubble + vector ===== */
.mr-latest-reviews {
	position: relative;
	background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
	padding: 56px 0 64px;
	overflow: hidden;
}

.mr-latest-reviews::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(71, 59, 240, 0.06);
	pointer-events: none;
}

.mr-latest-reviews .mr-section-header {
	justify-content: center;
	margin-bottom: 28px;
}

.mr-latest-reviews .mr-section-header .mr-section-title {
	text-align: center;
	margin: 0;
	width: 100%;
}

.mr-reviews-slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.mr-reviews-viewport {
	flex: 1;
	overflow: hidden;
	padding: 8px 0 16px;
}

.mr-reviews-track {
	display: flex;
	gap: var(--mr-reviews-gap, 24px);
	transition: transform 0.45s ease;
	will-change: transform;
	align-items: stretch;
}

.mr-review-slide {
	flex: 0 0 calc((100% - (var(--mr-reviews-cols, 3) - 1) * var(--mr-reviews-gap, 24px)) / var(--mr-reviews-cols, 3));
	min-width: 0;
}

.mr-review-card {
	position: relative;
	height: 100%;
}

.mr-review-card--thought {
	background: transparent;
	border: none;
	box-shadow: none;
}

.mr-review-card-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
	font-size: 0;
	line-height: 0;
	color: transparent;
	text-decoration: none;
}

.mr-review-card-link--dummy {
	pointer-events: none;
}

.mr-review-thought-layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	height: 100%;
	padding-top: 8px;
}

.mr-review-vector {
	flex: 0 0 auto;
	width: 92px;
	height: 92px;
	margin-bottom: -18px;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 8px 18px rgba(71, 59, 240, 0.12));
	transition: transform 0.25s ease;
}

.mr-review-vector-svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mr-review-thought {
	position: relative;
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.mr-review-thought-bubble {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 28px 22px 20px;
	background: #fff;
	border: 2px solid rgba(71, 59, 240, 0.1);
	border-radius: 28px;
	box-shadow: 0 10px 30px rgba(71, 59, 240, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mr-review-card--audio .mr-review-thought-bubble {
	background: linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.mr-review-card--home .mr-review-thought-bubble {
	background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
	border-color: rgba(255, 159, 67, 0.18);
}

.mr-review-card--wearables .mr-review-thought-bubble {
	background: linear-gradient(180deg, #fff 0%, #f2fcf8 100%);
	border-color: rgba(16, 185, 129, 0.18);
}

.mr-review-card--kitchen .mr-review-thought-bubble {
	background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
	border-color: rgba(255, 107, 129, 0.18);
}

.mr-review-card--smarthome .mr-review-thought-bubble,
.mr-review-card--budget .mr-review-thought-bubble,
.mr-review-card--review .mr-review-thought-bubble {
	background: linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.mr-review-thought-tail {
	position: relative;
	display: block;
	width: 100%;
	height: 28px;
	margin-top: -2px;
}

.mr-review-thought-tail::before,
.mr-review-thought-tail::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #fff;
	border: 2px solid rgba(71, 59, 240, 0.1);
}

.mr-review-thought-tail::before {
	top: 0;
	width: 22px;
	height: 22px;
	margin-left: -18px;
	box-shadow: 0 4px 12px rgba(71, 59, 240, 0.06);
}

.mr-review-thought-tail::after {
	top: 14px;
	width: 12px;
	height: 12px;
	margin-left: -28px;
	opacity: 0.9;
}

.mr-review-card--home .mr-review-thought-tail::before,
.mr-review-card--home .mr-review-thought-tail::after {
	border-color: rgba(255, 159, 67, 0.18);
}

.mr-review-card--wearables .mr-review-thought-tail::before,
.mr-review-card--wearables .mr-review-thought-tail::after {
	border-color: rgba(16, 185, 129, 0.18);
}

.mr-review-card--kitchen .mr-review-thought-tail::before,
.mr-review-card--kitchen .mr-review-thought-tail::after {
	border-color: rgba(255, 107, 129, 0.18);
}

.mr-review-quote-mark {
	position: absolute;
	top: 10px;
	left: 16px;
	font-size: 48px;
	line-height: 1;
	font-weight: 800;
	color: rgba(71, 59, 240, 0.12);
	font-family: Georgia, 'Times New Roman', serif;
	pointer-events: none;
}

.mr-review-thought-text {
	position: relative;
	margin: 0 0 12px;
	padding-top: 8px;
	font-size: 15px;
	line-height: 1.7;
	font-style: italic;
	color: #475569;
	flex: 1;
}

.mr-review-person {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.mr-review-person-avatar {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mr-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.mr-review-person-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--mr-text);
	line-height: 1.3;
}

.mr-review-card-title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
	color: var(--mr-text);
}

.mr-review-card-footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-top: auto;
}

.mr-review-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
}

.mr-review-cat {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(71, 59, 240, 0.08);
	color: var(--mr-primary);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.mr-review-rating {
	display: inline-flex;
	gap: 2px;
	color: #cbd5e1;
	font-size: 15px;
	line-height: 1;
}

.mr-review-rating .mr-star.is-full,
.mr-review-rating .mr-star.is-half {
	color: #f59e0b;
}

.mr-review-date {
	font-size: 12px;
	font-weight: 600;
	color: #94a3b8;
}

.mr-review-card:hover .mr-review-vector {
	transform: translateY(-4px) scale(1.03);
}

.mr-review-card:hover .mr-review-thought-bubble {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(71, 59, 240, 0.12);
	border-color: rgba(71, 59, 240, 0.2);
}

.mr-reviews-nav {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: var(--mr-primary);
	box-shadow: 0 4px 16px rgba(71, 59, 240, 0.15);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mr-reviews-nav:hover:not(:disabled) {
	background: var(--mr-primary);
	color: #fff;
	transform: scale(1.05);
}

.mr-reviews-nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.mr-reviews-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.mr-reviews-dot {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: rgba(71, 59, 240, 0.25);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mr-reviews-dot.is-active {
	background: var(--mr-primary);
	transform: scale(1.15);
}

@media (max-width: 768px) {
	.mr-latest-reviews {
		padding: 40px 0 48px;
	}

	.mr-reviews-slider {
		gap: 8px;
	}

	.mr-reviews-nav {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}


	.mr-reviews-track {
		gap: var(--mr-reviews-gap, 16px);
	}

	.mr-review-vector {
		width: 80px;
		height: 80px;
		margin-bottom: -14px;
	}

	.mr-review-thought-bubble {
		padding: 24px 18px 18px;
		border-radius: 22px;
	}

	.mr-review-quote-mark {
		font-size: 40px;
	}
}

/* ===== WHY TRUST US ===== */
.mr-why-trust {
	background: linear-gradient(180deg, #fff 0%, #f4f2ff 100%);
	padding: 56px 0 64px;
}

/* ===== COMPARISON PRODUCTS ===== */
.mr-comparison-products {
	background: #fff;
	padding: 56px 0 64px;
}

.mr-comparison-header {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.mr-comparison-kicker {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mr-primary);
}

.mr-comparison-products .mr-section-title {
	margin: 0 0 14px;
	text-align: center;
}

.mr-comparison-intro {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #64748b;
}

.mr-comparison-grid {
	display: grid;
	grid-template-columns: repeat(var(--mr-section-cols-desktop, 2), minmax(0, 1fr));
	gap: 24px;
}

.mr-comparison-card {
	display: flex;
	min-width: 0;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(71, 59, 240, 0.1);
	box-shadow:
		0 14px 34px rgba(15, 23, 42, 0.08),
		0 6px 16px rgba(71, 59, 240, 0.1);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mr-comparison-card:hover {
	transform: translateY(-5px);
	border-color: rgba(71, 59, 240, 0.18);
	box-shadow:
		0 22px 48px rgba(15, 23, 42, 0.12),
		0 10px 24px rgba(71, 59, 240, 0.16);
}

.mr-comparison-card-inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	flex: 1 1 auto;
}

.mr-comparison-card-media {
	position: relative;
	flex: 0 0 44%;
	max-width: 44%;
	align-self: stretch;
	overflow: hidden;
	background: linear-gradient(135deg, #eef0ff 0%, #f8f9ff 100%);
}

.mr-comparison-card-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mr-comparison-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(71, 59, 240, 0.06) 0%, rgba(71, 59, 240, 0) 60%);
	pointer-events: none;
}

.mr-comparison-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	justify-content: center;
	padding: 28px 26px;
	min-width: 0;
}

.mr-comparison-card-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 800;
	color: var(--mr-text);
	line-height: 1.35;
}

.mr-comparison-card-text {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

.mr-comparison-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--mr-primary);
	text-decoration: none;
}

.mr-comparison-link:hover {
	color: var(--mr-primary-dark);
}

.mr-comparison-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--mr-primary);
	color: #fff;
}

@media (max-width: 992px) {
	.mr-comparison-grid {
		grid-template-columns: repeat(var(--mr-section-cols-tablet, 2), minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.mr-comparison-products {
		padding: 40px 0 48px;
	}

	.mr-comparison-grid {
		grid-template-columns: repeat(var(--mr-section-cols-mobile, 1), minmax(0, 1fr));
		gap: 16px;
	}

	.mr-comparison-intro {
		font-size: 15px;
	}

	.mr-comparison-card-inner {
		flex-direction: column;
		min-height: 0;
	}

	.mr-comparison-card-media {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
		aspect-ratio: 16 / 10;
		align-self: auto;
	}

	.mr-comparison-card-media img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.mr-comparison-card-body {
		padding: 20px 18px 22px;
	}
}

.mr-why-trust-header {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.mr-why-trust .mr-section-title {
	margin: 0 0 14px;
	text-align: center;
}

.mr-trust-intro {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #64748b;
}

.mr-trust-grid {
	display: grid;
	grid-template-columns: repeat(var(--mr-section-cols-desktop, 4), minmax(0, 1fr));
	gap: 24px;
}

.mr-trust-card {
	background: #fff;
	border-radius: 20px;
	padding: 28px 22px 24px;
	text-align: center;
	border: 1px solid rgba(71, 59, 240, 0.08);
	box-shadow: 0 8px 28px rgba(71, 59, 240, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mr-trust-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(71, 59, 240, 0.12);
}

.mr-trust-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
}

.mr-trust-icon-svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mr-trust-card-title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: var(--mr-text);
	line-height: 1.35;
}

.mr-trust-card-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

@media (max-width: 992px) {
	.mr-trust-grid {
		grid-template-columns: repeat(var(--mr-section-cols-tablet, 2), minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.mr-why-trust {
		padding: 40px 0 48px;
	}

	.mr-trust-grid {
		grid-template-columns: repeat(var(--mr-section-cols-mobile, 1), minmax(0, 1fr));
		gap: 16px;
	}

	.mr-trust-intro {
		font-size: 15px;
	}
}

/* ===== EDITORIAL PROCESS ===== */
.mr-editorial-process {
	background: #fff;
	padding: 56px 0 64px;
}

.mr-editorial-header {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

.mr-editorial-process .mr-section-title {
	margin: 0 0 14px;
	text-align: center;
}

.mr-editorial-intro {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #64748b;
}

.mr-editorial-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(var(--mr-section-cols-desktop, 4), minmax(0, 1fr));
	gap: 24px;
	counter-reset: editorial-step;
}

.mr-editorial-step {
	position: relative;
	margin: 0;
	padding: 28px 22px 24px;
	background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
	border: 1px solid rgba(71, 59, 240, 0.1);
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(71, 59, 240, 0.05);
}

.mr-editorial-step::after {
	content: '';
	position: absolute;
	top: 42px;
	right: -14px;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, rgba(71, 59, 240, 0.35), rgba(71, 59, 240, 0.08));
	z-index: 1;
}

.mr-editorial-step:last-child::after {
	display: none;
}

.mr-editorial-step-marker {
	margin-bottom: 18px;
}

.mr-editorial-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 52px;
	padding: 0 12px;
	border-radius: 16px;
	background: var(--mr-primary);
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.05em;
	box-shadow: 0 8px 20px rgba(71, 59, 240, 0.25);
}

.mr-editorial-step-title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--mr-text);
}

.mr-editorial-step-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

@media (max-width: 992px) {
	.mr-editorial-steps {
		grid-template-columns: repeat(var(--mr-section-cols-tablet, 2), minmax(0, 1fr));
		gap: 20px;
	}

	.mr-editorial-step::after {
		display: none;
	}
}

@media (max-width: 768px) {
	.mr-editorial-process {
		padding: 40px 0 48px;
	}

	.mr-editorial-steps {
		grid-template-columns: repeat(var(--mr-section-cols-mobile, 1), minmax(0, 1fr));
		gap: 16px;
	}

	.mr-editorial-intro {
		font-size: 15px;
	}
}

.mr-all-categories {
	background: #fafbfc;
	padding: 64px 0 80px;
}

.mr-all-categories .mr-section-header {
	justify-content: center;
	position: relative;
	margin-bottom: 26px;
}

.mr-all-categories .mr-section-header .mr-section-title {
	text-align: center !important;
	margin: 0;
}

.mr-all-categories .mr-section-header .mr-cat-view-all {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--mr-primary);
}

.mr-cat-view-all-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--mr-primary);
	color: #fff;
}

.mr-all-categories .mr-category-tabs {
    gap: 0px;
    margin-bottom: 34px;
    flex-wrap: nowrap;
    overflow: auto;
    width: 100%;
    white-space: nowrap;
    justify-content: space-between;
}

.mr-all-categories .mr-cat-tab {
	border: none;
	background: transparent;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #3a3a52;
}

.mr-all-categories .mr-cat-tab.is-active {
	background: rgba(71, 59, 240, 0.12);
	color: var(--mr-primary);
	border: none;
}

.mr-all-categories .mr-cat-tab:hover {
	background: rgba(71, 59, 240, 0.10);
}

.mr-all-categories .mr-post-grid {
	gap: 26px;
}

.mr-all-categories .mr-post-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 6px 22px rgba(26, 26, 46, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	padding: 18px;
}

.mr-all-categories .mr-post-card-stretched-link {
	display: inline;
}

.mr-all-categories .mr-post-card-image {
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin: 0;
}

.mr-all-categories .mr-card-overlay {
	display: none;
}

.mr-all-categories .mr-post-card-body {
	background: transparent;
	border-radius: 0;
	margin-top: 0;
	padding: 14px 0 0;
	box-shadow: none;
	border: none;
}

.mr-all-categories .mr-post-card-title {
	margin: 8px 0 10px;
	font-size: 16px;
	line-height: 1.35;
}

.mr-all-categories .mr-cat-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin-bottom: 8px;
}

.mr-all-categories .mr-cat-label {
	margin-bottom: 0;
}

.mr-all-categories .mr-post-card-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.55;
}

.mr-all-categories .mr-card-footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 8px;
	margin-top: 0;
	border-top: none;
}

.mr-all-categories .mr-post-meta {
	display: flex;
	gap: 14px;
	font-size: 15px;
}

.mr-all-categories .mr-post-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(71, 59, 240, 0.12);
}

@media (max-width: 768px) {
	.mr-all-categories .mr-section-header {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
		margin-bottom: 22px;
	}

	.mr-all-categories .mr-section-header .mr-section-title {
		text-align: left !important;
		width: 100%;
		padding-right: 0;
	}

	.mr-all-categories .mr-section-header .mr-cat-view-all {
		position: static;
		transform: none;
		align-self: flex-end;
		font-size: 14px;
	}
}

/* ===== HOMEPAGE FAQs ===== */
.mr-faqs {
	background: #f8f9ff;
	padding: 56px 0 64px;
}

.mr-faqs-header {
	max-width: 760px;
	margin: 0 auto 32px;
	text-align: center;
}

.mr-faqs .mr-section-title {
	margin: 0 0 14px;
	text-align: center;
}

.mr-faqs-intro {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #64748b;
}

.mr-faqs-list {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mr-faq-item {
	background: #fff;
	border: 1px solid rgba(71, 59, 240, 0.1);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(71, 59, 240, 0.05);
	overflow: hidden;
}

.mr-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--mr-text);
	cursor: pointer;
	list-style: none;
}

.mr-faq-question::-webkit-details-marker {
	display: none;
}

.mr-faq-question-text {
	flex: 1;
	min-width: 0;
}

.mr-faq-toggle {
	position: relative;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #eef0ff;
}

.mr-faq-toggle::before,
.mr-faq-toggle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: #473bf0;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.mr-faq-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.mr-faq-item[open] .mr-faq-toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.mr-faq-answer {
	padding: 0 22px 20px;
}

.mr-faq-answer p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #64748b;
}

@media (max-width: 768px) {
	.mr-faqs {
		padding: 40px 0 48px;
	}

	.mr-faqs-intro {
		font-size: 15px;
	}

	.mr-faq-question {
		padding: 18px 16px;
		font-size: 15px;
	}

	.mr-faq-answer {
		padding: 0 16px 18px;
	}
}

/* Only What's New container width */
.mr-wn-container {
	max-width: 1200px !important;
}

/* ===== WHAT'S NEW — dual highlight cards ===== */
.mr-whats-new {
	padding: 46px 0 64px;
	background: #f3f4f6;
}

.mr-wn-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.mr-wn-title {
	margin: 0;
	font-size: var(--mr-fs-section-h1);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.mr-wn-view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--mr-primary);
	text-transform: uppercase;
}

.mr-wn-view-all-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--mr-primary);
	color: #fff;
}

.mr-wn-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px;
}

.mr-whats-new .mr-post-card {
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
	overflow: visible;
}

.mr-whats-new .mr-post-card-stretched-link {
	z-index: 1;
}

.mr-whats-new .mr-post-card-image {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.mr-whats-new .mr-post-card-image img {
	transition: transform 0.4s ease;
}

.mr-whats-new .mr-post-card:hover .mr-post-card-image img {
	transform: scale(1.03);
}

.mr-whats-new .mr-card-overlay {
	display: none;
}

.mr-whats-new .mr-post-card-body {
	position: relative;
	background: #fff;
	margin: -44px 16px 0;
	padding: 22px 24px 20px;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(26, 26, 46, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	z-index: 0;
}

.mr-whats-new .mr-post-card-title {
	margin: 10px 0 10px;
	line-height: 1.35;
}

.mr-whats-new .mr-post-card-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 12px;
}

.mr-whats-new .mr-card-footer {
	padding-top: 10px;
	border-top: none;
}

@media (max-width: 1024px) {
	.mr-wn-cards {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.mr-whats-new {
		padding: 38px 0 46px;
	}

	
	.mr-wn-title {
		font-size: 24px;
	}

	.mr-whats-new .mr-post-card-body {
		margin: -30px 10px 0;
		padding: 18px 16px 16px;
	}
}

.mr-section-title {
	position: relative;
}

/* ===== 404 ===== */
.mr-404-section .mr-404-content {
	background: #fff;
	border-radius: 12px;
	padding: 60px 40px;
	box-shadow: var(--mr-shadow);
	max-width: 600px;
	margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.mr-single-layout {
		grid-template-columns: 1fr;
	}

	.mr-sidebar {
		position: static;
		top: auto;
	}

	.mr-sidebar-inner {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.mr-sidebar-widget {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.mr-single-hero {
		padding: 32px 0 28px;
	}

	.mr-disclosure,
	.mr-toc,
	.mr-single-content,
	.mr-single-tags,
	.mr-related-posts,
	.mr-comments {
		margin-left: 0;
		margin-right: 0;
		padding-left: 20px;
		padding-right: 20px;
	}

	.mr-disclosure {
		margin-top: 20px;
		flex-direction: column;
	}

	.mr-sidebar-inner {
		grid-template-columns: 1fr;
	}

	.mr-card-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ===== HERO REDESIGN: full background image ===== */
@media (min-width: 769px) {
	.mr-hero-track {
		height: clamp(620px, 82vh, 860px);
	}

	.mr-hero {
		background: transparent;
	}

	.mr-hero-slide-bg {
		display: none;
	}

	.mr-hero-slide {
		overflow: hidden;
	}

	.mr-hero-slide-inner {
		display: block;
		position: relative;
		height: clamp(620px, 82vh, 860px);
		overflow: visible;
	}

	.mr-hero-image {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		z-index: 0;
		height: 100%;
		border-radius: 0;
	}

	.mr-hero-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: none;
	}

	.mr-hero-image::after {
		display: block;
		background: linear-gradient(90deg, rgba(244, 248, 252, 0.86) 0%, rgba(244, 248, 252, 0.68) 36%, rgba(244, 248, 252, 0.28) 62%, rgba(244, 248, 252, 0.06) 100%);
		opacity: 1;
	}

	.mr-hero-content {
		position: relative;
		z-index: 2;
		height: 100%;
		width: min(55%, 800px);
		padding: 54px 0 0 0;
		justify-content: center;
		align-items: flex-start;
	}

	.mr-hero-category {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.mr-hero-title {
		font-size: clamp(44px, 4.6vw, 66px);
		line-height: 1.12;
		margin-bottom: 30px;
	}

	.mr-hero-btn {
		font-size: 18px;
		padding: 14px 30px;
	}

	.mr-hero-controls {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 12px;
		z-index: 8;
		padding: 0;
	}

	.mr-hero-dots {
		gap: 10px;
	}

	.mr-hero-dot {
		background: rgba(255, 255, 255, 0.7);
	}

	.mr-hero-dot.is-active {
		background: rgba(255, 255, 255, 0.95);
	}
}

@media (min-width: 769px) and (max-width: 1200px) {
	.mr-hero-track,
	.mr-hero-slide-inner {
		height: clamp(560px, 74vh, 720px);
	}

	.mr-hero-title {
		font-size: clamp(38px, 4vw, 52px);
	}
}

/* Newsletter + Mailchimp (MC4WP) */
.mr-newsletter-form-wrap {
	max-width: 720px;
	margin: 0 auto;
}

.mr-newsletter .mc4wp-form,
.mr-newsletter .mc4wp-form-fields,
.mr-newsletter .mr-newsletter-form {
	display: flex;
	flex-direction: column;
	max-width: 720px;
	margin: 0 auto;
	gap: 12px;
}

.mr-newsletter .mr-newsletter-form-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	width: 100%;
}

.mr-newsletter .mr-newsletter-field {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.mr-newsletter .mc4wp-form h2,
.mr-newsletter .main-form > h2 {
	display: none;
}

.mr-newsletter .mc4wp-form input[type="email"],
.mr-newsletter .mc4wp-form input.mail-box,
.mr-newsletter .mr-newsletter-form input[type="email"] {
	flex: 0 0 auto;
	min-width: 0;
	width: 100%;
	max-width: none;
	padding: 16px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: #fff;
	font-family: inherit;
	font-size: var(--mr-fs-body);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mr-newsletter .mc4wp-form input[type="email"]:focus,
.mr-newsletter .mc4wp-form input.mail-box:focus,
.mr-newsletter .mr-newsletter-form input[type="email"]:focus {
	border-color: var(--mr-primary);
	box-shadow: 0 0 0 3px rgba(71, 59, 240, 0.2);
}

.mr-newsletter .mc4wp-form input[type="submit"],
.mr-newsletter .mc4wp-form input.sub-button,
.mr-newsletter .mr-newsletter-form button {
	flex: 0 0 auto;
	padding: 16px 28px;
	background: var(--mr-primary);
	color: #fff;
	border: none;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mr-newsletter .mc4wp-form input[type="submit"]:hover,
.mr-newsletter .mc4wp-form input.sub-button:hover,
.mr-newsletter .mr-newsletter-form button:hover {
	background: var(--mr-primary-dark);
	transform: translateY(-1px);
}

.mr-newsletter .mc4wp-alert {
	width: 100%;
	margin: 12px 0 0;
	font-size: var(--mr-fs-body);
}

.mr-newsletter .mc4wp-success {
	color: #86efac;
}

.mr-newsletter .mc4wp-error {
	color: #fca5a5;
}

.mr-newsletter-admin-hint {
	margin-top: 12px;
	font-size: 14px;
	color: #94a3b8;
}

.mr-newsletter-form {
	flex-wrap: nowrap;
}

.mr-newsletter-message {
	width: 100%;
	margin: 0 0 4px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5;
}

.mr-newsletter-message.is-success {
	background: rgba(16, 185, 129, 0.15);
	color: #d1fae5;
	border: 1px solid rgba(16, 185, 129, 0.35);
}

.mr-newsletter-message.is-error {
	background: rgba(239, 68, 68, 0.12);
	color: #fecaca;
	border: 1px solid rgba(239, 68, 68, 0.35);
}

.mr-newsletter-form input.is-invalid {
	border-color: #f87171;
	box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.2);
}

.mr-newsletter-error {
	display: block;
	width: 100%;
	margin: 8px 0 0 12px;
	padding: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #fecaca;
	text-align: left;
}

@media (max-width: 768px) {
	.mr-newsletter-subtitle {
		white-space: normal;
		max-width: 420px;
	}

	.mr-newsletter-form-wrap,
	.mr-newsletter .mc4wp-form,
	.mr-newsletter .mc4wp-form-fields,
	.mr-newsletter .mr-newsletter-form {
		width: 100%;
		max-width: 100%;
	}

	.mr-newsletter .mr-newsletter-form-row {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}

	.mr-newsletter .mr-newsletter-field {
		width: 100%;
		flex: 1 1 100%;
	}

	.mr-newsletter .mc4wp-form input[type="email"],
	.mr-newsletter .mc4wp-form input.mail-box,
	.mr-newsletter .mr-newsletter-form input[type="email"] {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

@media (max-width: 640px) {
	.mr-newsletter .mc4wp-form,
	.mr-newsletter .mc4wp-form-fields,
	.mr-newsletter .mr-newsletter-form {
		flex-direction: column;
	}

	.mr-newsletter .mc4wp-form input[type="submit"],
	.mr-newsletter .mr-newsletter-form button {
		width: 100%;
	}
}

/* ===== FOOTER TRUST SIGNALS ===== */
.mr-footer-trust {
	background: #fff;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	padding: 28px 0;
}

.mr-footer-trust-grid {
	display: grid;
	grid-template-columns: repeat(var(--mr-section-cols-desktop, 4), minmax(0, 1fr));
	gap: 20px;
}

.mr-footer-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.mr-footer-trust-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
}

.mr-footer-trust-icon-svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mr-footer-trust-copy {
	min-width: 0;
}

.mr-footer-trust-title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 800;
	color: var(--mr-text);
	line-height: 1.3;
}

.mr-footer-trust-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
}

@media (max-width: 992px) {
	.mr-footer-trust-grid {
		grid-template-columns: repeat(var(--mr-section-cols-tablet, 2), minmax(0, 1fr));
		gap: 18px 24px;
	}
}

@media (max-width: 768px) {
	.mr-footer-trust {
		padding: 24px 0;
	}

	.mr-footer-trust-grid {
		grid-template-columns: repeat(var(--mr-section-cols-mobile, 1), minmax(0, 1fr));
		gap: 16px;
	}
}
