/**
 * Help Center (/faq) — OBL layout.
 */

body.my-obl-help-center-page {
	--my-obl-help-logo: var(--my-obl-logo-color, #b12f33);
	--my-obl-help-text: #111111;
	--my-obl-help-muted: #666666;
	--my-obl-help-soft: #333333;
	--my-obl-help-line: rgba(17, 17, 17, 0.1);
	--my-obl-help-bg: #f4f4f4;
	--my-obl-help-card: #ffffff;
	--my-obl-help-dark: #111111;
}

body.my-obl-help-center-page #main {
	background: var(--my-obl-help-bg);
}

body.my-obl-help-center-page #main > #content {
	max-width: none;
	padding: 0;
	margin: 0;
}

body.my-obl-help-center-page #main > #content > .section,
body.my-obl-help-center-page #main > #content .section-content {
	padding: 0;
}

body.my-obl-help-center-page.my-obl-page-breadcrumb-strip #main > #content > .section:first-child .section-content > .text:first-child {
	display: none !important;
}

.my-obl-help {
	color: var(--my-obl-help-text);
	background: var(--my-obl-help-bg);
	padding: 24px 0 60px;
}

.my-obl-help *,
.my-obl-help *::before,
.my-obl-help *::after {
	box-sizing: border-box;
}

.my-obl-help__inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 15px;
}

.my-obl-help__intro {
	max-width: 820px;
	margin: 0 auto 30px;
	text-align: center;
}

.my-obl-help__kicker {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--my-obl-help-muted);
}

.my-obl-help__title {
	margin: 0 0 14px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--my-obl-help-text);
}

.my-obl-help__lead {
	margin: 0 auto;
	max-width: 680px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--my-obl-help-muted);
}

.my-obl-help__intro-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 20px 0 0;
}

.my-obl-help__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid var(--my-obl-help-dark);
	border-radius: 4px;
	background: var(--my-obl-help-dark);
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: opacity 0.35s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.my-obl-help__cta:hover,
.my-obl-help__cta:focus {
	background: var(--my-obl-help-logo);
	border-color: var(--my-obl-help-logo);
	opacity: 1;
	transform: translateY(-1px);
	color: #ffffff !important;
}

.my-obl-help__cta--secondary {
	background: #ffffff;
	color: var(--my-obl-help-text) !important;
	border-color: rgba(17, 17, 17, 0.22);
}

.my-obl-help__cta--secondary:hover,
.my-obl-help__cta--secondary:focus {
	background: #ffffff;
	border-color: var(--my-obl-help-logo);
	color: var(--my-obl-help-logo) !important;
}

.my-obl-help__switch {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--my-obl-help-line);
}

.my-obl-help--guides .my-obl-help__guides {
	margin-top: 30px;
}

.my-obl-help--faq .my-obl-help__faq {
	margin-top: 10px;
}

.my-obl-help__guides,
.my-obl-help__faq {
	margin-top: 30px;
}

.my-obl-help__section-head {
	margin: 0 0 18px;
}

.my-obl-help__section-head--center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.my-obl-help__section-title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--my-obl-help-text);
}

.my-obl-help__section-title--lg {
	font-size: 32px;
}

.my-obl-help__section-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--my-obl-help-muted);
}

.my-obl-help__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.my-obl-help__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	min-height: 168px;
	padding: 22px 20px 18px;
	border: 1px solid var(--my-obl-help-line);
	border-radius: 4px;
	background: var(--my-obl-help-card);
	color: inherit;
	text-decoration: none !important;
	transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background-color 0.35s ease;
}

.my-obl-help__card:hover,
.my-obl-help__card:focus {
	transform: translateY(-2px);
	border-color: rgba(177, 47, 51, 0.35);
	color: inherit;
}

.my-obl-help__card--dark {
	background: var(--my-obl-help-dark);
	border-color: transparent;
	color: #ffffff;
}

.my-obl-help__card--dark .my-obl-help__card-sub,
.my-obl-help__card--dark .my-obl-help__card-action {
	color: #b8b8b8;
}

.my-obl-help__card--dark:hover,
.my-obl-help__card--dark:focus {
	border-color: rgba(177, 47, 51, 0.55);
}

.my-obl-help__card--accent {
	background: #ffffff;
	border-color: rgba(177, 47, 51, 0.28);
}

.my-obl-help__card--accent .my-obl-help__card-action {
	color: var(--my-obl-help-logo);
}

.my-obl-help__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 4px;
	border: 1px solid var(--my-obl-help-line);
	background: #ffffff;
}

.my-obl-help__card--dark .my-obl-help__card-icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.16);
}

.my-obl-help__card--accent .my-obl-help__card-icon {
	background: rgba(177, 47, 51, 0.08);
	border-color: rgba(177, 47, 51, 0.22);
}

.my-obl-help__card-icon img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
	/* Force solid silhouette so multi-tone SVGs stay readable on light cards. */
	filter: brightness(0) saturate(100%);
	opacity: 0.92;
}

.my-obl-help__card--accent .my-obl-help__card-icon img {
	/* Approximate LOGO #b12f33 */
	filter: brightness(0) saturate(100%) invert(18%) sepia(70%) saturate(2400%) hue-rotate(337deg) brightness(92%) contrast(96%);
	opacity: 1;
}

.my-obl-help__card--dark .my-obl-help__card-icon img {
	filter: brightness(0) invert(1);
	opacity: 1;
}

.my-obl-help__card-icon-fallback {
	font-size: 14px;
	font-weight: 700;
	color: var(--my-obl-help-soft);
}

.my-obl-help__card--dark .my-obl-help__card-icon-fallback {
	color: #ffffff;
}

.my-obl-help__card-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 auto;
	width: 100%;
}

.my-obl-help__card-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.my-obl-help__card-sub {
	font-size: 13px;
	line-height: 1.45;
	color: var(--my-obl-help-muted);
}

.my-obl-help__card-action {
	margin-top: auto;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--my-obl-help-soft);
}

.my-obl-help__card:hover .my-obl-help__card-action,
.my-obl-help__card:focus .my-obl-help__card-action {
	color: var(--my-obl-help-logo);
}

.my-obl-help__card--dark:hover .my-obl-help__card-action,
.my-obl-help__card--dark:focus .my-obl-help__card-action {
	color: #ffffff;
}

.my-obl-help__search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 720px;
	margin: 0 auto 14px;
	padding: 0 12px 0 42px;
	min-height: 48px;
	border: 1px solid var(--my-obl-help-line);
	border-radius: 4px;
	background: #ffffff;
	transition: border-color 0.35s ease;
}

.my-obl-help__search:focus-within {
	border-color: rgba(177, 47, 51, 0.45);
}

.my-obl-help__search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	width: 14px;
	height: 14px;
	border: 1.5px solid var(--my-obl-help-muted);
	border-radius: 50%;
	transform: translateY(-55%);
	pointer-events: none;
}

.my-obl-help__search-icon::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 11px;
	width: 7px;
	height: 1.5px;
	background: var(--my-obl-help-muted);
	transform: rotate(45deg);
	transform-origin: left center;
}

.my-obl-help__search-input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 12px 0;
	border: 0;
	outline: none;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 15px;
	line-height: 1.4;
	color: var(--my-obl-help-text);
}

.my-obl-help__search-input::placeholder {
	color: #999999;
}

.my-obl-help__search-clear {
	flex: 0 0 auto;
	margin-left: 8px;
	padding: 6px 10px;
	border: 0;
	border-radius: 4px;
	background: #f2f2f2;
	color: var(--my-obl-help-soft);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background-color 0.35s ease, color 0.35s ease;
}

.my-obl-help__search-clear:hover,
.my-obl-help__search-clear:focus {
	background: rgba(177, 47, 51, 0.1);
	color: var(--my-obl-help-logo);
}

.my-obl-help__search-meta {
	max-width: 720px;
	margin: 0 auto 16px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--my-obl-help-muted);
	text-align: center;
}

.my-obl-help__search-empty {
	max-width: 720px;
	margin: 0 auto 18px;
	padding: 18px 16px;
	border: 1px dashed rgba(17, 17, 17, 0.16);
	border-radius: 4px;
	background: #ffffff;
	font-size: 14px;
	line-height: 1.55;
	color: var(--my-obl-help-muted);
	text-align: center;
}

.my-obl-help__faq-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: start;
}

.my-obl-help__faq-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #ffffff;
	overflow: hidden;
	transition:
		border-color 0.35s ease,
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.35s ease,
		filter 0.35s ease;
}

/* Search filter: hide non-matching cards completely (theme may override [hidden]). */
.my-obl-help__faq-card[hidden],
.my-obl-help__faq-card.is-hidden {
	display: none !important;
}

.my-obl-help__faq-card--light {
	background: #ffffff;
	border-color: rgba(17, 17, 17, 0.1);
	color: var(--my-obl-help-text);
}

.my-obl-help__faq-card--soft {
	background: #ececec;
	border-color: rgba(17, 17, 17, 0.06);
	color: var(--my-obl-help-text);
}

.my-obl-help__faq-card--dark {
	background: #111111;
	border-color: #111111;
	color: #ffffff;
}

.my-obl-help__faq-card--dark .my-obl-help__faq-card-question,
.my-obl-help__faq-card--dark .my-obl-help__faq-card-answer-inner {
	color: #ffffff;
}

.my-obl-help__faq-card--dark .my-obl-help__faq-card-answer-inner {
	color: #b8b8b8;
}

.my-obl-help__faq-card--dark .my-obl-help__faq-card-index {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.my-obl-help__faq-card--dark .my-obl-help__faq-card-icon::before,
.my-obl-help__faq-card--dark .my-obl-help__faq-card-icon::after {
	background: #ffffff;
}

.my-obl-help__faq-card--dark .my-obl-help__faq-card-answer {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.my-obl-help__faq-card.is-match {
	border-color: rgba(177, 47, 51, 0.55);
}

.my-obl-help__faq-card.is-open {
	border-color: rgba(177, 47, 51, 0.45);
}

.my-obl-help__faq-card:hover,
.my-obl-help__faq-card:focus-within {
	transform: translateY(-3px);
	border-color: var(--my-obl-help-logo);
	z-index: 1;
}

.my-obl-help__faq-card--light:hover,
.my-obl-help__faq-card--light:focus-within,
.my-obl-help__faq-card--soft:hover,
.my-obl-help__faq-card--soft:focus-within {
	background: #fff5f5;
}

.my-obl-help__faq-card--dark:hover,
.my-obl-help__faq-card--dark:focus-within {
	background: var(--my-obl-help-logo);
	border-color: var(--my-obl-help-logo);
	filter: brightness(1.05);
}

.my-obl-help__faq-card--dark:hover .my-obl-help__faq-card-answer-inner,
.my-obl-help__faq-card--dark:focus-within .my-obl-help__faq-card-answer-inner {
	color: rgba(255, 255, 255, 0.92);
}

.my-obl-help__faq-card-toggle {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font: inherit;
}

.my-obl-help__faq-card-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	background: rgba(17, 17, 17, 0.06);
	color: var(--my-obl-help-soft);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.35s ease, color 0.35s ease;
}

.my-obl-help__faq-card.is-open .my-obl-help__faq-card-index,
.my-obl-help__faq-card.is-match .my-obl-help__faq-card-index,
.my-obl-help__faq-card:hover .my-obl-help__faq-card-index,
.my-obl-help__faq-card:focus-within .my-obl-help__faq-card-index {
	background: rgba(177, 47, 51, 0.12);
	color: var(--my-obl-help-logo);
}

/* Dark cards turn logo-red on hover — keep index white (must beat rules above). */
.my-obl-help__faq-card--dark.is-open .my-obl-help__faq-card-index,
.my-obl-help__faq-card--dark.is-match .my-obl-help__faq-card-index,
.my-obl-help__faq-card--dark:hover .my-obl-help__faq-card-index,
.my-obl-help__faq-card--dark:focus-within .my-obl-help__faq-card-index {
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff;
}

.my-obl-help__faq-card-question {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	transition: color 0.35s ease;
}

.my-obl-help__faq-card:hover .my-obl-help__faq-card-question,
.my-obl-help__faq-card:focus-within .my-obl-help__faq-card-question,
.my-obl-help__faq-card-toggle:hover .my-obl-help__faq-card-question,
.my-obl-help__faq-card-toggle:focus .my-obl-help__faq-card-question {
	color: var(--my-obl-help-logo);
}

.my-obl-help__faq-card--dark:hover .my-obl-help__faq-card-question,
.my-obl-help__faq-card--dark:focus-within .my-obl-help__faq-card-question {
	color: #ffffff;
}

.my-obl-help__faq-card-icon {
	position: relative;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 0;
}

.my-obl-help__faq-card-icon::before,
.my-obl-help__faq-card-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}

.my-obl-help__faq-card-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.my-obl-help__faq-card.is-open .my-obl-help__faq-card-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.my-obl-help__faq-card.is-open .my-obl-help__faq-card-icon::before {
	background: var(--my-obl-help-logo);
}

.my-obl-help__faq-card-answer {
	overflow: hidden;
	border-top: 1px solid var(--my-obl-help-line);
}

.my-obl-help__faq-card-answer-inner {
	padding: 10px 14px 14px;
	font-size: 13px;
	line-height: 1.65;
	color: var(--my-obl-help-soft);
}

/* Legacy accordion (kept for safety if old markup cached). */
.my-obl-help__accordion {
	max-width: 920px;
	margin: 0 auto;
	border-top: 1px solid var(--my-obl-help-line);
}

.my-obl-help__item {
	border-bottom: 1px solid var(--my-obl-help-line);
	background: transparent;
}

.my-obl-help__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 18px 4px;
	border: 0;
	background: transparent;
	color: var(--my-obl-help-text);
	text-align: left;
	cursor: pointer;
	font: inherit;
}

.my-obl-help__question-text {
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
}

.my-obl-help__question-icon {
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

.my-obl-help__question-icon::before,
.my-obl-help__question-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 1.5px;
	background: var(--my-obl-help-text);
	transform: translate(-50%, -50%);
	transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}

.my-obl-help__question-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.my-obl-help__item.is-open .my-obl-help__question-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.my-obl-help__item.is-open .my-obl-help__question-icon::before {
	background: var(--my-obl-help-logo);
}

.my-obl-help__question:hover .my-obl-help__question-text,
.my-obl-help__question:focus .my-obl-help__question-text {
	color: var(--my-obl-help-logo);
}

.my-obl-help__answer {
	overflow: hidden;
}

.my-obl-help__answer-inner {
	padding: 0 4px 20px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--my-obl-help-soft);
}

@media screen and (max-width: 849px) {
	.my-obl-help {
		padding-top: 16px;
		padding-bottom: 48px;
	}

	.my-obl-help__title,
	.my-obl-help__section-title--lg {
		font-size: 28px;
	}

	.my-obl-help__section-title {
		font-size: 22px;
	}

	.my-obl-help__grid,
	.my-obl-help__faq-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.my-obl-help__card {
		min-height: 0;
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 16px;
	}

	.my-obl-help__card-body {
		flex: 1 1 auto;
	}

	.my-obl-help__card-title {
		font-size: 16px;
	}

	.my-obl-help__card-action {
		display: none;
	}

	.my-obl-help__faq-card {
		min-height: 0;
	}

	.my-obl-help__faq-card-toggle {
		padding: 12px 12px;
		gap: 8px;
	}

	.my-obl-help__faq-card-question {
		font-size: 14px;
	}

	.my-obl-help__search {
		margin-bottom: 12px;
	}

	.my-obl-help__question {
		padding: 16px 0;
	}

	.my-obl-help__question-text {
		font-size: 15px;
	}
}

@media screen and (min-width: 850px) and (max-width: 1100px) {
	.my-obl-help__faq-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.my-obl-help__faq-card-question {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.my-obl-help__cta,
	.my-obl-help__card,
	.my-obl-help__faq-card,
	.my-obl-help__faq-card-icon::before,
	.my-obl-help__faq-card-icon::after,
	.my-obl-help__question-icon::before,
	.my-obl-help__question-icon::after {
		transition: none !important;
	}

	.my-obl-help__cta:hover,
	.my-obl-help__cta:focus,
	.my-obl-help__card:hover,
	.my-obl-help__card:focus,
	.my-obl-help__faq-card:hover,
	.my-obl-help__faq-card:focus-within {
		transform: none;
	}
}
