

a,
button,
.vl-card__media img {
	transition:
		color 0.16s var(--ease-out),
		border-color 0.16s var(--ease-out),
		transform 0.2s var(--ease-out);
}

a:active {
	transform: translateY(1px);
}

button:active,
input[type="submit"]:active,
input[type="button"]:active {
	transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
	a,
	button,
	.vl-card__media img {
		transition: none;
	}

	a:active,
	button:active,
	input[type="submit"]:active,
	input[type="button"]:active {
		transform: none;
	}
}

.vl-card {
	container-type: inline-size;
	display: flex;
	flex-direction: column;
	gap: 0;
	
	overflow: hidden;
	background: var(--surface);
	border-radius: var(--radius-md);
	
	box-shadow:
		inset 0 0 0 var(--border-width) color-mix(in srgb, var(--ink) 7%, transparent),
		0 var(--space-1) var(--space-3) color-mix(in srgb, var(--shadow) 16%, transparent);
}

.vl-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.vl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
	.vl-card__media img { transition: none; }
}

@media (hover: hover) and (pointer: fine) {
	.vl-card:hover .vl-card__media img { transform: scale(1.03); }
}

.vl-card__kicker {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.vl-card__kicker a {
	color: var(--accent);
	text-decoration: none;
}

.vl-card__body {
	padding: var(--space-4);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	
	flex: 1 1 auto;
}

.vl-card__title {
	margin: 0;
	font-size: var(--h4);
	line-height: var(--lh-tight);
}

@container (min-width: 300px) {
	.vl-card__title { font-size: var(--h3); }
}

@container (min-width: 520px) {
	.vl-card__title { font-size: var(--h2); }
}

.vl-card__title a {
	color: var(--ink);
	text-decoration: none;
}

.vl-card__title a:hover { text-decoration: underline; }

.vl-card__excerpt {
	margin: 0;
	color: var(--body);
	line-height: var(--lh-body);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@container (min-width: 520px) {
	.vl-card__excerpt { -webkit-line-clamp: 3; }
}

.vl-card__meta {
	margin: var(--space-1) 0 0;
	margin-top: auto;
	padding-top: var(--space-2);
	color: var(--muted);
	font-size: 0.8125rem;
}

.vl-card__sep { margin: 0 var(--space-2); }

.vl-card--lead .vl-card__title {
	font-size: var(--h1);
}

.vl-card--lead .vl-card__media { aspect-ratio: 3 / 2; }

.vl-card--lead .vl-card__excerpt { font-size: calc(var(--body-size) * 1.05); }

@media (min-width: 900px) {
	.vl-card--lead {
		flex-direction: row;
		align-items: center;
		gap: var(--space-7);
	}
	.vl-card--lead .vl-card__media {
		flex: 0 0 56%;
		aspect-ratio: 4 / 3;
	}
	.vl-card--lead .vl-card__body {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		gap: var(--space-2);
	}
}

@media (min-width: 700px) {
	.vl-card--list {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}

	.vl-card--list .vl-card__media {
		position: relative;
		flex: 0 0 34%;
		aspect-ratio: auto;
		align-self: stretch;
		min-height: 100%;
	}

	.vl-card--list .vl-card__media img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.vl-card--list .vl-card__body { flex: 1 1 auto; }
}

.vl-breadcrumb { margin-bottom: var(--gap); }

.vl-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.8125rem;
	color: var(--muted);
}

.vl-breadcrumb__item + .vl-breadcrumb__item::before {
	content: "/";
	margin-right: var(--space-2);
	color: var(--line);
}

.vl-breadcrumb a { color: var(--muted); }

.vl-pagination { margin-block: var(--block-gap); }

.vl-pagination__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-1);
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-pagination__link,
.vl-pagination__current,
.vl-pagination__gap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding-inline: var(--space-2);
	border-radius: var(--radius-sm);
	text-decoration: none;
}

.vl-pagination__link {
	color: var(--ink);
	border: var(--border-width) solid var(--line);
}

.vl-pagination__link:hover { border-color: var(--accent); }

.vl-pagination__current {
	background: var(--accent);
	color: var(--accent-ink);
	font-weight: 600;
}

.vl-pagination__gap { color: var(--muted); }

.vl-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}

.vl-widget {
	padding: var(--gap);
	background: var(--surface);
	border: var(--border-width) solid var(--line);
	border-radius: var(--radius-md);
}

.vl-widget__title {
	margin: 0 0 var(--space-3);
	font-size: var(--h3);
}

.vl-widget ul {
	margin: 0;
	padding-left: var(--space-4);
}

.vl-list {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-list__title {
	margin: 0 0 var(--space-1);
	font-size: var(--h3);
}

.vl-list__title a {
	color: var(--ink);
	text-decoration: none;
}

.vl-list__excerpt {
	margin: 0;
	color: var(--body);
}

.vl-empty { color: var(--muted); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="number"],
select,
textarea {
	width: 100%;
	max-width: 100%;
	padding: var(--space-2) var(--space-3);
	font: inherit;
	color: var(--ink);
	background: var(--surface);
	
	border: var(--border-width) solid var(--muted);
	border-radius: var(--radius-sm);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="url"]:focus-visible,
input[type="search"]:focus-visible,
input[type="password"]:focus-visible,
input[type="number"]:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 1px;
}

::placeholder {
	color: var(--muted);
	opacity: 1;
}

button,
input[type="submit"],
input[type="button"] {
	padding: var(--space-2) var(--space-4);
	font: inherit;
	font-weight: 600;
	color: var(--accent-ink);
	background: var(--accent);
	border: var(--border-width) solid var(--accent);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.9;
}

.vl-card--feed {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
}

.vl-card--feed .vl-card__media {
	position: relative;
	aspect-ratio: auto;
	align-self: stretch;
	min-height: 100%;
}

.vl-card--feed .vl-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 700px) {
	
	.vl-card--feed .vl-card__media {
		aspect-ratio: 3 / 2;
		height: auto;
		min-height: 0;
	}
}

@media (max-width: 700px) {
	.vl-card--feed { grid-template-columns: 1fr; }
}

.vl-card--compacta {
	padding-block: var(--space-3);
	border-bottom: var(--border-width) solid var(--line);
	background: none;
	box-shadow: none;
	overflow: visible;
}

.vl-card--compacta .vl-card__body { padding: 0; }

.vl-card--compacta .vl-card__title {
	font-size: var(--body-size);
	line-height: var(--lh-tight);
}

.vl-navtoggle {
	display: none;
	padding: var(--space-2) var(--space-4);
	border: var(--border-width) solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--surface);
	color: var(--ink);
	font: inherit;
	font-size: 0.875rem;
	cursor: pointer;
}

.vl-nav a {
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
	.vl-nav a:hover { text-decoration-color: currentColor; }
}

.vl-nav .current-menu-item > a,
.vl-nav .current-menu-parent > a,
.vl-nav .current-post-ancestor > a,
.vl-nav .current-category-ancestor > a {
	color: var(--ink);
	text-decoration-color: var(--accent);
}

.vl-nav > li { position: relative; }

.vl-nav__abre {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	cursor: pointer;
	list-style: none;
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

.vl-nav__abre::-webkit-details-marker { display: none; }

.vl-nav__abre::after {
	content: "";
	width: 0.4em;
	height: 0.4em;
	border: solid currentColor;
	border-width: 0 0.12em 0.12em 0;
	transform: translateY(-0.15em) rotate(45deg);
}

.vl-nav__desplegable[open] > .vl-nav__abre::after {
	transform: translateY(0.1em) rotate(-135deg);
}

@media (hover: hover) and (pointer: fine) {
	.vl-nav__abre:hover { text-decoration-color: currentColor; }
}

.vl-nav .current-menu-item > details > .vl-nav__abre {
	color: var(--ink);
	text-decoration-color: var(--accent);
}

.vl-nav__panel {
	position: absolute;
	top: calc(100% + var(--space-2));
	left: 0;
	z-index: 10;
	display: grid;
	gap: var(--space-1);
	min-width: 12rem;
	margin: 0;
	padding: var(--space-2);
	list-style: none;
	background: var(--surface);
	border: var(--border-width) solid var(--line);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow);
	font-size: 0.9375rem;
	text-transform: none;
	letter-spacing: normal;
}

.vl-nav .vl-nav__panel a {
	display: block;
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-sm);
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
	.vl-nav .vl-nav__panel a:hover {
		background: color-mix(in srgb, var(--accent) 8%, transparent);
	}
}

.vl-nav .vl-nav__panel .current-menu-item > a {
	background: color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (max-width: 720px) {
	.vl-header.has-toggle.is-open .vl-nav__abre {
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding-block: var(--space-4);
		border-top: var(--border-width) solid var(--line);
	}

	.vl-header.has-toggle .vl-nav__panel {
		position: static;
		min-width: 0;
		padding: 0 0 var(--space-2) var(--space-4);
		border: 0;
		box-shadow: none;
		background: none;
	}

	.vl-header.has-toggle.is-open .vl-nav .vl-nav__panel a {
		padding-block: var(--space-3);
		border-top: 0;
	}
}

@media (max-width: 720px) {
	.vl-header.has-toggle .vl-navtoggle { display: inline-block; }

	.vl-header.has-toggle .vl-header__nav {
		flex: 1 0 100%;
		align-self: stretch;
	}

	.vl-header.has-toggle .vl-nav {
		display: none;
		width: 100%;
		opacity: 0;
		transform: translateY(-4px);
		transition:
			opacity 0.16s var(--ease-out),
			transform 0.16s var(--ease-out),
			display 0.16s allow-discrete;
	}

	.vl-header.has-toggle.is-open .vl-nav {
		display: flex;
		flex-direction: column;
		
		gap: 0;
		opacity: 1;
		transform: translateY(0);
	}

	.vl-header.has-toggle.is-open .vl-nav a {
		display: block;
		padding-block: var(--space-4);
		border-top: var(--border-width) solid var(--line);
	}

	@starting-style {
		.vl-header.has-toggle.is-open .vl-nav {
			opacity: 0;
			transform: translateY(-4px);
		}
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 720px) {
	.vl-header.has-toggle .vl-nav { transition: none; }
}

.vl-single__media img,
.vl-prose img {
	display: block;
	margin-inline: auto;
}

.vl-prose figure {
	margin-inline: 0;
}

.vl-single__media figcaption,
.vl-prose figcaption {
	margin-top: var(--space-2);
	color: var(--muted);
	font-size: 0.8125rem;
	text-align: center;
}

.vl-comments {
	margin-top: var(--block-gap);
	padding-top: var(--space-6);
	border-top: var(--border-width) solid var(--line);
}

.vl-comments__title {
	margin: 0 0 var(--space-5);
	font-size: var(--h3);
}

.vl-comments__list {
	margin: 0 0 var(--space-6);
	padding: 0;
	list-style: none;
}

.vl-comments__list ol {
	
	margin: var(--space-4) 0 0 var(--space-5);
	padding: 0;
	list-style: none;
}

.vl-comments__list li {
	margin-bottom: var(--space-4);
	padding-bottom: var(--space-4);
	border-bottom: var(--border-width) solid var(--line);
}

.vl-comments__list .comment-author {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-weight: 600;
	color: var(--ink);
}

.vl-comments__list .comment-author img {
	border-radius: 50%;
}

.vl-comments__list .comment-metadata,
.vl-comments__list .comment-metadata a {
	color: var(--muted);
	font-size: 0.8125rem;
	text-decoration: none;
}

.vl-comments__list .comment-content {
	margin-top: var(--space-2);
	line-height: var(--lh-body);
}

.vl-comments__list .reply {
	margin-top: var(--space-2);
	font-size: 0.8125rem;
}

.vl-comments__closed {
	color: var(--muted);
}

.comment-form p {
	margin: 0 0 var(--space-4);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.comment-form label {
	font-weight: 600;
	color: var(--ink);
	font-size: 0.875rem;
}

.comment-form .comment-form-cookies-consent label {
	font-weight: 400;
	color: var(--body);
	line-height: var(--lh-body);
}

.comment-form .comment-form-cookies-consent {
	flex-direction: row;
	align-items: flex-start;
	gap: var(--space-2);
}

.comment-form input[type="checkbox"],
.comment-form input[type="radio"] {
	width: auto;
	min-width: 0;
	flex: none;
	margin: 0;
	
	transform: translateY(0.15em);
}

.comment-reply-title {
	margin: 0 0 var(--space-4);
	font-size: var(--h4);
}

.vl-search {
	display: flex;
	gap: var(--space-2);
	align-items: stretch;
}

.vl-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.vl-search__input {
	flex: 1 1 auto;
	min-width: 0;
}

.vl-search__submit {
	flex: none;
}

.vl-promo {
	display: block;
	margin-block: var(--space-6);
	padding-top: var(--space-4);
	border-top: var(--border-width) solid var(--line);
}

.vl-promo img {
	display: block;
	margin-inline: auto;
}

.vl-promo--barra-lateral {
	margin-block: 0 var(--space-5);
	padding-top: 0;
	border-top: 0;
}

.vl-single {
	max-width: 68ch;
}

.vl-archive__main {
	min-width: 0;
}

.vl-list__item + .vl-list__item {
	margin-top: var(--space-4);
	padding-top: var(--space-4);
	border-top: var(--border-width) solid var(--line);
}

.vl-pagination__item {
	display: flex;
}

.vl-footer__cuerpo {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-6) var(--space-8);
}

.vl-footer__marca {
	flex: 2 1 16rem;
	min-width: 0;
}

.vl-footer__marca img {
	display: block;
	max-height: 48px;
	width: auto;
}

.vl-footer__nombre {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h3);
	line-height: var(--lh-tight);
}

.vl-footer__nombre a {
	color: var(--ink);
	text-decoration: none;
}

.vl-footer__lema {
	max-width: 40ch;
	margin: var(--space-2) 0 0;
	color: var(--muted);
	font-size: 0.9375rem;
}

.vl-footer__columna {
	flex: 1 1 10rem;
	min-width: 0;
}

.vl-footer__titulo {
	margin: 0 0 var(--space-3);
	color: var(--ink);
	font-size: 0.875rem;
	font-weight: 600;
}

.vl-footer__enlaces {
	display: grid;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9375rem;
}

@media (min-width: 46rem) {
	.vl-footer__enlaces:has(li:nth-child(5)) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-flow: column;
		grid-template-rows: repeat(4, auto);
		column-gap: var(--space-6);
	}
}

.vl-footer__enlaces a {
	color: var(--muted);
	text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
	.vl-footer__enlaces a:hover { color: var(--accent); }
}

.vl-footer__legal {
	margin: var(--space-6) 0 0;
	padding-top: var(--space-4);
	border-top: var(--border-width) solid var(--line);
	color: var(--muted);
	font-size: 0.8125rem;
}

.vl-autor {
	display: grid;
	gap: var(--space-2);
	margin-top: var(--block-gap);
	padding: var(--space-5);
	border: var(--border-width) solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
}

.vl-autor__etiqueta {
	margin: 0;
	color: var(--muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.vl-autor__nombre {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--h4);
	line-height: var(--lh-tight);
}

.vl-autor__nombre a {
	color: var(--ink);
	text-decoration: none;
}

.vl-autor__bio {
	margin: 0;
	color: var(--body);
}

.vl-autor__mas {
	justify-self: start;
	font-size: 0.9375rem;
}

.vl-rail { margin-bottom: var(--block-gap); }

.vl-rail__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: var(--space-6);
	border-bottom: var(--border-width) solid var(--line);
}

.vl-rail__title {
	position: relative;
	margin: 0;
	padding-bottom: var(--space-2);
	font-size: var(--h2);
}

.vl-rail__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: calc(var(--border-width) * -1);
	width: 100%;
	height: 2px;
	background: var(--accent);
}

.vl-rail__all {
	flex: 0 0 auto;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent);
	text-decoration: none;
}

.vl-rail__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap) var(--space-6);
}

.vl-rail--relacionados {
	margin-top: var(--block-gap);
	padding-top: var(--space-6);
	border-top: var(--border-width) solid var(--line);
}
