/*
Block: Board
Last updated: 24/05/2025
*/
.wp-block-acf-board .arrows {
	position: absolute;
    bottom: calc(100% + 1em);
    right: 0;
    display: flex;
	gap: 30px;
}
.wp-block-acf-board .material-symbols.prev,
.wp-block-acf-board .material-symbols.next {
    position: unset;
    transform: unset !important;
    border: 2px solid transparent;
    width: 5rem;
    height: 2rem;
    font-size: 2rem !important;
    color: var(--wp--preset--color--custom-white);
    font-variation-settings: 'wght' 300;
}
.wp-block-acf-board .material-symbols.prev:hover,
.wp-block-acf-board .material-symbols.next:hover {
	color: var(--wp--preset--color--custom-blue-navy);
	border-color: var(--wp--preset--color--custom-blue-navy);
}

.wp-block-acf-board .popup {
	width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
	opacity: 0;
	pointer-events: none;
	background-color: color-mix(in srgb, var(--wp--preset--color--custom-blue-navy) 90%, transparent);
	display: flex;
    align-items: center;
    justify-content: center;
	transition: var(--time);
}
.wp-block-acf-board .popup.open {
	opacity: 1;
	pointer-events: initial;
}

.wp-block-acf-board .popup .popup-inner {
	background-color: var(--wp--preset--color--custom-white);
    width: 500px;
    max-width: 100%;
	max-height: 100%;
	padding: 30px;
	position: relative;
	overflow-y: scroll;
	transform: scale(.95);
	transition: var(--time);
}
.wp-block-acf-board .popup.open .popup-inner {
	transform: scale(1);
}
.wp-block-acf-board .popup img {
	display: block;
	margin-bottom: 30px;
}
.wp-block-acf-board .popup .material-symbols {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: white;
    color: var(--wp--preset--color--custom-red-penn);
    width: 40px;
    height: 40px;
    display: flex
;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 26px;
}

.wp-block-acf-board .inner {
	background: linear-gradient(180deg, var(--wp--preset--color--custom-turquoise) 1%, var(--wp--preset--color--custom-turquoise) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
	padding: 40px;
	padding-bottom: 0;
	position: relative;
}
.wp-block-acf-board .inner::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	background: inherit;
}

.wp-block-acf-board .item-media {
	aspect-ratio: 1;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}
.wp-block-acf-board .swiper-slide {
    background-color: var(--wp--preset--color--custom-white);
    padding: 40px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
    height: auto;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.wp-block-acf-board .swiper {
    overflow: visible;
}

.wp-block-acf-board button {
	cursor: pointer;
	background-color: transparent;
	color: var(--wp--preset--color--custom-blue-navy);
	border-color: var(--wp--preset--color--custom-blue-navy);
	    width: max-content;
    margin-left: auto;
	margin-right: auto
}

.wp-block-acf-board .text-content {
	padding-top: 25px;
}

.wp-block-acf-board .text-content .text {
		overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	text-align: center;
	font-weight: 500;
}

.wp-block-acf-board .name {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--wp--preset--color--custom-blue-navy);
	text-align: center;
}


.wp-block-acf-board .position {
	text-align: center;
	font-style: italic;
	color: var(--wp--preset--color--custom-red-penn);
}

.editor-styles-wrapper .wp-block-acf-board .swiper-slide.member{
	width: 386.667px
}

.editor-styles-wrapper .wp-block-acf-board .swiper-wrapper {
	gap: 30px;
}