.faq-flex {
    gap: 80px 30px;
}
.faq-item {
    width: calc((100% / 5) - 24px);
    position: relative;
}
.faqs-grid-section .container {
    max-width: 1360px;
}
.faqs-grid-section {
    padding: 80px 0px;
}
.faq-post-card-background {
    background-color: var(--black);
    border-radius: 6px;
    height: 250px;
}
.faq-post-card-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
	z-index: 2;
}
.faq-post-card-title h2 a {
    font-size: 18px;
    color: var(--white);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    word-break: break-word;
}
.faq-post-card-title {
    background-color: rgba(0, 0, 0, .45);
    padding: 10px;
    position: relative;
}
.faq-post-card-title h2 {
    word-break: break-word;
}
.faq-post-card-background img {
    filter: grayscale(1);
    transform: scaley(1);
    position: absolute;
    bottom: 0;
    height: 240px;
    margin: 0 auto;
    left: 0;
    right: 0;
    transition: 0.2s ease-in-out;
    object-fit: cover;
}
.faq-item:hover .faq-post-card-background img {
    height: 320px;
	filter: none;
}
.faq-post-card-audios .faq-post-card-audio-english, .faq-post-card-audios .faq-post-card-audio-german {
    display: none;
}
.faq-post-card-link-play-icons {
    gap: 20px;
    justify-content: center;
}
.faq-post-card-play-icon img, .faq-post-card-link-icon img {
    max-width: 30px;
}
.faq-post-card-play-icon button, .faq-post-card-link-icon a {
    cursor: pointer;
}
.faq-post-card-play-icon button {
    background-color: transparent;
    padding: 0px;
    outline: none;
    border: 0px;
}
.faq-post-card-audios {
    display: none;
}
.faq-item:hover .faq-post-card-title {
    display: none
}
.faq-item:hover .faq-post-card-audios {
    display: block;
}
#faq-ajax-container .pagination {
    margin: 60px 0px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
#faq-ajax-container .pagination span, #faq-ajax-container .pagination a {
    font-family: "Bebas Neue", sans-serif;
    color: var(--black);
    transition: .3s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-radius: 5px;
    font-size: 18px;
}
#faq-ajax-container .pagination .current, #faq-ajax-container .pagination a:hover {
    background-color: var(--black);
    color: var(--white);
}
#faq-ajax-container .pagination .prev, #faq-ajax-container .pagination .next {
    width: auto;
    height: auto;
    font-size: 18px;
    padding: 2px 10px;
}
.faq-background-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.faq-background-link a {
    display: block;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1028px) {
	.faq-item {
		width: calc((100% / 4) - 23px);
	}
}
@media only screen and (max-width: 992px) {
	.faq-item {
		width: calc((100% / 3) - 20px);
	}
	.faq-flex {
		gap: 60px 30px;
	}
	.faq-post-card-background {
		height: 220px;
	}
	.faq-item:hover .faq-post-card-background img {
		height: 270px;
	}
	.faqs-grid-section {
		padding: 60px 0px;
	}
	#faq-ajax-container .pagination {
		margin: 40px 0px;
	}
	.faq-post-card-content {
		bottom: 10px;
	}
}
@media only screen and (max-width: 600px) {
	.faq-item {
		width: 100%;
	}
	.faqs-grid-section {
		padding: 30px 0px;
	}
	.faq-flex {
		gap: 30px 30px;
	}
	.faq-post-card-background {
		height: 250px;
	}
	.faq-item:hover .faq-post-card-background img {
		height: 280px;
	}
	.faq-post-card-title h2 a {
		font-size: 18px;
	}
	#faq-ajax-container .pagination {
		margin: 20px 0px;
	}
}