/* Aho frontend styles
 * Version claire : fond crème, texte slate foncé, boutons blancs.
 * Charte Ta'iara : pas de couleur vive, structure carte avec titres.
 * Pas d'emoji, pas de tirets longs, pas de virgule avant "et".
 *
 * Specificity boostée (.aho-form contexte) pour résister aux overrides du thème.
 */

.aho-depose {
	max-width: 760px;
	margin: 0 auto;
	padding: 32px 20px 64px;
	color: #1F1B16;
	font-family: Georgia, "Times New Roman", serif;
	background: transparent;
}

.aho-depose__header {
	text-align: center;
	margin-bottom: 32px;
}

.aho-depose__title {
	font-size: 2rem;
	letter-spacing: 0.01em;
	margin: 0 0 12px;
	font-weight: 400;
	color: #1F1B16;
}

.aho-depose__lead {
	font-size: 1rem;
	line-height: 1.65;
	color: #6E6760;
	margin: 0;
	max-width: 540px;
	margin: 0 auto;
}

/* Carte formulaire */
.aho-form {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
	margin-top: 24px;
}

.aho-form__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.aho-form .aho-form__label,
.aho-form .aho-form__legend {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A837A;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	font-weight: 600;
	margin: 0;
	display: block;
}

.aho-form .aho-form__input,
.aho-form .aho-form__select,
.aho-form .aho-form__textarea {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 8px;
	padding: 12px 14px;
	color: #1F1B16;
	font-size: 1rem;
	font-family: inherit;
	box-sizing: border-box;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	box-shadow: none;
}

.aho-form .aho-form__textarea {
	min-height: 200px;
	resize: vertical;
	line-height: 1.65;
	font-family: Georgia, "Times New Roman", serif;
}

.aho-form .aho-form__input::placeholder,
.aho-form .aho-form__textarea::placeholder {
	color: #B8B2A8;
	opacity: 1;
}

.aho-form .aho-form__input:focus,
.aho-form .aho-form__select:focus,
.aho-form .aho-form__textarea:focus {
	outline: none;
	border-color: #1F1B16;
	box-shadow: 0 0 0 3px rgba(31, 27, 22, 0.08);
}

.aho-form__counter {
	font-size: 0.8rem;
	color: #A8A299;
	text-align: right;
	font-family: "Inter", system-ui, sans-serif;
}

.aho-form__counter.is-near {
	color: #8A837A;
}

.aho-form__counter.is-over {
	color: #B33C2A;
}

.aho-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 640px) {
	.aho-form__row {
		grid-template-columns: 1fr;
	}
	.aho-depose {
		padding: 24px 14px 48px;
	}
	.aho-form {
		padding: 22px;
	}
}

/* Radios voix : pilules */
.aho-form__radios {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.aho-form .aho-form__radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	background: #FFFFFF;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.92rem;
	color: #1F1B16;
	user-select: none;
	margin: 0;
}

.aho-form .aho-form__radio input {
	accent-color: #1F1B16;
	margin: 0;
}

.aho-form .aho-form__radio:hover {
	border-color: #1F1B16;
}

/* Chips thèmes : checkbox visuellement cachée mais TOUJOURS clickable via label.
 * On utilise position absolute + opacity 0 plutôt que display:none,
 * ce qui garde le clic et le focus accessibles. */
.aho-form .aho-form__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.aho-form .aho-form__chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	background: #FFFFFF;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.9rem;
	font-family: "Inter", system-ui, sans-serif;
	color: #1F1B16;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	user-select: none;
	margin: 0;
	line-height: 1.2;
}

.aho-form .aho-form__chip:hover {
	border-color: #1F1B16;
}

.aho-form .aho-form__chip input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	border: 0;
	pointer-events: none;
}

.aho-form .aho-form__chip.is-checked,
.aho-form .aho-form__chip:has(input:checked) {
	background: #1F1B16;
	border-color: #1F1B16;
	color: #FFFFFF;
}

.aho-form .aho-form__chip input[type="checkbox"]:focus-visible + span {
	outline: 2px solid #1F1B16;
	outline-offset: 4px;
	border-radius: 4px;
}

.aho-form__sep {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	margin: 4px 0;
}

.aho-form .aho-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #4A453F;
	font-family: "Inter", system-ui, sans-serif;
	margin: 0;
}

.aho-form .aho-form__consent input {
	margin-top: 4px;
	accent-color: #1F1B16;
	flex-shrink: 0;
}

.aho-form .aho-form__consent a {
	color: #1F1B16;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Honeypot caché */
.aho-form__hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.aho-form__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 4px;
}

/* Bouton blanc conforme à la charte Ta'iara */
.aho-form .aho-form__submit {
	background: #FFFFFF;
	color: #1F1B16;
	border: 1px solid #1F1B16;
	padding: 14px 32px;
	border-radius: 999px;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	font-family: "Inter", system-ui, sans-serif;
	transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.aho-form .aho-form__submit:hover:not(:disabled) {
	background: #1F1B16;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.aho-form .aho-form__submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.aho-form__feedback {
	min-height: 1.5em;
	font-size: 0.95rem;
	font-family: "Inter", system-ui, sans-serif;
	padding-top: 4px;
}

.aho-form__feedback.is-success {
	color: #2E6B3F;
}

.aho-form__feedback.is-error {
	color: #B33C2A;
}

/* ====== Ponts (single fragment) ====== */

.aho-ponts {
	max-width: 720px;
	margin: 56px auto 0;
	padding: 28px 24px;
	background: #FBF9F4;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	color: #1F1B16;
}

.aho-ponts__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 400;
	margin: 0 0 18px;
	color: #1F1B16;
	letter-spacing: 0.01em;
}

.aho-ponts__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.aho-ponts__item {
	margin: 0;
}

.aho-ponts__link {
	display: block;
	padding: 14px 16px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.aho-ponts__link:hover {
	border-color: #1F1B16;
	transform: translateY(-1px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.aho-ponts__pseudo {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A837A;
	margin-bottom: 6px;
	font-weight: 600;
}

.aho-ponts__excerpt {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #1F1B16;
	margin-bottom: 6px;
}

.aho-ponts__terms {
	display: block;
	font-size: 0.82rem;
	color: #6E6760;
	font-style: italic;
}

/* ====== Auth (login / register) ====== */

.aho-auth {
	max-width: 540px;
	margin: 0 auto;
	padding: 32px 20px 64px;
	color: #1F1B16;
	font-family: Georgia, "Times New Roman", serif;
}

.aho-auth__header {
	text-align: center;
	margin-bottom: 28px;
}

.aho-auth__title {
	font-size: 1.8rem;
	font-weight: 400;
	margin: 0 0 10px;
	letter-spacing: 0.01em;
	color: #1F1B16;
}

.aho-auth__lead {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6E6760;
	margin: 0;
}

.aho-auth__error,
.aho-auth__success {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.92rem;
	line-height: 1.5;
}

.aho-auth__error {
	background: #FDF1EF;
	border: 1px solid #E2C1C1;
	color: #B33C2A;
}

.aho-auth__success {
	background: #EEF6EF;
	border: 1px solid #C9E2C1;
	color: #2E6B3F;
}

.aho-auth__alt {
	text-align: center;
	font-size: 0.9rem;
	font-family: "Inter", system-ui, sans-serif;
	color: #6E6760;
	margin: 8px 0 0;
}

.aho-auth__alt a {
	color: #1F1B16;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.aho-auth__logout {
	display: inline-block;
	padding: 8px 16px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	color: #6E6760;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: #FFFFFF;
	transition: border-color 0.18s ease, color 0.18s ease;
}

.aho-auth__logout:hover {
	border-color: #1F1B16;
	color: #1F1B16;
}

.aho-form .aho-form__remember {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.9rem;
	color: #4A453F;
}

.aho-form .aho-form__remember input {
	accent-color: #1F1B16;
}

/* ====== Dashboard sanctuaire ====== */

.aho-dashboard {
	max-width: 880px;
	margin: 0 auto;
	padding: 32px 20px 64px;
	color: #1F1B16;
	font-family: Georgia, "Times New Roman", serif;
}

.aho-dashboard__header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.aho-dashboard__title {
	font-size: 1.8rem;
	font-weight: 400;
	margin: 0 0 8px;
	letter-spacing: 0.01em;
}

.aho-dashboard__lead {
	color: #6E6760;
	margin: 0 0 18px;
	font-size: 0.95rem;
}

.aho-dashboard__actions {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
}

.aho-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid #1F1B16;
	transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
	cursor: pointer;
}

.aho-btn--primary {
	background: #FFFFFF;
	color: #1F1B16;
}

.aho-btn--primary:hover {
	background: #1F1B16;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.aho-dashboard__empty {
	color: #6E6760;
	font-style: italic;
	padding: 24px;
	background: #FBF9F4;
	border-radius: 12px;
	border: 1px dashed rgba(0, 0, 0, 0.12);
	text-align: center;
}

.aho-dashboard__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.aho-dashboard__item {
	padding: 22px 24px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.aho-dashboard__item-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.78rem;
	margin-bottom: 12px;
}

.aho-dashboard__status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.7rem;
	background: rgba(0, 0, 0, 0.05);
	color: #4A453F;
}

.aho-dashboard__status--publish {
	background: #EEF6EF;
	color: #2E6B3F;
}

.aho-dashboard__status--pending {
	background: #FFF4E0;
	color: #8B6914;
}

.aho-dashboard__status--private {
	background: #F0EEEA;
	color: #4A453F;
}

.aho-dashboard__date {
	color: #8A837A;
	font-size: 0.78rem;
}

.aho-dashboard__excerpt {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05rem;
	line-height: 1.55;
	color: #1F1B16;
	margin: 0 0 10px;
	font-weight: 400;
}

.aho-dashboard__meta {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	color: #6E6760;
	margin: 0 0 14px;
}

.aho-dashboard__excerpt a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.18s ease;
}

.aho-dashboard__excerpt a:hover {
	border-bottom-color: #1F1B16;
}

.aho-dashboard__bridges {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.aho-dashboard__bridges-empty {
	margin: 0;
	color: #8A837A;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
}

.aho-dashboard__bridges-title {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A837A;
	font-weight: 600;
	margin: 0 0 10px;
}

.aho-dashboard__bridges-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.aho-dashboard__bridges-list li {
	margin: 0;
}

.aho-dashboard__bridges-list a {
	display: block;
	padding: 12px 14px;
	background: #FBF9F4;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s ease, transform 0.15s ease;
}

.aho-dashboard__bridges-list a:hover {
	border-color: #1F1B16;
	transform: translateY(-1px);
}

.aho-dashboard__bridges-pseudo {
	display: block;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8A837A;
	margin-bottom: 4px;
	font-weight: 600;
}

.aho-dashboard__bridges-excerpt {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #1F1B16;
	margin-bottom: 4px;
}

.aho-dashboard__bridges-terms {
	display: block;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.78rem;
	color: #6E6760;
	font-style: italic;
}

/* Actions par fragment */
.aho-dashboard__item-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.aho-dashboard__action {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: #4A453F;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 999px;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.aho-dashboard__action:hover {
	border-color: #1F1B16;
	color: #1F1B16;
}

.aho-dashboard__action--warning:hover {
	border-color: #8B6914;
	color: #8B6914;
}

.aho-dashboard__action--danger {
	color: #B33C2A;
	border-color: rgba(179, 60, 42, 0.4);
}

.aho-dashboard__action--danger:hover {
	background: #B33C2A;
	color: #FFFFFF;
	border-color: #B33C2A;
}

/* Section corbeille */
.aho-dashboard__trash {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.aho-dashboard__trash-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0 0 6px;
	color: #4A453F;
}

.aho-dashboard__trash-lead {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.88rem;
	color: #8A837A;
	margin: 0 0 20px;
}

.aho-dashboard__item--trashed {
	background: #FBF9F4;
	opacity: 0.85;
}

.aho-dashboard__status--trash {
	background: #F0EEEA;
	color: #8A837A;
}

/* ====== La promenade ====== */

.aho-promenade {
	max-width: 880px;
	margin: 0 auto;
	padding: 32px 20px 64px;
	color: #1F1B16;
	font-family: Georgia, "Times New Roman", serif;
}

.aho-promenade__header {
	text-align: center;
	margin-bottom: 32px;
}

.aho-promenade__title {
	font-size: 2rem;
	font-weight: 400;
	margin: 0 0 12px;
	letter-spacing: 0.01em;
	color: #1F1B16;
}

.aho-promenade__lead {
	font-size: 1rem;
	line-height: 1.6;
	color: #6E6760;
	margin: 0 auto;
	max-width: 540px;
}

/* Compteurs */
.aho-promenade__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0 0 32px;
	padding: 24px;
	background: #FBF9F4;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.aho-promenade__stat {
	text-align: center;
	margin: 0;
}

.aho-promenade__stat dt {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A837A;
	font-weight: 600;
	margin-bottom: 6px;
}

.aho-promenade__stat dd {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.8rem;
	color: #1F1B16;
	font-weight: 400;
}

@media (max-width: 640px) {
	.aho-promenade__stats {
		grid-template-columns: 1fr;
		padding: 18px;
	}
	.aho-promenade__stat dd {
		font-size: 1.4rem;
	}
}

/* Filtres */
.aho-promenade__filters {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.aho-promenade__label {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A837A;
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.aho-promenade__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 640px) {
	.aho-promenade__row {
		grid-template-columns: 1fr;
	}
}

.aho-promenade__filters-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: flex-end;
	margin-top: 4px;
}

.aho-promenade__reset {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	color: #8A837A;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.aho-promenade__reset:hover {
	color: #1F1B16;
}

.aho-promenade__count {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	color: #6E6760;
	margin: 0 0 18px;
}

.aho-promenade__empty {
	padding: 40px 24px;
	background: #FBF9F4;
	border: 1px dashed rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	text-align: center;
	color: #6E6760;
	font-style: italic;
	font-size: 1rem;
}

/* Liste de cartes */
.aho-promenade__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.aho-promenade__card {
	margin: 0;
}

.aho-promenade__card-link {
	display: block;
	padding: 24px 26px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.aho-promenade__card-link:hover {
	border-color: #1F1B16;
	transform: translateY(-1px);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.aho-promenade__card-head {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.78rem;
	color: #8A837A;
	margin-bottom: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.aho-promenade__card-pseudo {
	font-weight: 600;
	color: #1F1B16;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.74rem;
}

.aho-promenade__card-sep {
	color: #C4BFB5;
}

.aho-promenade__card-voix {
	margin-left: auto;
	padding: 3px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	font-style: italic;
	color: #6E6760;
}

.aho-promenade__card-excerpt {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.02rem;
	line-height: 1.6;
	color: #1F1B16;
	margin: 0 0 12px;
}

.aho-promenade__card-themes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.aho-promenade__card-theme {
	display: inline-flex;
	padding: 4px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.74rem;
	color: #4A453F;
	background: #FBF9F4;
}

/* Pagination */
.aho-promenade__pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-family: "Inter", system-ui, sans-serif;
}

.aho-promenade__page-link {
	padding: 8px 18px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 999px;
	color: #1F1B16;
	text-decoration: none;
	font-size: 0.85rem;
	background: #FFFFFF;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.aho-promenade__page-link:hover {
	border-color: #1F1B16;
	background: #1F1B16;
	color: #FFFFFF;
}

.aho-promenade__page-link.is-disabled {
	opacity: 0.4;
	pointer-events: none;
	cursor: default;
}

.aho-promenade__page-info {
	font-size: 0.85rem;
	color: #6E6760;
	font-family: "Inter", system-ui, sans-serif;
}
