/**
 * Single Article
 * -------------------------------------------------------
 * Design System para o conteúdo dos artigos da Valore RH.
 *
 * Compatível com:
 *
 * - Editor clássico;
 * - Gutenberg;
 * - Imagens;
 * - Galerias;
 * - Vídeos;
 * - Embeds;
 * - Tabelas;
 * - Citações;
 * - Botões;
 * - Colunas;
 * - Blocos de código;
 * - Arquivos;
 * - Separadores;
 * - Blocos expansíveis;
 * - Alinhamentos do WordPress.
 *
 * @package Valore_RH_Core
 * @since   1.0.0
 */

/* =====================================================
   ARTICLE
===================================================== */

.vr-single-article {
	padding: 56px 20px 80px;
	background: #ffffff;
}

.vr-single-article__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px minmax(0, 760px);
	gap: 48px;
	align-items: start;
	justify-content: center;
}

.vr-single-article__toc {
	position: sticky;
	top: 120px;
	align-self: start;
}

.vr-single-article__wrapper {
	width: 100%;
	max-width: none;
	margin: 0;
	min-width: 0;
}

/* =====================================================
   CONTENT
===================================================== */

.vr-single-article__content {
	font-family: "Poppins", sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.9;
	color: #1f2937;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

/* =====================================================
   FIRST AND LAST ELEMENTS
===================================================== */

.vr-single-article__content > :first-child {
	margin-top: 0;
}

.vr-single-article__content > :last-child {
	margin-bottom: 0;
}

/* =====================================================
   PARAGRAPHS
===================================================== */

.vr-single-article__content p {
	margin: 0 0 32px;
	font-size: 19px;
	line-height: 1.9;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

/* =====================================================
   HEADINGS
===================================================== */

.vr-single-article__content h2,
.vr-single-article__content h3,
.vr-single-article__content h4,
.vr-single-article__content h5,
.vr-single-article__content h6 {
	font-family: "Poppins", sans-serif;
	color: #021627;
	text-wrap: balance;
}

.vr-single-article__content h2 {
	position: relative;
	margin: 72px 0 28px;
	padding-bottom: 18px;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
}

.vr-single-article__content h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 16px;
	background: #f7a437;
	border-radius: 999px;
}

.vr-single-article__content h3 {
	margin: 56px 0 20px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
}

.vr-single-article__content h4 {
	margin: 42px 0 18px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.vr-single-article__content h5 {
	margin: 36px 0 16px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.45;
}

.vr-single-article__content h6 {
	margin: 32px 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* =====================================================
   TEXT FORMATTING
===================================================== */

.vr-single-article__content strong,
.vr-single-article__content b {
	font-weight: 700;
	color: #111827;
}

.vr-single-article__content em,
.vr-single-article__content i {
	font-style: italic;
}

.vr-single-article__content mark {
	padding: 2px 5px;
	background: #fff2d5;
	color: #021627;
	border-radius: 4px;
}

.vr-single-article__content small {
	font-size: 0.84em;
}

.vr-single-article__content sub,
.vr-single-article__content sup {
	font-size: 0.72em;
	line-height: 0;
}

/* =====================================================
   LINKS
===================================================== */

.vr-single-article__content a {
	color: #005bbb;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition:
		color 0.2s ease,
		text-decoration-color 0.2s ease;
}

.vr-single-article__content a:hover {
	color: #003f82;
	text-decoration-color: #f7a437;
}

.vr-single-article__content a:focus-visible {
	outline: 3px solid rgba(247, 164, 55, 0.35);
	outline-offset: 4px;
	border-radius: 4px;
}

/* =====================================================
   LISTS
===================================================== */

.vr-single-article__content ul,
.vr-single-article__content ol {
	margin: 0 0 32px;
	padding-left: 30px;
}

.vr-single-article__content ul {
	list-style: disc;
}

.vr-single-article__content ol {
	list-style: decimal;
}

.vr-single-article__content li {
	margin-bottom: 12px;
	padding-left: 4px;
	line-height: 1.8;
}

.vr-single-article__content li:last-child {
	margin-bottom: 0;
}

.vr-single-article__content li::marker {
	color: #f7a437;
	font-weight: 700;
}

.vr-single-article__content li > ul,
.vr-single-article__content li > ol {
	margin-top: 12px;
	margin-bottom: 0;
}

/* =====================================================
   IMAGES
===================================================== */

.vr-single-article__content img {
	max-width: 100%;
	height: auto;
}

.vr-single-article__content > img {
	display: block;
	width: 100%;
	margin: 48px auto;
	border-radius: 18px;
}

/* =====================================================
   FIGURES
===================================================== */

.vr-single-article__content figure {
	max-width: 100%;
	margin: 48px 0;
}

.vr-single-article__content figure img {
	display: block;
	width: 100%;
	margin: 0;
	border-radius: 18px;
}

.vr-single-article__content figcaption {
	margin-top: 14px;
	padding: 0 12px;
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	color: #6b7280;
}

/* =====================================================
   WORDPRESS IMAGE BLOCK
===================================================== */

.vr-single-article__content .wp-block-image {
	margin: 48px 0;
}

.vr-single-article__content .wp-block-image img {
	width: auto;
	max-width: 100%;
	height: auto;
}

.vr-single-article__content .wp-block-image.aligncenter {
	text-align: center;
}

.vr-single-article__content .wp-block-image.aligncenter img {
	margin-right: auto;
	margin-left: auto;
}

.vr-single-article__content .wp-block-image.alignleft {
	float: left;
	max-width: 46%;
	margin: 8px 32px 24px 0;
}

.vr-single-article__content .wp-block-image.alignright {
	float: right;
	max-width: 46%;
	margin: 8px 0 24px 32px;
}

/* =====================================================
   ALIGNMENTS
===================================================== */

.vr-single-article__content .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.vr-single-article__content .alignleft {
	float: left;
	margin: 8px 32px 24px 0;
}

.vr-single-article__content .alignright {
	float: right;
	margin: 8px 0 24px 32px;
}

.vr-single-article__content::after {
	content: "";
	display: table;
	clear: both;
}

/* =====================================================
   WIDE AND FULL ALIGNMENTS
===================================================== */

.vr-single-article__content .alignwide {
	width: min(1000px, calc(100vw - 48px));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.vr-single-article__content .alignfull {
	width: 100vw;
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

/* =====================================================
   BLOCKQUOTE
===================================================== */

.vr-single-article__content blockquote,
.vr-single-article__content .wp-block-quote {
	position: relative;
	margin: 56px 0;
	padding: 30px 34px;
	border: 0;
	border-left: 5px solid #f7a437;
	background: #f8fafc;
	border-radius: 12px;
	color: #021627;
}

.vr-single-article__content blockquote::before,
.vr-single-article__content .wp-block-quote::before {
	content: "“";
	position: absolute;
	top: 2px;
	right: 24px;
	font-family: Georgia, serif;
	font-size: 78px;
	font-weight: 700;
	line-height: 1;
	color: rgba(247, 164, 55, 0.18);
}

.vr-single-article__content blockquote p,
.vr-single-article__content .wp-block-quote p {
	position: relative;
	z-index: 1;
	margin: 0 0 16px;
	font-size: 23px;
	font-style: italic;
	line-height: 1.7;
	text-align: left;
	color: #021627;
}

.vr-single-article__content blockquote p:last-child,
.vr-single-article__content .wp-block-quote p:last-child {
	margin-bottom: 0;
}

.vr-single-article__content blockquote cite,
.vr-single-article__content .wp-block-quote cite {
	display: block;
	margin-top: 18px;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	color: #6b7280;
}

/* =====================================================
   PULLQUOTE
===================================================== */

.vr-single-article__content .wp-block-pullquote {
	margin: 64px 0;
	padding: 38px 28px;
	border-top: 3px solid #f7a437;
	border-bottom: 3px solid #f7a437;
	text-align: center;
}

.vr-single-article__content .wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.vr-single-article__content .wp-block-pullquote blockquote::before {
	display: none;
}

.vr-single-article__content .wp-block-pullquote p {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	color: #021627;
}

/* =====================================================
   TABLES
===================================================== */

.vr-single-article__content .wp-block-table,
.vr-single-article__content .vr-table-wrapper {
	width: 100%;
	margin: 48px 0;
	overflow-x: auto;
	border-radius: 12px;
	-webkit-overflow-scrolling: touch;
}

.vr-single-article__content table {
	width: 100%;
	min-width: 620px;
	margin: 48px 0;
	border-collapse: collapse;
	border-spacing: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.6;
}

.vr-single-article__content .wp-block-table table {
	margin: 0;
}

.vr-single-article__content thead {
	background: #021627;
	color: #ffffff;
}

.vr-single-article__content th,
.vr-single-article__content td {
	padding: 16px 18px;
	border: 1px solid #e5e7eb;
	text-align: left;
	vertical-align: top;
}

.vr-single-article__content th {
	font-weight: 700;
}

.vr-single-article__content tbody tr:nth-child(even) {
	background: #f8fafc;
}

.vr-single-article__content tbody tr:hover {
	background: #fffaf2;
}

.vr-single-article__content .wp-block-table figcaption {
	margin-top: 12px;
}

/* =====================================================
   CODE
===================================================== */

.vr-single-article__content code {
	padding: 3px 7px;
	background: #eef2f7;
	border: 1px solid #dbe3ec;
	border-radius: 5px;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.88em;
	color: #b42318;
}

.vr-single-article__content pre {
	max-width: 100%;
	margin: 48px 0;
	padding: 24px;
	overflow-x: auto;
	background: #021627;
	border-radius: 14px;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 15px;
	line-height: 1.7;
	color: #f8fafc;
	tab-size: 4;
	-webkit-overflow-scrolling: touch;
}

.vr-single-article__content pre code {
	padding: 0;
	background: transparent;
	border: 0;
	color: inherit;
}

/* =====================================================
   SEPARATOR
===================================================== */

.vr-single-article__content hr,
.vr-single-article__content .wp-block-separator {
	margin: 64px auto;
	border: 0;
	border-top: 1px solid #e5e7eb;
}

.vr-single-article__content .wp-block-separator.is-style-wide {
	width: 100%;
}

.vr-single-article__content .wp-block-separator.is-style-dots {
	border: 0;
	text-align: center;
}

.vr-single-article__content .wp-block-separator.is-style-dots::before {
	content: "•••";
	font-size: 22px;
	letter-spacing: 12px;
	color: #f7a437;
}

/* =====================================================
   BUTTONS
===================================================== */

.vr-single-article__content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 40px 0;
}

.vr-single-article__content .wp-block-button {
	margin: 0;
}

.vr-single-article__content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	background: #f7a437;
	border: 2px solid #f7a437;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	color: #021627;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.vr-single-article__content .wp-block-button__link:hover {
	background: #e79329;
	border-color: #e79329;
	color: #021627;
	text-decoration: none;
	transform: translateY(-2px);
}

.vr-single-article__content .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border-color: #021627;
	color: #021627;
}

.vr-single-article__content .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: #021627;
	color: #ffffff;
}

/* =====================================================
   COLUMNS
===================================================== */

.vr-single-article__content .wp-block-columns {
	display: flex;
	gap: 32px;
	margin: 48px 0;
}

.vr-single-article__content .wp-block-column {
	min-width: 0;
}

.vr-single-article__content .wp-block-column > :first-child {
	margin-top: 0;
}

.vr-single-article__content .wp-block-column > :last-child {
	margin-bottom: 0;
}

/* =====================================================
   GROUP
===================================================== */

.vr-single-article__content .wp-block-group {
	margin: 48px 0;
}

.vr-single-article__content .wp-block-group.has-background {
	padding: 32px;
	border-radius: 16px;
}

/* =====================================================
   COVER
===================================================== */

.vr-single-article__content .wp-block-cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	margin: 56px 0;
	overflow: hidden;
	border-radius: 18px;
}

.vr-single-article__content .wp-block-cover img {
	border-radius: 0;
}

.vr-single-article__content .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 32px;
	color: #ffffff;
}

.vr-single-article__content .wp-block-cover__inner-container p {
	color: inherit;
}

/* =====================================================
   MEDIA AND TEXT
===================================================== */

.vr-single-article__content .wp-block-media-text {
	display: grid;
	grid-template-columns: 50% 1fr;
	align-items: center;
	gap: 34px;
	margin: 56px 0;
}

.vr-single-article__content .wp-block-media-text__media img {
	width: 100%;
	margin: 0;
	border-radius: 16px;
}

.vr-single-article__content .wp-block-media-text__content {
	padding: 0;
}

.vr-single-article__content .wp-block-media-text__content > :first-child {
	margin-top: 0;
}

.vr-single-article__content .wp-block-media-text__content > :last-child {
	margin-bottom: 0;
}

/* =====================================================
   GALLERY
===================================================== */

.vr-single-article__content .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 48px 0;
	padding: 0;
	list-style: none;
}

.vr-single-article__content .wp-block-gallery.has-nested-images figure.wp-block-image {
	margin: 0;
}

.vr-single-article__content .wp-block-gallery img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	margin: 0;
	object-fit: cover;
	border-radius: 14px;
}

/* =====================================================
   VIDEO AND EMBEDS
===================================================== */

.vr-single-article__content video {
	display: block;
	width: 100%;
	height: auto;
	margin: 48px 0;
	border-radius: 16px;
}

.vr-single-article__content iframe {
	max-width: 100%;
	border: 0;
}

.vr-single-article__content .wp-block-embed,
.vr-single-article__content .wp-block-video,
.vr-single-article__content .wp-block-audio {
	margin: 48px 0;
}

.vr-single-article__content .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 16px;
}

.vr-single-article__content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
	aspect-ratio: 16 / 9;
	background: #000000;
}

.vr-single-article__content .wp-block-embed.is-type-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* =====================================================
   AUDIO
===================================================== */

.vr-single-article__content audio {
	display: block;
	width: 100%;
	margin: 40px 0;
}

/* =====================================================
   FILE
===================================================== */

.vr-single-article__content .wp-block-file {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 40px 0;
	padding: 20px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.vr-single-article__content .wp-block-file a {
	margin: 0;
}

.vr-single-article__content .wp-block-file__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	background: #021627;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
}

.vr-single-article__content .wp-block-file__button:hover {
	background: #f7a437;
	color: #021627;
	text-decoration: none;
}

/* =====================================================
   DETAILS
===================================================== */

.vr-single-article__content details,
.vr-single-article__content .wp-block-details {
	margin: 28px 0;
	padding: 20px 22px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.vr-single-article__content summary {
	cursor: pointer;
	font-weight: 700;
	color: #021627;
}

.vr-single-article__content details[open] summary {
	margin-bottom: 18px;
}

.vr-single-article__content details > :last-child {
	margin-bottom: 0;
}

/* =====================================================
   VERSE
===================================================== */

.vr-single-article__content .wp-block-verse {
	margin: 48px 0;
	padding: 26px;
	overflow-x: auto;
	background: #f8fafc;
	border-left: 4px solid #f7a437;
	border-radius: 10px;
	font-family: Georgia, serif;
	font-size: 18px;
	line-height: 1.8;
	white-space: pre-wrap;
	color: #374151;
}

/* =====================================================
   LATEST POSTS AND CATEGORY LISTS
===================================================== */

.vr-single-article__content .wp-block-latest-posts,
.vr-single-article__content .wp-block-categories-list {
	margin: 40px 0;
	padding: 0;
	list-style: none;
}

.vr-single-article__content .wp-block-latest-posts li,
.vr-single-article__content .wp-block-categories-list li {
	padding: 14px 0;
	border-bottom: 1px solid #e5e7eb;
}

/* =====================================================
   SEARCH BLOCK
===================================================== */

.vr-single-article__content .wp-block-search {
	margin: 40px 0;
}

.vr-single-article__content .wp-block-search__inside-wrapper {
	display: flex;
	gap: 10px;
}

.vr-single-article__content .wp-block-search__input {
	flex: 1;
	min-width: 0;
	padding: 13px 16px;
	border: 1px solid #d1d5db;
	border-radius: 9px;
	font-family: inherit;
	font-size: 16px;
	color: #1f2937;
}

.vr-single-article__content .wp-block-search__button {
	padding: 13px 20px;
	background: #021627;
	border: 0;
	border-radius: 9px;
	font-family: inherit;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
}

/* =====================================================
   RESPONSIVE - ARTICLE LAYOUT
===================================================== */

@media (max-width: 1024px) {
	.vr-single-article__container {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.vr-single-article__toc {
		position: static;
		top: auto;
		order: -1;
		width: 100%;
	}
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {
	.vr-single-article__content .alignwide {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		transform: none;
	}

	.vr-single-article__content .wp-block-columns {
		gap: 24px;
	}

	.vr-single-article__content .wp-block-media-text {
		gap: 26px;
	}
}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 768px) {
	.vr-single-article {
		padding: 40px 20px 64px;
	}

	.vr-single-article__wrapper {
		max-width: 100%;
	}

	.vr-single-article__content {
		font-size: 18px;
		line-height: 1.8;
	}

	.vr-single-article__content p {
		margin-bottom: 26px;
		font-size: 18px;
		line-height: 1.8;
		text-align: left;
		hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}

	.vr-single-article__content h2 {
		margin-top: 52px;
		margin-bottom: 24px;
		padding-bottom: 14px;
		font-size: 30px;
	}

	.vr-single-article__content h2::after {
		width: 56px;
		height: 3px;
		margin-top: 13px;
	}

	.vr-single-article__content h3 {
		margin-top: 44px;
		font-size: 25px;
	}

	.vr-single-article__content h4 {
		margin-top: 36px;
		font-size: 22px;
	}

	.vr-single-article__content h5 {
		font-size: 19px;
	}

	.vr-single-article__content h6 {
		font-size: 17px;
	}

	.vr-single-article__content ul,
	.vr-single-article__content ol {
		padding-left: 24px;
	}

	.vr-single-article__content figure,
	.vr-single-article__content .wp-block-image,
	.vr-single-article__content > img {
		margin-top: 36px;
		margin-bottom: 36px;
	}

	.vr-single-article__content .wp-block-image.alignleft,
	.vr-single-article__content .wp-block-image.alignright,
	.vr-single-article__content .alignleft,
	.vr-single-article__content .alignright {
		float: none;
		max-width: 100%;
		margin: 36px 0;
	}

	.vr-single-article__content .alignfull {
		width: calc(100% + 40px);
		margin-right: 0;
		margin-left: -20px;
		transform: none;
	}

	.vr-single-article__content blockquote,
	.vr-single-article__content .wp-block-quote {
		margin: 42px 0;
		padding: 24px;
	}

	.vr-single-article__content blockquote p,
	.vr-single-article__content .wp-block-quote p {
		font-size: 20px;
	}

	.vr-single-article__content .wp-block-pullquote {
		margin: 48px 0;
		padding: 30px 18px;
	}

	.vr-single-article__content .wp-block-pullquote p {
		font-size: 23px;
	}

	.vr-single-article__content table {
		font-size: 15px;
	}

	.vr-single-article__content th,
	.vr-single-article__content td {
		padding: 13px 14px;
	}

	.vr-single-article__content pre {
		margin: 36px 0;
		padding: 20px;
		font-size: 14px;
	}

	.vr-single-article__content .wp-block-columns {
		flex-direction: column;
		gap: 28px;
	}

	.vr-single-article__content .wp-block-media-text,
	.vr-single-article__content .wp-block-media-text.has-media-on-the-right {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.vr-single-article__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
		order: 0;
	}

	.vr-single-article__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
		order: 1;
	}

	.vr-single-article__content .wp-block-gallery {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.vr-single-article__content .wp-block-gallery img {
		min-height: auto;
	}

	.vr-single-article__content .wp-block-cover {
		min-height: 340px;
		margin: 42px 0;
	}

	.vr-single-article__content .wp-block-cover__inner-container {
		padding: 24px;
	}

	.vr-single-article__content .wp-block-group.has-background {
		padding: 24px;
	}

	.vr-single-article__content .wp-block-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.vr-single-article__content .wp-block-button,
	.vr-single-article__content .wp-block-button__link {
		width: 100%;
	}

	.vr-single-article__content .wp-block-search__inside-wrapper {
		flex-direction: column;
	}

	.vr-single-article__content .wp-block-search__button {
		width: 100%;
	}
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
	.vr-single-article {
		padding-right: 16px;
		padding-left: 16px;
	}

	.vr-single-article__content {
		font-size: 17px;
	}

	.vr-single-article__content p {
		font-size: 17px;
	}

	.vr-single-article__content h2 {
		font-size: 28px;
	}

	.vr-single-article__content h3 {
		font-size: 23px;
	}

	.vr-single-article__content h4 {
		font-size: 21px;
	}

	.vr-single-article__content .alignfull {
		width: calc(100% + 32px);
		margin-left: -16px;
	}

	.vr-single-article__content blockquote,
	.vr-single-article__content .wp-block-quote {
		padding: 22px 20px;
	}

	.vr-single-article__content blockquote::before,
	.vr-single-article__content .wp-block-quote::before {
		right: 14px;
		font-size: 60px;
	}
}

/* =====================================================
   MOBILE — ARTICLE SPACING
===================================================== */

@media (max-width: 767px) {
	.vr-single-article {
		padding-top: 20px;
		padding-bottom: 56px;
	}

	.vr-single-article__container {
		gap: 28px;
	}
}