.wroclaw-faq {
	h2 {
		margin-bottom: 56px;
	}

	.faq_list {
		padding: 8px 32px;
		border-radius: 16px;
	}

	.faq_item {
		padding: 24px 0;
		border-bottom: 1px solid var(--brown-50);

		&:last-child {
			border-bottom: 0;
		}

		&.open .icon svg {
			transform: rotateZ(135deg);
		}
	}

	.faq_head {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 24px;
		cursor: pointer;

		h5 {
			flex: 1;
		}
	}

	.icon {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 8px;
		color: var(--green-700);

		svg {
			transition: .4s;
		}
	}

	.faq_body {
		padding-top: 16px;
	}

	.faq_content {
		p:not(:last-child) {
			margin-bottom: 12px;
		}
	}

	@media (max-width: 1199px) {
		h2 {
			margin-bottom: 40px;
		}
	}

	@media (max-width: 767px) {
		.faq_list {
			padding: 8px 20px;
		}

		.faq_item {
			padding: 16px 0;
		}
	}
}
