/* ==========================================
   Guide FAQ Section
========================================== */

.cr-guide-faq-section {
    max-width: var(--global-content-width, 1290px);
    padding-right: var(--global-kb-spacing-5xl, 10rem);
    padding-left: var(--global-kb-spacing-5xl, 10rem);
}

@media (max-width: 767px) { 
	.cr-guide-faq-section {
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
	}
}

.cr-guide-faq-header {
	max-width: 850px;
	margin: 0 auto 60px;
	text-align: center;
}

.cr-guide-faq-eyebrow {
	font-size: 13px;
    line-height: 2.4;
    font-weight: 400;
    font-family: Syne;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--global-palette5);
}

.cr-guide-faq-title {
	margin: 0 0 var(--global-kb-spacing-xs, 1rem) !important;
	font-size: 64px;
	font-weight: 300;
	line-height: 1;
	color: var(--global-palette3);
}

.cr-guide-faq-description {
	margin: 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	font-family: var(--global-body-font-family);
	color: var(--global-palette4);
}

/* ==========================================
   FAQ List
========================================== */

.cr-guide-faq-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 50px;
}

/* ==========================================
   FAQ Item
========================================== */

.cr-guide-faq-item {
	color: #fff;
}

/* ==========================================
   Header
========================================== */

.cr-guide-faq-header-wrap {
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	background: transparent;
	transition: all .25s ease;
}

.cr-guide-faq-item:hover .cr-guide-faq-header-wrap {
	border-color: rgba(255,255,255,.3);
}

.cr-guide-faq-item.is-active .cr-guide-faq-header-wrap {
	background: var(--global-palette7);
	border-bottom: 1px;
	border-radius: 16px 16px 16px 16px;
}

/* ==========================================
   Button
========================================== */

.cr-guide-faq-button {
    all: unset;
	box-sizing: border-box;

	display: flex;
	align-items: center;
	justify-content: space-between;

	width: 100%;
	/* padding: 18px 22px; */

	cursor: pointer;
	
	
	font-family: Inter;
    font-weight: 400;
    padding-top: 9px;
    padding-right: 13px;
    padding-bottom: 9px;
    padding-left: 13px;

}

.cr-guide-faq-button:hover,
.cr-guide-faq-button:focus,
.cr-guide-faq-button:focus-visible,
.cr-guide-faq-button:active {
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	color: inherit;
}

/* ==========================================
   Question
========================================== */

.cr-guide-faq-question {

	flex: 1;

	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;

	color: inherit;
}

/* ==========================================
   Toggle
========================================== */

.cr-guide-faq-toggle {

	display: flex;
	align-items: center;
	justify-content: center;

	width: 32px;
	height: 32px;

	font-size: 34px;
	font-weight: 300;
	line-height: 1;

	color: inherit;

	flex-shrink: 0;
}

/* ==========================================
   Panel
========================================== */

.cr-guide-faq-panel {

	max-height: 0;
	overflow: hidden;

	border: 1px solid rgba(255,255,255,.18);
	border-top: 1;

	border-radius: 16px 16px 16px 16px;

	background: var(--global-palette7);

	transition:
		max-height .35s ease,
		padding .35s ease;
}

/* Hide border when collapsed */

.cr-guide-faq-item:not(.is-active) .cr-guide-faq-panel {
	border: 0;
}

/* ==========================================
   Panel Inner
========================================== */

.cr-guide-faq-panel-inner {

	padding: 20px;

}

.cr-guide-faq-panel-inner p {

    /*
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	color: inherit;
	*/
	
	font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--global-body-font-family);
}

/* ==========================================
   Active Colours
========================================== */

.cr-guide-faq-item.is-active {

	color: var(--global-palette3);

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:1024px){

	.cr-guide-faq-title{
		font-size:54px;
	}

	.cr-guide-faq-question{
		font-size:17px;
	}

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:767px){

	.cr-guide-faq-header{
		margin-bottom:40px;
	}

	.cr-guide-faq-title{
		font-size:42px;
		line-height:1.1;
	}

	.cr-guide-faq-description{
		font-size:15px;
	}

	.cr-guide-faq-button{
		padding:16px 18px;
	}

	.cr-guide-faq-question{
		font-size:17px;
	}

	.cr-guide-faq-toggle{
		font-size:30px;
		width:28px;
		height:28px;
	}

	.cr-guide-faq-panel-inner{
		padding:0 18px 18px;
	}

	.cr-guide-faq-panel-inner p{
		font-size:16px;
		line-height:1.7;
	}

}