/* main.css — Reset ligero y estilos base del tema iasentry */

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

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

body {
	margin: 0;
	font-family: var(--font-primary);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-gray-text);
	background-color: var(--color-white);
}

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

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: var(--color-cyan);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-cyan-dark);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	color: var(--color-steel-dark);
	line-height: 1.25;
}

h1,
h2 {
	font-weight: 700;
}

h3,
h4 {
	font-weight: 600;
}

p {
	margin: 0 0 1em;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 1rem;
}

:focus-visible {
	outline: 2px solid var(--color-cyan);
	outline-offset: 2px;
}

/* Oculto visualmente, accesible para lectores de pantalla (patrón WP estándar) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
	background-color: var(--color-white);
	border-radius: 0 0 var(--radius-sm) 0;
	clip: auto !important;
	clip-path: none;
	color: var(--color-steel-dark);
	display: block;
	font-weight: 600;
	height: auto;
	left: 0;
	padding: var(--space-sm) var(--space-md);
	position: fixed;
	top: 0;
	width: auto;
	z-index: 100000;
}
