/* Tangerine AEO – front-end stílusok (FAQ, HowTo, Breadcrumbs) */

/* ---------- Breadcrumbs ---------- */
.tgaeo-breadcrumbs {
	font-size: 0.9em;
	margin: 0 0 1em;
}
.tgaeo-breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tgaeo-breadcrumbs-list li {
	margin: 0;
	padding: 0;
}
.tgaeo-crumb a {
	text-decoration: none;
}
.tgaeo-crumb a:hover {
	text-decoration: underline;
}
.tgaeo-crumb-current {
	font-weight: 600;
	opacity: 0.8;
}
.tgaeo-crumb-sep {
	opacity: 0.5;
	user-select: none;
}

/* ---------- Közös: szélesség-korlát + középre ----------
   !important, hogy a full-width témaszekciók ne írják felül a korlátot. */
.tgaeo-faq,
.tgaeo-howto,
.tgaeo-locations {
	max-width: var( --tgaeo-mw, 820px ) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	float: none !important;
	width: auto !important;
}

/* ---------- FAQ accordion ---------- */
.tgaeo-faq {
	margin: 1.5em auto;
}
/* Dobozos (kártya) stílus */
.tgaeo-faq.is-boxed,
.tgaeo-howto.is-boxed {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	padding: 0.25em 1.25em;
	background: rgba(0, 0, 0, 0.015);
}
.tgaeo-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tgaeo-faq-item:last-child {
	border-bottom: 0;
}
.tgaeo-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 1em 0.25em;
	margin: 0;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	color: inherit;
}
.tgaeo-faq-q:hover {
	opacity: 0.8;
}
.tgaeo-faq-icon {
	flex: 0 0 auto;
	width: 0.7em;
	height: 0.7em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.tgaeo-faq-q[aria-expanded="true"] .tgaeo-faq-icon {
	transform: rotate(-135deg);
}
.tgaeo-faq-a {
	padding: 1em 1.5em 1.25em;
}
.tgaeo-faq-a > :first-child {
	margin-top: 0;
}
.tgaeo-faq-a > :last-child {
	margin-bottom: 0;
}
.tgaeo-faq-a[hidden] {
	display: none;
}

/* ---------- HowTo ---------- */
.tgaeo-howto {
	margin: 1.5em auto;
}
.tgaeo-howto.is-boxed {
	padding: 1.25em 1.5em;
}
.tgaeo-howto-title {
	margin: 0 0 0.5em;
}
.tgaeo-howto-list {
	margin: 0;
	padding-left: 1.4em;
}
.tgaeo-howto-step {
	margin-bottom: 0.8em;
}
.tgaeo-howto-name {
	display: block;
}
.tgaeo-howto-text > :first-child {
	margin-top: 0.2em;
}

/* ---------- Locations (NAP cards) ---------- */
.tgaeo-locations {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.2em;
	margin: 1.5em 0;
}
.tgaeo-loc-card {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 1em 1.2em;
}
.tgaeo-loc-name {
	margin: 0 0 0.4em;
	font-size: 1.05em;
}
.tgaeo-loc-addr,
.tgaeo-loc-phone {
	margin: 0 0 0.3em;
}
.tgaeo-loc-hours {
	list-style: none;
	margin: 0.4em 0 0;
	padding: 0;
	font-size: 0.9em;
	opacity: 0.85;
}
