/* FAME FAQs — frontend accordion + sidebar (search / topics / contact). */
.fame-faqs-widget { --ff-blue: var(--fame-blue, #0566E3); }
.fame-faqs-widget *, .fame-faqs-widget *::before, .fame-faqs-widget *::after { box-sizing: border-box; }
.fame-faqs-heading { font-weight: 800; font-size: 26px; color: #0f2033; margin: 0 0 18px; }

/* accordion */
.fame-faqs-bar-mnwrp,
.fame-faqs-accordion-mnwrp {
	display: flex;
	width: 100%;
	position: relative;
}
.fame-faqs-accordion {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 20px;
	background-color: #FFFFFF;
	box-shadow: 2px 2px 25px rgba(8, 20, 102, 0.08);
	border-radius: 20px;
	padding: 30px;
}
.fame-faq-item {
	display: flex;
	width: 100%;
	position: relative;
}
.fame-faq-item.fame-has-shadow::before {
	z-index: 0;
	bottom: -5px;
}
.is-open.fame-has-shadow::before {
	display: none;
}
.fame-faq-item-inn {
	width: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 2px 2px 25px rgba(8, 20, 102, 0.08);
	overflow: hidden;
	border-left: 4px solid transparent;
	position: relative;
}
.fame-faq-item.is-open { border-left-color: var(--ff-blue); }
.fame-faq-item.is-hidden { display: none; }
.fame-faq-q {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 18px 20px;
}
.fame-faq-qico {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: rgba(24, 119, 242, 0.3);
	color: var(--ff-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.fame-faq-qtext {
	flex: 1 1 auto;
	font-weight: 400;
	font-size: 16px;
	color: #121F3E;
	line-height: 24px;
}
.fame-faq-chev {
	flex: 0 0 auto;
	color: #C3DBFB;
	transition: transform .2s ease;
	line-height: 0;
}
.fame-faq-item.is-open .fame-faq-chev {
	transform: rotate(90deg);
	color: var(--ff-blue);
}
.fame-faq-a {
	padding: 0 20px 20px 60px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #656D7F;
	text-align: left;
}
.fame-faq-a p {
	margin: 0 0 10px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #656D7F;
}
.fame-faq-a p:last-child { margin-bottom: 0; }
.fame-faqs-empty, .fame-faqs-noresults { color: #6d7688; padding: 20px; }

/* sidebar */
.fame-faqs-sidebar {
	display: flex;
	flex-direction: column;
	gap: 38px;
}
.fame-faqs-search {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
}
.fame-faqs-search input {
	width: 100%;
    border: 0;
    border-radius: 80px;
    padding: 14px 60px 14px 20px;
    background-color: #ffffff;
    color: #B6B9C0;
    height: 60px;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    box-shadow: 0px 4px 25px rgba(9, 105, 195, 0.05);
}
.fame-faqs-search input::placeholder { color: #B6B9C0; }
.fame-faqs-search input:focus { outline: none; box-shadow: 0 0 0 3px rgba(5, 102, 227, .05); }
.fame-faqs-search button {
	position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 100%;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fame-blue, #0566E3);
}
.fame-faqs-card {
	background-color: #ffffff;
	padding: 20px;
	box-shadow: 2px 2px 25px rgba(8, 20, 102, 0.08);
	border-radius: 20px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.fame-faqs-card-title {
	width: 100%;
	margin: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
	color: #121F3E;
}
.fame-faqs-topiclist {
	display: flex;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.fame-faqs-topiclist li {
	width: 100%;
}
.fame-faqs-topiclist li + li { border-top: 1px solid #F7F7F5; padding-top: 11px; }
.fame-faqs-topiclist a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	gap: 10px;
	text-decoration: none;
	color: #656D7F;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
}
.fame-faqs-topiclist a:hover, .fame-faqs-topiclist a.is-active { color: var(--ff-blue); }
.fame-faqs-topiccount {
	display: inline-flex;
	color: #656D7F;
	background-color: #F5F8F9;
	border-radius: 10px;
	padding: 2px 10px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
}
.fame-faqs-contact-title {
	margin: 0;
	color: #121F3E;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
}
.fame-faqs-contact-text {
	margin: 0;
	color: #656D7F;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
}
.fame-faqs-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #ffffff;
	color: #121F3E;
	border-radius: 999px;
	padding: 6px 20px 6px 6px;
	text-decoration: none;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	border: 1px solid #121F3E;
}
.fame-faqs-contact-btn span {
    font-size: 22px;
}
.fame-faqs-contact-btn:hover {
	background-color: #fbfbfb;
}
.fame-faqs-contact-ico {
	width: 60px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--ff-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}
.fame-faqs-contact-ico svg {
	color: #ffffff;
}

@media (max-width: 575px) { .fame-faq-a { padding-left: 20px; } }
section.section a.fame-faqs-viewall {
	display: inline-block;
	color: var(--ff-blue);
	text-decoration: underline !important;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
}
.fame-faqs-viewall:hover { text-decoration: underline; }
