/* ===================== Infos pratiques ===================== */

.ip-section {
	padding-top: 56px;
	padding-bottom: 90px;
}

/* ---- Sidebar / categories ---- */
.ip-sidebar__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #9aa3b2;
	margin-bottom: 18px;
}

.ip-cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ip-cat {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #3B4148;
	padding: 14px 18px;
	border-radius: 10px;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.ip-cat:hover {
	background: #f1f5f9;
	color: var(--color-Green-dark);
}

.ip-cat.ip-cat--active {
	background: #f1f5f9;
	color: var(--color-Green-dark);
	font-weight: 700;
}

.ip-cat.ip-cat--active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	border-radius: 4px;
	background: var(--color-Green-foor);
}

/* ---- Sticky sidebar ---- */
.ip-sidebar {
	position: sticky;
	top: 100px;
	align-self: flex-start;
}

/* ---- Content panels ---- */
.ip-panel {
	display: block;
	margin-bottom: 60px;
}

.ip-panel__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: var(--color-Green-dark);
	margin-bottom: 26px;
}

.ip-panel__title i {
	color: var(--color-Green-dark);
	font-size: 22px;
}

.ip-panel__icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
	flex-shrink: 0;
	background: #e8eaed;
	border-radius: 50%;
	padding: 9px;
}

/* ---- Accordion ---- */
.ip-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #eef1f5;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(22, 61, 104, .05);
}

.ip-acc-item {
	background: #fff;
	border: none;
	border-bottom: 1px solid #eef1f5;
	border-radius: 0;
}

.ip-acc-item:last-child {
	border-bottom: none;
}

.ip-acc-head {
	width: 100%;
	border: none;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--color-Green-dark);
	transition: color .2s;
}

.ip-acc-head:hover {
	color: var(--color-Green-one);
}

.ip-acc-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color-Green-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background .2s, transform .2s;
}

.ip-acc-icon::before {
	content: '+';
	font-size: 20px;
	font-weight: 400;
}

.ip-acc-item--open .ip-acc-icon {
	background: #e2e8f0;
}

.ip-acc-item--open .ip-acc-icon::before {
	content: '\00D7';
	font-size: 22px;
	color: #3B4148;
}

.ip-acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

.ip-acc-body__inner {
	padding: 16px 22px 24px;
	border-top: 1px solid #eef1f5;
	background: rgba(248, 250, 252, 0.5);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 1.75;
	color: #3B4148;
}

.ip-acc-item--open .ip-acc-body {
	max-height: 1200px;
}

.ip-acc-body__inner > p {
	margin: 0 0 12px;
}

.ip-acc-body__inner > p:last-child {
	margin-bottom: 0;
}

.ip-acc-list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ip-acc-list li {
	position: relative;
	padding-left: 22px;
}

.ip-acc-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-Green-foor);
}

.ip-acc-list strong {
	color: var(--color-Green-dark);
}

.ip-acc-list--cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 16px;
}

.ip-acc-list--cols li {
	padding-left: 0;
}

.ip-acc-list--cols li::before,
.ip-acc-list--plain li::before {
	display: none;
}

.ip-acc-list--plain li {
	padding-left: 0;
}

@media (max-width: 575px) {
	.ip-acc-list--cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ip-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-Green-dark);
	text-decoration: none;
	transition: opacity .2s;
}

.ip-link:hover {
	opacity: .75;
}

@media (max-width: 991px) {
	.ip-sidebar {
		position: static;
		margin-bottom: 36px;
	}
}
