/*
Theme Name: Correio Vale do Café
Theme URI: https://correiovaledocafe.com.br/
Author: Correio Vale do Café
Author URI: https://correiovaledocafe.com.br/
Description: Tema editorial responsivo e independente para o portal Correio Vale do Café.
Version: 1.0.13
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: correio-vale-do-cafe
Tags: news, blog, custom-logo, custom-menu, featured-images, responsive-layout
*/

:root {
	--cvc-primary: #0b3154;
	--cvc-primary-dark: #071f36;
	--cvc-accent: #c98758;
	--cvc-accent-soft: #f2e2d5;
	--cvc-ink: #171717;
	--cvc-muted: #66635f;
	--cvc-line: #e7e3de;
	--cvc-paper: #ffffff;
	--cvc-warm: #f8f5f1;
	--cvc-serif: "Roboto Slab", Georgia, "Times New Roman", Times, serif;
	--cvc-sans: "Poppins", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--cvc-container: 1180px;
	--cvc-radius: 6px;
	--cvc-shadow: 0 14px 36px rgba(7, 31, 54, 0.12);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--cvc-paper);
	color: var(--cvc-ink);
	font-family: var(--cvc-sans);
	font-size: 16px;
	line-height: 1.55;
}

body.cvc-lock-scroll {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--cvc-accent);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

.cvc-container {
	width: min(calc(100% - 40px), var(--cvc-container));
	margin-inline: auto;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: var(--cvc-primary);
	box-shadow: var(--cvc-shadow);
}

.cvc-empty {
	padding: 48px 24px;
	border: 1px solid var(--cvc-line);
	background: var(--cvc-warm);
	text-align: center;
}

/* Header */
.cvc-site-header {
	position: relative;
	z-index: 100;
	background: var(--cvc-paper);
	border-bottom: 1px solid var(--cvc-line);
}

.admin-bar .cvc-drawer {
	top: 32px;
}

.cvc-brandbar {
	background: var(--cvc-primary);
	color: #fff;
}

.cvc-brandbar__inner {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	align-items: center;
	min-height: 72px;
}

.cvc-brand {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.cvc-brand img {
	width: min(210px, 46vw);
	max-height: 62px;
	object-fit: contain;
}

.cvc-icon-button {
	display: inline-grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
	place-items: center;
	transition: background-color 160ms ease, transform 160ms ease;
}

.cvc-icon-button:hover,
.cvc-icon-button:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	outline: none;
}

.cvc-icon-button:active {
	transform: scale(0.94);
}

.cvc-hamburger,
.cvc-hamburger::before,
.cvc-hamburger::after {
	display: block;
	width: 25px;
	height: 2px;
	border-radius: 3px;
	background: currentColor;
	content: "";
}

.cvc-hamburger {
	position: relative;
}

.cvc-hamburger::before {
	position: absolute;
	top: -7px;
}

.cvc-hamburger::after {
	position: absolute;
	top: 7px;
}

.cvc-search-icon {
	position: relative;
	width: 22px;
	height: 22px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.cvc-search-icon::after {
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 10px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: rotate(48deg);
	transform-origin: left center;
}

.cvc-primary-nav {
	display: none;
	border-bottom: 1px solid var(--cvc-line);
	background: #fff;
}

.cvc-primary-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 4vw, 56px);
	min-height: 52px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.cvc-primary-nav a {
	display: block;
	padding: 15px 0;
	color: #242424;
	font-size: 15px;
	font-weight: 600;
}

.cvc-primary-nav .current-menu-item > a,
.cvc-primary-nav .current-category-ancestor > a,
.cvc-primary-nav a:hover {
	color: var(--cvc-accent);
}

.cvc-search-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 20;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--cvc-primary-dark);
	color: #fff;
	box-shadow: var(--cvc-shadow);
	transform: translateY(-12px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.cvc-search-panel.is-open {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.cvc-search-form {
	display: flex;
	gap: 10px;
}

.cvc-search-form label {
	flex: 1;
}

.cvc-search-form input[type="search"] {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 3px;
	background: #fff;
	color: var(--cvc-ink);
}

.cvc-search-form button {
	min-width: 112px;
	padding: 0 22px;
	border: 0;
	border-radius: 3px;
	background: var(--cvc-accent);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

/* Mobile drawer */
.cvc-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	border: 0;
	background: rgba(0, 0, 0, 0.53);
	opacity: 0;
	visibility: hidden;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.cvc-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	width: min(72vw, 380px);
	overflow-y: auto;
	background: #fff;
	box-shadow: 18px 0 50px rgba(0, 0, 0, 0.18);
	transform: translateX(-102%);
	transition: transform 220ms ease;
}

.cvc-drawer.is-open {
	transform: translateX(0);
}

.cvc-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.cvc-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 7px 18px;
	border-bottom: 1px solid var(--cvc-line);
	background: #fff;
}

.cvc-drawer__head img {
	display: none;
	object-fit: contain;
	object-position: left center;
}

.cvc-drawer__close {
	position: relative;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	margin-left: auto;
	background: #f2f2f2;
	color: #777;
	cursor: pointer;
}

.cvc-drawer__close::before,
.cvc-drawer__close::after {
	position: absolute;
	top: 21px;
	left: 11px;
	width: 22px;
	height: 2px;
	background: currentColor;
	content: "";
}

.cvc-drawer__close::before {
	transform: rotate(45deg);
}

.cvc-drawer__close::after {
	transform: rotate(-45deg);
}

.cvc-drawer__menu,
.cvc-drawer__categories {
	padding: 0;
	margin: 0;
	list-style: none;
}

.cvc-drawer__menu {
	border-bottom: 1px solid var(--cvc-line);
}

.cvc-drawer__menu li {
	border-bottom: 1px solid var(--cvc-line);
}

.cvc-drawer__menu li:last-child {
	border-bottom: 0;
}

.cvc-drawer__menu a {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 64px;
	padding: 12px 28px;
	font-size: 18px;
}

.cvc-drawer__menu-icon {
	display: inline-grid;
	flex: 0 0 28px;
	width: 28px;
	color: #858585;
	font-size: 23px;
	line-height: 1;
	place-items: center;
}

.cvc-drawer__title {
	padding: 26px 28px 10px;
	margin: 0;
	color: var(--cvc-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cvc-drawer__categories a {
	display: block;
	padding: 11px 28px;
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: 17px;
	font-weight: 600;
}

/* Story circles */
.cvc-stories {
	border-bottom: 1px solid var(--cvc-line);
	background: #fff;
}

.cvc-stories__nav {
	display: flex;
	justify-content: center;
	gap: clamp(28px, 5vw, 70px);
	padding: 16px 0 14px;
	-ms-overflow-style: none;
	border-bottom: 1px solid var(--cvc-line);
	scrollbar-width: none;
}

.cvc-stories__nav a {
	font-size: clamp(14px, 1.2vw, 17px);
	font-weight: 300;
}

.cvc-stories__rail {
	display: flex;
	gap: 24px;
	padding: 22px 4px 20px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.cvc-stories__nav::-webkit-scrollbar,
.cvc-stories__rail::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.cvc-story {
	flex: 0 0 82px;
	text-align: center;
	scroll-snap-align: start;
}

.cvc-story__image,
.cvc-story__fallback {
	width: 74px;
	height: 74px;
	margin: 0 auto 8px;
	border: 3px solid var(--cvc-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--cvc-accent);
	object-fit: cover;
}

.cvc-story__fallback {
	display: grid;
	background: linear-gradient(145deg, var(--cvc-primary), var(--cvc-accent));
	color: #fff;
	font-family: var(--cvc-serif);
	font-size: 30px;
	font-weight: 800;
	place-items: center;
}

.cvc-story__label {
	display: block;
	overflow: hidden;
	color: #383838;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Full-screen story viewer */
.cvc-story-viewer {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	padding: 18px;
	background: rgba(4, 11, 18, 0.92);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	place-items: center;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.cvc-story-viewer.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.cvc-story-viewer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: default;
}

.cvc-story-viewer__panel {
	position: relative;
	width: min(430px, 100%);
	height: min(780px, calc(100dvh - 36px));
	overflow: hidden;
	border-radius: 14px;
	background: #07111a;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
	color: #fff;
	outline: none;
}

.cvc-story-viewer__progress {
	position: absolute;
	top: 14px;
	right: 14px;
	left: 14px;
	z-index: 8;
	display: flex;
	gap: 4px;
}

.cvc-story-viewer__progress span {
	flex: 1;
	height: 3px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.36);
}

.cvc-story-viewer__progress i {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: #fff;
}

.cvc-story-viewer__close {
	position: absolute;
	top: 32px;
	right: 15px;
	z-index: 9;
	width: 42px;
	height: 42px;
	padding: 0 0 5px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 42px;
	font-weight: 200;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
	cursor: pointer;
}

.cvc-story-viewer__item {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.cvc-story-viewer__item.is-active {
	opacity: 1;
	visibility: visible;
}

.cvc-story-viewer.is-open .cvc-story-viewer__item.is-active {
	pointer-events: auto;
}

.cvc-story-viewer__media,
.cvc-story-viewer__shade {
	position: absolute;
	inset: 0;
}

.cvc-story-viewer__media {
	overflow: hidden;
	background: #07111a;
}

.cvc-story-viewer__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.cvc-story-viewer__image--backdrop {
	filter: blur(22px) brightness(0.48);
	object-fit: cover;
	transform: scale(1.12);
}

.cvc-story-viewer__image--main {
	z-index: 1;
	object-fit: contain;
}

.cvc-story-viewer__fallback {
	display: grid;
	width: 100%;
	height: 100%;
	padding: 70px 34px 230px;
	background: linear-gradient(145deg, var(--cvc-primary), var(--cvc-accent));
	font-family: var(--cvc-serif);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.08;
	place-items: center;
	text-align: center;
}

.cvc-story-viewer__shade {
	z-index: 2;
	background: linear-gradient(to bottom, rgba(3, 8, 13, 0.5) 0%, transparent 26%, rgba(3, 8, 13, 0.14) 48%, rgba(3, 8, 13, 0.96) 100%);
	pointer-events: none;
}

.cvc-story-viewer__author {
	position: absolute;
	top: 38px;
	right: 62px;
	left: 18px;
	z-index: 5;
	display: flex;
	gap: 10px;
	align-items: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.68);
}

.cvc-story-viewer__author img {
	width: 42px;
	height: 42px;
	border: 2px solid #fff;
	border-radius: 50%;
	object-fit: cover;
}

.cvc-story-viewer__author strong,
.cvc-story-viewer__author span {
	display: inline;
	font-size: 14px;
}

.cvc-story-viewer__author strong {
	margin-right: 8px;
	font-weight: 700;
}

.cvc-story-viewer__author span {
	color: rgba(255, 255, 255, 0.82);
}

.cvc-story-viewer__content {
	position: absolute;
	right: 24px;
	bottom: 30px;
	left: 24px;
	z-index: 5;
}

.cvc-story-viewer__category {
	display: inline-block;
	padding: 7px 15px;
	margin-bottom: 18px;
	border-radius: 4px;
	background: var(--cvc-accent-soft);
	color: var(--cvc-primary-dark);
	font-size: 13px;
	font-weight: 700;
}

.cvc-story-viewer__content h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 7.2vw, 38px);
	font-weight: 800;
	line-height: 1.08;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.66);
}

.cvc-story-viewer__content p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.cvc-story-viewer__more {
	display: flex;
	width: fit-content;
	min-width: 180px;
	gap: 10px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	background: rgba(3, 8, 13, 0.25);
	color: #fff;
	font-size: 15px;
}

.cvc-story-viewer__more:hover {
	background: #fff;
	color: var(--cvc-primary-dark);
}

/* Common editorial elements */
.cvc-kicker {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--cvc-primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cvc-kicker--pill {
	padding: 7px 16px;
	border-radius: 999px;
	background: var(--cvc-accent-soft);
	color: var(--cvc-primary-dark);
	letter-spacing: 0;
	text-transform: none;
}

.cvc-section-title {
	margin: 0 0 28px;
	font-size: clamp(26px, 2.8vw, 36px);
	font-weight: 700;
	letter-spacing: -0.018em;
}

.cvc-section-title::after {
	display: block;
	width: 58px;
	height: 4px;
	margin-top: 10px;
	background: var(--cvc-accent);
	content: "";
}

.cvc-thumb-link {
	display: block;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cvc-primary), var(--cvc-accent));
}

.cvc-thumb-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.cvc-thumb-link:hover img {
	transform: scale(1.025);
}

.cvc-no-thumb {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 180px;
	padding: 22px;
	background:
		linear-gradient(145deg, rgba(11, 49, 84, 0.96), rgba(201, 135, 88, 0.9)),
		repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.05) 8px 10px);
	color: #fff;
	font-family: var(--cvc-serif);
	font-size: 26px;
	font-weight: 800;
	line-height: 1.12;
	place-items: center;
	text-align: center;
}

/* Home lead */
.cvc-home-main {
	padding-bottom: 72px;
}

.cvc-lead {
	padding: clamp(34px, 4.2vw, 54px) 0 clamp(28px, 3.5vw, 46px);
	border-bottom: 1px solid var(--cvc-line);
	text-align: center;
}

.cvc-lead__title {
	max-width: 940px;
	margin: 0 auto 16px;
	font-family: var(--cvc-serif);
	font-size: clamp(25px, 2.55vw, 34px);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.12;
}

.cvc-lead__title a:hover {
	color: var(--cvc-primary);
}

.cvc-lead__excerpt {
	max-width: 720px;
	margin: 0 auto;
	color: #46413c;
	font-family: var(--cvc-serif);
	font-size: clamp(14px, 1.15vw, 16px);
	line-height: 1.4;
}

.cvc-feature-grid {
	display: block;
	padding: 34px 0 54px;
}

.cvc-feature-slider {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-radius: var(--cvc-radius);
	background: transparent;
}

.cvc-feature-slider__track {
	position: absolute;
	inset: 0;
}

.cvc-feature-hero {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: var(--cvc-radius);
	background: transparent;
	opacity: 0;
	visibility: hidden;
	transition: opacity 420ms ease, visibility 420ms ease;
}

.cvc-feature-hero.is-active {
	opacity: 1;
	visibility: visible;
}

.cvc-feature-hero .cvc-thumb-link {
	position: absolute;
	inset: 0;
}

.cvc-feature-hero .cvc-thumb-link .cvc-feature-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	object-fit: cover;
	object-position: center;
	transform: none;
	transition: none;
}

.cvc-feature-hero .cvc-thumb-link:hover .cvc-feature-hero__image {
	transform: none;
}

.cvc-feature-hero__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	padding: clamp(28px, 4vw, 52px);
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.96), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.cvc-feature-hero__content .cvc-kicker {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--cvc-accent);
	color: #fff;
	font-size: 11px;
	text-shadow: none;
}

.cvc-feature-hero__title {
	max-width: 760px;
	margin: 4px 0 10px;
	font-family: var(--cvc-serif);
	font-size: clamp(24px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.08;
}

.cvc-feature-hero__excerpt {
	max-width: 690px;
	margin: 0;
	font-family: var(--cvc-serif);
	font-size: 15px;
	line-height: 1.35;
}

.cvc-feature-side {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 22px;
}

.cvc-feature-card {
	display: grid;
	grid-template-columns: 34% minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--cvc-line);
	border-radius: var(--cvc-radius);
	background: #fff;
}

.cvc-feature-card .cvc-thumb-link {
	min-height: 190px;
}

.cvc-feature-card__body {
	padding: 22px 20px;
}

.cvc-feature-card__title {
	margin: 0 0 9px;
	font-family: var(--cvc-serif);
	font-size: clamp(19px, 1.65vw, 24px);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.1;
}

.cvc-feature-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: var(--cvc-muted);
	font-family: var(--cvc-serif);
	font-size: 14px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.cvc-slider-dots {
	position: absolute;
	right: 0;
	bottom: 14px;
	left: 0;
	z-index: 6;
	display: flex;
	justify-content: center;
	gap: 7px;
}

.cvc-slider-dots button {
	width: 28px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.46);
	cursor: pointer;
}

.cvc-slider-dots button.is-active {
	background: #fff;
}

/* Home feed and sidebar */
.cvc-home-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.75fr);
	gap: clamp(38px, 6vw, 74px);
	align-items: start;
}

.cvc-news-list {
	display: grid;
	gap: 0;
}

.cvc-load-more-wrap {
	display: grid;
	padding-top: 30px;
	place-items: center;
}

.cvc-load-more {
	min-width: 190px;
	padding: 13px 26px;
	border: 1px solid var(--cvc-primary);
	border-radius: 999px;
	background: var(--cvc-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.cvc-load-more:hover,
.cvc-load-more:focus-visible {
	background: #fff;
	color: var(--cvc-primary);
	outline: none;
}

.cvc-load-more:disabled {
	opacity: 0.65;
	cursor: wait;
}

.cvc-load-more-status:not(.screen-reader-text) {
	margin: 12px 0 0;
	color: var(--cvc-muted);
	font-size: 13px;
	text-align: center;
}

.cvc-news-card {
	display: grid;
	grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
	gap: 24px;
	padding: 30px 0;
	border-top: 1px solid var(--cvc-line);
}

.cvc-news-card > div {
	min-width: 0;
}

.cvc-news-card:first-child {
	padding-top: 0;
	border-top: 0;
}

.cvc-news-card .cvc-thumb-link {
	aspect-ratio: 16 / 10;
	border-radius: 4px;
}

.cvc-news-card__category {
	display: block;
	width: fit-content;
	margin: 0 0 10px;
	color: var(--cvc-ink);
	font-family: var(--cvc-serif);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.cvc-news-card__time {
	display: block;
	margin-top: 12px;
	color: var(--cvc-muted);
	font-size: 12px;
	font-weight: 400;
}

.cvc-news-card__title {
	margin: 0 0 9px;
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: clamp(19px, 1.8vw, 25px);
	font-weight: 600;
	letter-spacing: -0.012em;
	line-height: 1.12;
	overflow-wrap: normal;
	word-break: normal;
}

.cvc-news-card__excerpt {
	margin: 0;
	color: #4f4a45;
	font-family: var(--cvc-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42;
}

.cvc-sidebar {
	position: sticky;
	top: 24px;
}

.cvc-sidebar-section {
	padding: 0 0 38px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--cvc-line);
}

.cvc-sidebar-section:last-child {
	border-bottom: 0;
}

.cvc-sidebar-title {
	margin: 0 0 24px;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.015em;
}

.cvc-recommended-list {
	display: grid;
	gap: 18px;
}

.cvc-recommended {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.cvc-recommended__image {
	display: block;
	overflow: hidden;
	width: 88px;
	aspect-ratio: 1;
	border: 2px solid var(--cvc-line);
	border-radius: 50%;
	background: var(--cvc-primary);
}

.cvc-recommended__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cvc-recommended__category {
	display: block;
	margin-bottom: 4px;
	color: var(--cvc-accent);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.cvc-recommended__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.006em;
	line-height: 1.24;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.cvc-ranking {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: cvc-rank;
}

.cvc-ranking li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	padding: 18px 0;
	border-top: 1px solid var(--cvc-line);
	counter-increment: cvc-rank;
}

.cvc-ranking li:first-child {
	padding-top: 0;
	border-top: 0;
}

.cvc-ranking li::before {
	color: var(--cvc-ink);
	font-family: var(--cvc-serif);
	font-size: 30px;
	line-height: 1;
	content: counter(cvc-rank);
}

.cvc-ranking__category {
	display: block;
	margin-bottom: 3px;
	color: var(--cvc-muted);
	font-size: 10px;
	text-transform: uppercase;
}

.cvc-ranking a {
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.24;
}

/* Archive and search */
.cvc-page-head {
	padding: clamp(36px, 6vw, 72px) 0 32px;
	border-bottom: 1px solid var(--cvc-line);
}

.cvc-page-head__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--cvc-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cvc-page-head h1 {
	margin: 0;
	font-family: var(--cvc-serif);
	font-size: clamp(34px, 4.2vw, 54px);
	font-weight: 600;
	line-height: 1;
}

.cvc-page-head p {
	max-width: 760px;
	margin: 14px 0 0;
	color: var(--cvc-muted);
	font-size: 17px;
}

.cvc-archive {
	padding: 50px 0 76px;
}

.cvc-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px 28px;
}

.cvc-archive-card .cvc-thumb-link {
	aspect-ratio: 16 / 10;
	margin-bottom: 18px;
	border-radius: 4px;
}

.cvc-archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--cvc-muted);
	font-size: 12px;
}

.cvc-archive-card__category {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 16px;
	border-radius: 999px;
	background: #eeeeee;
	color: var(--cvc-ink);
	font-family: var(--cvc-serif);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.cvc-archive-card h2 {
	margin: 0 0 9px;
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.012em;
	line-height: 1.14;
}

.cvc-archive-card p {
	margin: 0;
	color: #403c38;
	font-family: var(--cvc-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42;
}

.navigation.pagination {
	margin-top: 54px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--cvc-line);
	border-radius: 3px;
	background: #fff;
	color: var(--cvc-primary);
	font-weight: 800;
	place-items: center;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--cvc-primary);
	background: var(--cvc-primary);
	color: #fff;
}

/* Single article */
.cvc-single-head {
	padding: clamp(40px, 6vw, 76px) 0 34px;
	border-bottom: 1px solid var(--cvc-line);
	text-align: center;
}

.cvc-single-head__title {
	max-width: 980px;
	margin: 0 auto 22px;
	font-family: var(--cvc-serif);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	letter-spacing: -0.022em;
	line-height: 1.1;
}

.cvc-single-head .cvc-kicker {
	font-family: var(--cvc-serif);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.cvc-single-head__excerpt {
	max-width: 790px;
	margin: 0 auto;
	color: #403c38;
	font-family: var(--cvc-serif);
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.35;
}

.cvc-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px 0;
}

.cvc-byline {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	color: var(--cvc-muted);
	font-size: 13px;
}

.cvc-byline strong {
	color: var(--cvc-ink);
}

.cvc-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cvc-share__label {
	margin-right: 5px;
	color: var(--cvc-muted);
	font-size: 12px;
}

.cvc-share a {
	display: grid;
	width: 40px;
	height: 40px;
	border: 1px solid var(--cvc-line);
	border-radius: 50%;
	color: var(--cvc-primary);
	font-size: 14px;
	font-weight: 900;
	place-items: center;
	transition: background-color 160ms ease, color 160ms ease;
}

.cvc-share svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.cvc-share a:nth-of-type(1) {
	color: #20a857;
}

.cvc-share a:nth-of-type(2) {
	color: #229ed9;
}

.cvc-share a:nth-of-type(3) {
	color: #4267b2;
}

.cvc-share a:nth-of-type(4) {
	color: #111;
}

.cvc-share a:hover {
	border-color: var(--cvc-accent);
	background: var(--cvc-accent);
	color: #fff;
}

.cvc-single-featured {
	overflow: hidden;
	margin-bottom: clamp(38px, 6vw, 70px);
	border-radius: var(--cvc-radius);
}

.cvc-single-featured img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.cvc-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
	padding-bottom: 72px;
}

.cvc-entry-content {
	min-width: 0;
	color: #37332f;
	font-family: var(--cvc-sans);
	font-size: clamp(17px, 1.5vw, 19px);
	line-height: 1.64;
}

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

.cvc-entry-content p,
.cvc-entry-content ul,
.cvc-entry-content ol,
.cvc-entry-content blockquote {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.cvc-entry-content h2,
.cvc-entry-content h3,
.cvc-entry-content h4 {
	margin: 1.6em 0 0.55em;
	color: var(--cvc-ink);
	font-family: var(--cvc-serif);
	font-weight: 600;
	line-height: 1.15;
}

.cvc-entry-content h2 {
	font-size: 1.65em;
}

.cvc-entry-content h3 {
	font-size: 1.32em;
}

.cvc-entry-content a {
	color: var(--cvc-primary);
	text-decoration: underline;
	text-decoration-color: var(--cvc-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.cvc-entry-content blockquote {
	padding: 8px 0 8px 28px;
	border-left: 5px solid var(--cvc-accent);
	color: var(--cvc-primary);
	font-size: 1.18em;
	font-style: italic;
}

.cvc-entry-content figure {
	max-width: 100%;
	margin: 1.8em 0;
}

.cvc-entry-content figcaption {
	margin-top: 7px;
	color: var(--cvc-muted);
	font-family: var(--cvc-sans);
	font-size: 12px;
}

.cvc-article-aside {
	border-left: 1px solid var(--cvc-line);
	padding-left: 30px;
}

.cvc-article-aside__title {
	margin: 0 0 18px;
	font-size: 21px;
}

.cvc-article-aside a {
	display: block;
	padding: 13px 0;
	border-top: 1px solid var(--cvc-line);
	color: var(--cvc-primary);
	font-family: var(--cvc-serif);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
}

.cvc-author-box {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	padding: 28px;
	margin-top: 45px;
	border: 1px solid var(--cvc-line);
	background: var(--cvc-warm);
}

.cvc-author-box img {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
}

.cvc-author-box h3 {
	margin: 0 0 5px;
	font-family: var(--cvc-sans);
	font-size: 19px;
	font-weight: 600;
}

.cvc-author-box p {
	margin: 0;
	font-family: var(--cvc-sans);
	font-size: 14px;
	line-height: 1.5;
}

.cvc-related {
	padding: 58px 0 76px;
	border-top: 1px solid var(--cvc-line);
	background: #fff;
}

.cvc-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.cvc-post-extras {
	padding: 58px 0 76px;
	border-top: 1px solid var(--cvc-line);
	background: #fff;
}

.cvc-post-extras__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: clamp(48px, 7vw, 90px);
	align-items: start;
}

.cvc-post-extras .cvc-section-title {
	font-size: clamp(25px, 2.6vw, 33px);
	font-weight: 600;
}

/* Pages, comments, utility */
.cvc-standard-page {
	max-width: 860px;
	padding: 56px 0 76px;
}

.cvc-standard-page__title {
	margin: 0 0 30px;
	font-family: var(--cvc-serif);
	font-size: clamp(34px, 4.2vw, 54px);
	font-weight: 600;
	line-height: 1.05;
}

.comments-area {
	padding-top: 42px;
	margin-top: 48px;
	border-top: 1px solid var(--cvc-line);
	font-family: var(--cvc-sans);
	font-size: 15px;
}

.comments-title,
.comment-reply-title {
	font-size: 25px;
	font-weight: 600;
}

.comment-list {
	padding-left: 24px;
}

.comment-list li {
	margin-bottom: 24px;
}

.comment-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--cvc-line);
	border-radius: 3px;
}

.comment-form input[type="submit"] {
	padding: 13px 22px;
	border: 0;
	border-radius: 3px;
	background: var(--cvc-primary);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

/* Footer */
.cvc-site-footer {
	background: var(--cvc-primary);
	color: rgba(255, 255, 255, 0.82);
}

.cvc-footer-brandbar {
	padding: 34px 0 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cvc-footer-main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	padding: 50px 0 42px;
}

.cvc-footer-column {
	min-width: 0;
	padding: 0 42px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.cvc-footer-column:first-child {
	padding-left: 0;
	border-left: 0;
}

.cvc-footer-column:last-child {
	padding-right: 0;
}

.cvc-footer-title {
	margin: 0 0 18px;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
}

.cvc-footer-menu,
.cvc-footer-categories {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.cvc-footer-menu {
	grid-template-columns: 1fr;
}

.cvc-footer-menu a,
.cvc-footer-categories a {
	font-size: 13px;
	font-weight: 400;
}

.cvc-footer-brand img {
	width: 230px;
	max-height: 80px;
	margin: 0 auto;
	object-fit: contain;
	object-position: center;
}

.cvc-footer-brand p {
	max-width: 330px;
	margin: 0 auto;
	font-size: 13px;
	text-align: center;
}

.cvc-footer-bottom {
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	background: var(--cvc-primary-dark);
	text-align: center;
}

.cvc-footer-bottom p {
	margin: 0;
	font-size: 13px;
}

@media (max-width: 1080px) {
	.cvc-feature-card {
		grid-template-columns: 36% minmax(0, 1fr);
	}

	.cvc-feature-card .cvc-thumb-link {
		min-height: 185px;
	}

	.cvc-home-grid {
		grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.7fr);
		gap: 42px;
	}
}

@media (max-width: 900px) {
	.cvc-primary-nav {
		display: none;
	}

	.cvc-brandbar__inner {
		min-height: 68px;
	}

	.cvc-feature-grid,
	.cvc-home-grid,
	.cvc-article-layout {
		grid-template-columns: 1fr;
	}

	.cvc-feature-hero {
		min-height: 0;
	}

	.cvc-feature-slider {
		min-height: 465px;
	}

	.cvc-feature-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.cvc-feature-card {
		grid-template-columns: 1fr;
	}

	.cvc-feature-card .cvc-thumb-link {
		min-height: 190px;
	}

	.cvc-feature-card__excerpt {
		display: -webkit-box;
	}

	.cvc-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	.cvc-sidebar-section {
		margin: 0;
		border-bottom: 0;
	}

	.cvc-article-aside {
		display: none;
	}

	.cvc-archive-grid,
	.cvc-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cvc-footer-main {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cvc-container {
		width: min(calc(100% - 32px), var(--cvc-container));
	}

	.cvc-brandbar__inner {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		min-height: 66px;
	}

	.cvc-brand img {
		width: min(170px, 52vw);
		max-height: 55px;
	}

	.cvc-icon-button {
		width: 38px;
		height: 38px;
	}

	.cvc-stories__nav {
		justify-content: flex-start;
		gap: 36px;
		padding: 14px 2px 12px;
		overflow-x: auto;
	}

	.cvc-stories__nav a {
		flex: 0 0 auto;
		font-size: 15px;
		font-weight: 300;
	}

	.cvc-stories__rail {
		gap: 18px;
		padding: 20px 4px 18px;
	}

	.cvc-story {
		flex-basis: 72px;
	}

	.cvc-story__image,
	.cvc-story__fallback {
		width: 64px;
		height: 64px;
	}

	.cvc-story-viewer {
		padding: 0;
	}

	.cvc-story-viewer__panel {
		width: 100%;
		height: 100dvh;
		border-radius: 0;
	}

	.cvc-story-viewer__content {
		right: 20px;
		bottom: max(28px, env(safe-area-inset-bottom));
		left: 20px;
	}

	.cvc-lead {
		padding-top: 30px;
	}

	.cvc-lead__title {
		font-size: clamp(20px, 5.5vw, 23px);
		font-weight: 500;
		line-height: 1.14;
	}

	.cvc-lead__excerpt {
		max-width: 92%;
		font-size: 14px;
		line-height: 1.42;
	}

	.cvc-feature-grid {
		padding-top: 28px;
	}

	.cvc-feature-slider {
		width: calc(100% + 32px);
		min-height: 0;
		aspect-ratio: 6 / 5;
		margin-left: -16px;
		border-radius: 0;
	}

	.cvc-feature-hero {
		border-radius: 0;
	}

	.cvc-feature-hero__content {
		padding: 24px 34px 42px;
	}

	.cvc-feature-hero__content .cvc-kicker {
		padding: 5px 13px;
		font-size: 10px;
	}

	.cvc-feature-hero__title {
		display: -webkit-box;
		overflow: hidden;
		font-size: clamp(20px, 5.9vw, 24px);
		font-weight: 700;
		line-height: 1.08;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}

	.cvc-feature-hero__excerpt {
		display: -webkit-box;
		overflow: hidden;
		font-size: 12px;
		line-height: 1.32;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.cvc-feature-side {
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 22px;
	}

	.cvc-feature-card {
		grid-template-columns: minmax(108px, 31%) minmax(0, 1fr);
		gap: 15px;
		padding-bottom: 22px;
		border: 0;
		border-bottom: 1px solid var(--cvc-line);
		border-radius: 0;
	}

	.cvc-feature-card + .cvc-feature-card {
		padding-top: 22px;
	}

	.cvc-feature-card .cvc-thumb-link {
		min-height: 0;
		aspect-ratio: 6 / 7;
		border-radius: 4px;
	}

	.cvc-feature-card__body {
		padding: 3px 0 0;
	}

	.cvc-feature-card .cvc-kicker {
		font-family: var(--cvc-serif);
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 0;
	}

	.cvc-feature-card__title {
		margin-top: 7px;
		margin-bottom: 7px;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.12;
	}

	.cvc-feature-card__excerpt {
		display: -webkit-box;
		overflow: hidden;
		color: #3e3a36;
		font-size: 12px;
		line-height: 1.32;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.cvc-news-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 34px 0;
	}

	.cvc-news-card .cvc-thumb-link {
		aspect-ratio: 2 / 1;
		border-radius: 0;
	}

	.cvc-news-card__category {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.cvc-news-card__title {
		margin-bottom: 10px;
		font-size: 19px;
		font-weight: 600;
		line-height: 1.14;
	}

	.cvc-news-card__excerpt {
		font-size: 14px;
		line-height: 1.4;
	}

	.cvc-news-card__time {
		margin-top: 13px;
		font-size: 12px;
	}

	.cvc-sidebar-title {
		font-size: 23px;
	}

	.cvc-recommended {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 15px;
	}

	.cvc-recommended__image {
		width: 96px;
	}

	.cvc-recommended__title {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.25;
	}

	.cvc-sidebar {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.cvc-sidebar-section {
		padding-bottom: 38px;
		border-bottom: 1px solid var(--cvc-line);
	}

	.cvc-archive-grid,
	.cvc-related-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.cvc-archive-card {
		padding: 34px 0;
		border-bottom: 1px solid var(--cvc-line);
	}

	.cvc-archive-card:first-child {
		padding-top: 0;
	}

	.cvc-archive-card .cvc-thumb-link {
		aspect-ratio: 2 / 1;
		margin-bottom: 18px;
		border-radius: 4px;
	}

	.cvc-archive-card__meta {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.cvc-archive-card h2 {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.14;
	}

	.cvc-archive-card p {
		font-size: 14px;
		line-height: 1.4;
	}

	.cvc-single-head__title {
		font-size: clamp(23px, 6.3vw, 27px);
		font-weight: 600;
		letter-spacing: -0.018em;
		line-height: 1.12;
	}

	.cvc-single-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.cvc-single-featured {
		width: 100%;
		margin-left: 0;
		border-radius: 5px;
	}

	.cvc-entry-content {
		font-size: 17px;
	}

	.cvc-post-extras__grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.cvc-author-box {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cvc-author-box img {
		margin: 0 auto;
	}

	.cvc-footer-main {
		display: none;
	}

	.cvc-search-form {
		flex-direction: column;
	}

	.cvc-search-form button {
		height: 46px;
	}
}

@media (max-width: 782px) {
	.admin-bar .cvc-site-header {
		top: 46px;
	}

	.admin-bar .cvc-drawer {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.cvc-site-header,
	.cvc-site-footer,
	.cvc-share,
	.cvc-article-aside,
	.comments-area {
		display: none !important;
	}

	.cvc-article-layout {
		display: block;
	}

	.cvc-entry-content {
		color: #000;
		font-size: 12pt;
	}
}
