/**
 * Anyweb — minimál alapstílus.
 *
 * Nincs Bootstrap/Tailwind/normalize könyvtár. Csak a legszükségesebb alap.
 * Kerüljük az !important-ot, hogy ne ütközzön az Elementor widget stílusokkal.
 * A tartalmi oldalak stílusát Elementor adja — ez itt csak a natív/fallback markup alapja.
 */

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

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

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background: #fff;
}

img,
picture,
video,
svg {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

/* --- Fallback layout (csak az Elementor-mentes markuphoz) --- */
.anyweb-main {
	max-width: 1140px;
	margin-inline: auto;
	padding: 2rem 1rem;
}

.anyweb-header__inner,
.anyweb-footer__inner {
	max-width: 1140px;
	margin-inline: auto;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.anyweb-nav ul {
	list-style: none;
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
}

.anyweb-article + .anyweb-article {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #eaeaea;
}

.anyweb-article__title {
	margin: 0 0 0.5rem;
}

.anyweb-footer {
	border-top: 1px solid #eaeaea;
	color: #666;
	font-size: 0.9rem;
}
