/* --------- Box sizing --------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
/* --------- Reset general --------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
/* --------- HTML5 display --------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
}
/* --------- Base document --------- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* --------- Listas --------- */
ol,
ul {
	list-style: none;
}
/* --------- Citas --------- */
blockquote,
q {
	quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: "";
	content: none;
}
/* --------- Tablas --------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
/* --------- Medios --------- */
img,
picture,
video,
canvas,
svg,
iframe {
	display: block;
	max-width: 100%;
	height: auto;
}
/* --------- Formularios --------- */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: transparent;
	border-radius: 0;
}
input,
textarea,
select {
	/*width: 100%;*/
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
	border: none;
	background: none;
}
textarea {
	resize: vertical;
	min-height: 120px;
}
button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
	cursor: not-allowed;
	background: gray;
}
/* --------- Enlaces --------- */
a {
	color: inherit;
	text-decoration: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}
/* --------- Tipografía base --------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}
strong,
b {
	font-weight: bolder;
}
em,
i {
	font-style: italic;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/* --------- Elementos varios --------- */
hr {
	border: 0;
	border-top: 1px solid currentColor;
	opacity: 0.15;
}
[hidden] {
	display: none !important;
}
/* --------- WordPress helpers --------- */
.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}
.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}
.wp-caption {
	max-width: 100%;
}
.wp-caption img {
	margin: 0;
}
.wp-caption-text {
	font-size: 0.875rem;
	line-height: 1.4;
	margin-top: 0.5rem;
}
.gallery {
	display: grid;
	gap: 1rem;
}
.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 {
	clip: auto !important;
	width: auto;
	height: auto;
	margin: 0;
	padding: 1rem 1.25rem;
	overflow: visible;
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	background: #fff;
	color: #000;
	white-space: normal;
}
/* --------- Herencia útil --------- */
body,
button,
input,
select,
textarea {
	font-family: sans-serif;
	font-size: 16px;
}
/* --------- Evitar problemas comunes --------- */
:where(p, h1, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, figure) {
	overflow-wrap: break-word;
}
:where(input, textarea, select, button) {
	/*appearance: none;
	-webkit-appearance: none;*/
}