/* Каталог направлений: страны → города → отели + подлокации */

.dir-page {
	--dir-brand: var(--color-2);
	--dir-brand-hover: var(--color-brand-hover);
	--dir-border: #ece8f4;
	--dir-muted: #6b6578;
	padding: 40px 0 56px;
}

.content.dir-page {
	margin-top: 0;
	margin-bottom: 50px;
}

.dir-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--dir-muted);
	margin-bottom: 14px;
}

.dir-breadcrumbs a {
	color: var(--dir-muted);
	text-decoration: none;
}

.dir-breadcrumbs a:hover {
	color: var(--dir-brand);
}

.dir-breadcrumbs__sep {
	opacity: 0.5;
}

.dir-breadcrumbs__current {
	color: #1a1625;
	font-weight: 600;
}

.dir-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 6px;
	color: #1a1625;
}

.dir-subtitle {
	font-size: 15px;
	color: var(--dir-muted);
	margin: 0 0 24px;
}

.dir-city-search {
	margin: 0 0 28px;
	max-width: 420px;
}

.dir-city-search__label {
	display: block;
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: #1a1625;
}

.dir-city-search__field {
	position: relative;
}

.dir-city-search__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--dir-muted);
	pointer-events: none;
	font-size: 15px;
	z-index: 1;
}

.dir-city-search__input {
	width: 100%;
	height: 46px;
	padding: 0 14px 0 40px;
	border: 1px solid var(--dir-border);
	border-radius: 12px;
	background: #fff;
	color: #1a1625;
	font-size: 15px;
	line-height: 1.2;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.dir-city-search__input::placeholder {
	color: #9a94a8;
}

.dir-city-search__input:hover {
	border-color: #d8cff0;
}

.dir-city-search__input:focus {
	border-color: var(--dir-brand);
	box-shadow: 0 0 0 3px rgba(var(--color-brand-rgb), 0.12);
}

.dir-city-search.is-open .dir-city-search__input {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.dir-city-search__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 20;
	max-height: 320px;
	overflow: auto;
	border: 1px solid var(--dir-border);
	border-top: none;
	border-radius: 0 0 12px 12px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.dir-city-search__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 11px 14px;
	border: 0;
	border-bottom: 1px solid #f3f0f8;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.dir-city-search__item:last-child {
	border-bottom: none;
}

.dir-city-search__item:hover,
.dir-city-search__item.is-active {
	background: rgba(var(--color-brand-rgb), 0.06);
}

.dir-city-search__item-name {
	font-size: 14px;
	font-weight: 600;
	color: #1a1625;
}

.dir-city-search__item-meta {
	flex-shrink: 0;
	font-size: 12px;
	color: var(--dir-muted);
}

.dir-city-search__empty {
	padding: 14px;
	font-size: 13px;
	color: var(--dir-muted);
}

.dir-subtitle__meta {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--dir-chip-bg, rgba(120, 82, 243, 0.1));
	color: var(--dir-accent, #7852f3);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.dir-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin: 0 0 18px;
}

.dir-toolbar__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--dir-muted);
}

.dir-sort {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 4px;
	border-radius: 999px;
	background: #f3f1f8;
	border: 1px solid var(--dir-border);
}

.dir-sort__btn {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: #45405a;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.dir-sort__btn:hover {
	color: var(--dir-brand);
}

.dir-sort__btn.is-active {
	background: #fff;
	color: var(--dir-brand);
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.dir-section-title {
	font-size: 20px;
	font-weight: 700;
	margin: 32px 0 16px;
	color: #1a1625;
}

/* --- Tiles (страны/города) --- */
.dir-grid {
	display: grid;
	gap: 12px;
}

.dir-grid--countries,
.dir-grid--cities {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.dir-tile {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid var(--dir-border);
	background: #fff;
	text-decoration: none;
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.dir-tile:hover {
	border-color: #d8cff0;
	box-shadow: 0 8px 24px rgba(var(--color-brand-rgb), 0.1);
	transform: translateY(-2px);
}

.dir-tile__name {
	font-size: 16px;
	font-weight: 600;
	color: #1a1625;
}

.dir-tile__meta {
	font-size: 13px;
	color: var(--dir-muted);
}

.dir-tile--flag {
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.dir-tile__flag {
	flex-shrink: 0;
	width: 40px;
	height: 27px;
	border-radius: 4px;
	object-fit: cover;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
}

.dir-tile__flag--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b8b2c8;
	font-size: 18px;
	background: #f3f1f8;
	box-shadow: none;
}

.dir-tile__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.dir-title--flag {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dir-title__flag {
	width: 44px;
	height: 30px;
	border-radius: 5px;
	object-fit: cover;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
}

/* --- Подлокации (чипы) --- */
.dir-subloc {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 8px 0 8px;
	padding: 20px;
	border-radius: 16px;
	background: #f8f7fc;
	border: 1px solid var(--dir-border);
}

.dir-subloc__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1625;
	margin: 0 0 10px;
}

.dir-subloc__title .bi {
	color: var(--dir-brand);
}

.dir-subloc__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dir-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 13px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	color: #45405a;
	background: #fff;
	border: 1px solid var(--dir-border);
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.dir-chip:hover {
	background: var(--dir-brand);
	border-color: var(--dir-brand);
	color: #fff;
}

/* --- Город: шапка --- */
.dir-city-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.dir-search-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--dir-brand);
	text-decoration: none;
	transition: background 0.15s;
	white-space: nowrap;
}

.dir-search-btn:hover {
	background: var(--dir-brand-hover);
	color: #fff;
}

/* --- Карточки отелей --- */
.dir-hotels {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.dir-hotel {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	border: 1px solid var(--dir-border);
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.dir-hotel:hover {
	border-color: #d8cff0;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.dir-hotel__media {
	display: block;
	position: relative;
	height: 170px;
	background: #f3f1f8;
	overflow: hidden;
}

.dir-hotel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
	transition: transform 0.35s ease;
}

.dir-hotel:hover .dir-hotel__media img {
	transform: scale(1.05);
}

.dir-hotel__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #b8b2c8;
	font-size: 2rem;
	background: linear-gradient(145deg, #f8f7fc 0%, #ece8f4 100%);
}

.dir-hotel__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px;
}

.dir-hotel__stars {
	display: inline-flex;
	gap: 2px;
	color: #f5a623;
	font-size: 12px;
	line-height: 1;
}

.dir-hotel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.dir-hotel__name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	color: #1a1625;
}

.dir-hotel__rating {
	flex-shrink: 0;
	padding: 2px 7px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}

.dir-hotel__rating.sr-rating--super { background: #22c55e; }
.dir-hotel__rating.sr-rating--good { background: #3b82f6; }
.dir-hotel__rating.sr-rating--ok { background: #f59e0b; }
.dir-hotel__rating.sr-rating--low { background: #94a3b8; }

.dir-hotel__address,
.dir-hotel__distance {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	font-size: 12px;
	color: var(--dir-muted);
	line-height: 1.35;
}

.dir-hotel__address .bi,
.dir-hotel__distance .bi {
	flex-shrink: 0;
	margin-top: 1px;
	color: #9a93ab;
}

.dir-hotel__cta {
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--dir-brand);
}

/* --- Пагинация --- */
.dir-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 32px;
}

.dir-pagination__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 10px;
	border: 1px solid var(--dir-border);
	background: #fff;
	color: #45405a;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.dir-pagination__item:hover {
	border-color: #d8cff0;
	color: var(--dir-brand);
}

.dir-pagination__item.is-active {
	background: var(--dir-brand);
	border-color: var(--dir-brand);
	color: #fff;
}

.dir-pagination__gap {
	padding: 0 4px;
	color: var(--dir-muted);
}

.dir-empty {
	padding: 32px 0;
	font-size: 15px;
	color: var(--dir-muted);
	text-align: center;
}

@media (max-width: 767.98px) {
	.content.dir-page {
		margin-top: 0;
		padding-top: 32px;
	}
}

@media (max-width: 575px) {
	.dir-title { font-size: 22px; }
	.dir-city-head { flex-direction: column; align-items: stretch; }
	.dir-search-btn { justify-content: center; }
}

/* ============ Тёмная тема ============ */
[data-bs-theme="dark"] .dir-breadcrumbs__current,
[data-bs-theme="dark"] .dir-title,
[data-bs-theme="dark"] .dir-section-title,
[data-bs-theme="dark"] .dir-tile__name,
[data-bs-theme="dark"] .dir-hotel__name,
[data-bs-theme="dark"] .dir-subloc__title {
	color: #f1f5f9;
}

[data-bs-theme="dark"] .dir-subtitle,
[data-bs-theme="dark"] .dir-tile__meta,
[data-bs-theme="dark"] .dir-hotel__address,
[data-bs-theme="dark"] .dir-hotel__distance,
[data-bs-theme="dark"] .dir-breadcrumbs,
[data-bs-theme="dark"] .dir-breadcrumbs a,
[data-bs-theme="dark"] .dir-empty,
[data-bs-theme="dark"] .dir-pagination__gap,
[data-bs-theme="dark"] .dir-city-search__empty,
[data-bs-theme="dark"] .dir-city-search__item-meta,
[data-bs-theme="dark"] .dir-city-search__icon {
	color: #94a3b8;
}

[data-bs-theme="dark"] .dir-city-search__label,
[data-bs-theme="dark"] .dir-city-search__item-name {
	color: #f1f5f9;
}

[data-bs-theme="dark"] .dir-city-search__input,
[data-bs-theme="dark"] .dir-city-search__dropdown {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
	color: #f1f5f9;
}

[data-bs-theme="dark"] .dir-city-search__item {
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .dir-city-search__item:hover,
[data-bs-theme="dark"] .dir-city-search__item.is-active {
	background: rgba(167, 139, 250, 0.12);
}

[data-bs-theme="dark"] .dir-tile,
[data-bs-theme="dark"] .dir-hotel,
[data-bs-theme="dark"] .dir-pagination__item {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dir-tile:hover,
[data-bs-theme="dark"] .dir-hotel:hover,
[data-bs-theme="dark"] .dir-pagination__item:hover {
	border-color: rgba(167, 139, 250, 0.4);
}

[data-bs-theme="dark"] .dir-subloc {
	background: #1a2536;
	border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dir-chip {
	background: #253347;
	border-color: rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
}

[data-bs-theme="dark"] .dir-chip:hover,
[data-bs-theme="dark"] .dir-subloc__title .bi,
[data-bs-theme="dark"] .dir-hotel__cta {
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-chip:hover {
	background: var(--color-2);
	border-color: var(--color-2);
	color: #fff;
}

[data-bs-theme="dark"] .dir-hotel__media,
[data-bs-theme="dark"] .dir-hotel__noimg {
	background: #253347;
}

[data-bs-theme="dark"] .dir-search-btn,
[data-bs-theme="dark"] .dir-pagination__item.is-active {
	background: var(--color-2);
	border-color: var(--color-2);
	color: #fff;
}

[data-bs-theme="dark"] .dir-search-btn:hover {
	background: var(--color-brand-hover);
}

[data-bs-theme="dark"] .dir-sort {
	background: #253347;
	border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dir-sort__btn {
	color: #cbd5e1;
}

[data-bs-theme="dark"] .dir-sort__btn:hover {
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-sort__btn.is-active {
	background: #334155;
	color: var(--color-2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

[data-bs-theme="dark"] .dir-tile__flag--empty {
	background: #253347;
	color: #64748b;
}

/* SEO-блок — поблочная структура */
.dir-seo {
	display: grid;
	gap: 16px;
	margin: 24px 0 32px;
}

/* Общая карточка секции */
.dir-seo__card {
	padding: 22px 24px;
	background: #fff;
	border: 1px solid #ebe8f2;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.dir-seo__card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #1e293b;
}

.dir-seo__card-title i {
	color: var(--color-2);
	font-size: 1.1em;
}

/* Интро-лид с акцентной полосой */
.dir-seo__intro {
	position: relative;
	margin: 0;
	padding: 18px 22px 18px 26px;
	background: linear-gradient(180deg, #f7f4ff 0%, #f8f7fc 100%);
	border: 1px solid #e7e1f8;
	border-radius: 16px;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #334155;
}

.dir-seo__intro::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	bottom: 12px;
	width: 4px;
	border-radius: 4px;
	background: var(--color-2);
}

/* Факты — лёгкие мини-карточки со значком.
   Flexbox с flex-grow: последний ряд растягивается на всю ширину,
   чтобы не было «5 в одном ряду и 1 в другом». */
.dir-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.dir-facts__row {
	flex: 1 1 220px;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0;
	padding: 13px 15px;
	background: #faf9fd;
	border: 1px solid transparent;
	border-radius: 14px;
	transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.dir-facts__row:hover {
	background: #fff;
	border-color: #ece7f8;
	box-shadow: 0 4px 14px rgba(var(--color-brand-rgb), 0.08);
}

.dir-facts__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #f1ebff;
	color: var(--color-2);
	font-size: 0.98rem;
}

.dir-facts__text {
	min-width: 0;
}

.dir-facts__row dt {
	margin: 0 0 3px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #9366f0;
}

.dir-facts__row dd {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.45;
	color: #334155;
}

/* Тело статьи */
.dir-seo__body {
	font-size: 0.97rem;
	line-height: 1.7;
	color: #334155;
}

.dir-seo__body h2 {
	margin: 1.6em 0 0.6em;
	padding-top: 0.6em;
	border-top: 1px solid #f0edf7;
	font-size: 1.12rem;
	font-weight: 700;
	color: #1e293b;
}

.dir-seo__body h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.dir-seo__body h3 {
	margin: 1.2em 0 0.5em;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
}

.dir-seo__body p {
	margin: 0 0 1em;
}

.dir-seo__body p:last-child {
	margin-bottom: 0;
}

.dir-seo__body ul,
.dir-seo__body ol {
	margin: 0 0 1em;
	padding-left: 0;
	list-style: none;
}

.dir-seo__body ul li {
	position: relative;
	margin: 0 0 0.5em;
	padding-left: 1.5em;
}

.dir-seo__body ul li::before {
	content: "";
	position: absolute;
	left: 0.15em;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-2);
}

.dir-seo__body ol {
	padding-left: 1.3em;
	list-style: decimal;
}

.dir-seo__body ol li {
	margin: 0 0 0.5em;
	padding-left: 0.3em;
}

/* FAQ-аккордеон (как на /doc/requests) */
.dir-faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dir-faq__item {
	border: 1px solid #e8ecf1;
	border-radius: 14px;
	padding: 0;
	margin: 0;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	transition: border-color 0.15s ease;
}

.dir-faq__item[open] {
	border-color: #e8ecf1;
	background: #fff;
}

.dir-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	padding: 16px 20px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
	background: #fff;
	list-style: none;
	transition: color 0.15s ease, background 0.15s ease;
}

.dir-faq__item summary::-webkit-details-marker {
	display: none;
}

.dir-faq__item[open] summary {
	color: var(--color-2);
	background: #faf8ff;
}

.dir-faq__chevron {
	flex: none;
	opacity: 0.45;
	color: #64748b;
	font-size: 0.95rem;
	transition: transform 0.2s ease, opacity 0.15s ease, color 0.15s ease;
}

.dir-faq__item[open] .dir-faq__chevron {
	transform: rotate(180deg);
	opacity: 1;
	color: var(--color-2);
}

.dir-faq__item > p,
.dir-faq__item .dir-faq__answer {
	margin: 0;
	padding: 14px 20px 18px;
	font-family: var(--font-sans, inherit);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: #475569;
	background: #fff;
}

.dir-faq__item .dir-faq__answer p {
	margin: 0 0 10px;
}

.dir-faq__item .dir-faq__answer p:last-child {
	margin-bottom: 0;
}

.dir-faq__item .dir-faq__answer ul {
	margin: 0 0 10px;
	padding-left: 1.25rem;
}

.dir-faq__item .dir-faq__answer ul:last-child {
	margin-bottom: 0;
}

.dir-faq__item .dir-faq__answer li + li {
	margin-top: 4px;
}

/* Тёмная тема */
[data-bs-theme="dark"] .dir-seo__card {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

[data-bs-theme="dark"] .dir-seo__card-title,
[data-bs-theme="dark"] .dir-seo__body,
[data-bs-theme="dark"] .dir-seo__body h2,
[data-bs-theme="dark"] .dir-seo__body h3 {
	color: #e2e8f0;
}

[data-bs-theme="dark"] .dir-seo__body h2 {
	border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .dir-seo__intro {
	background: rgba(var(--color-brand-rgb), 0.12);
	border-color: rgba(var(--color-brand-rgb), 0.35);
	color: #e2e8f0;
}

[data-bs-theme="dark"] .dir-facts__row {
	background: rgba(255, 255, 255, 0.03);
	border-color: transparent;
}

[data-bs-theme="dark"] .dir-facts__row:hover {
	background: rgba(var(--color-brand-rgb), 0.1);
	border-color: rgba(var(--color-brand-rgb), 0.35);
	box-shadow: none;
}

[data-bs-theme="dark"] .dir-facts__icon {
	background: rgba(var(--color-brand-rgb), 0.2);
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-facts__row dt {
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-facts__row dd {
	color: #cbd5e1;
}

[data-bs-theme="dark"] .dir-faq__item {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

[data-bs-theme="dark"] .dir-faq__item[open] {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dir-faq__item summary {
	color: #e2e8f0;
	background: #1e293b;
}

[data-bs-theme="dark"] .dir-faq__item[open] summary {
	background: rgba(var(--color-brand-rgb), 0.12);
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-faq__chevron {
	color: #94a3b8;
}

[data-bs-theme="dark"] .dir-faq__item[open] .dir-faq__chevron {
	color: var(--color-2);
}

[data-bs-theme="dark"] .dir-faq__item > p,
[data-bs-theme="dark"] .dir-faq__item .dir-faq__answer {
	color: #cbd5e1;
	background: #1e293b;
}
