.boldpo-post-slider-4-block-wrap {

	.boldpo-post-slider-4 {
		display: block; // Swiper needs block, children are absolute
		position: relative;
		overflow: hidden;

		.boldpo-grid-item {
			position: relative;

			.boldpo-blog-content {
				position: absolute;
				bottom: 0;
				padding: 30px;
				display: flex;
				flex-direction: column;
				justify-content: flex-end;
			}

			.boldpo-overlay-all {
				position: absolute;
				bottom: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background-image: linear-gradient(to top, #000, transparent);
			}

			&.boldpo-has-video {

				.boldpo-overlay-all {
					height: 40%;
				}
			}

			.boldpo-blog-img img {
				height: 510px;
				object-fit: cover;
				width: 100%;
			}

			.boldpo-blog-title {
				font-size: 2rem;
				line-height: 1.2;
				margin-bottom: 0;
				margin-top: 15px;
				color: var(--boldpo-preset-color-contrast-1);
				a {
					color: currentColor;
				}
			}

			.boldpo-blog-title,
			.boldpo-post-metas,
			.boldpo-post-categories,
			.boldpo-blog-excerpt,
			.boldpo-read-more .boldpo-read-more-link {
				color: #fff;
			}

			a {
				text-decoration: none;

				&:hover {
					color: var(--boldpo-preset-color-primary);
				}
			}
		}

		.boldpo-list-item {
			position: relative;
			transition: var(--boldpo-preset-hover-transition);
			box-sizing: border-box;
			height: 100%;

			.boldpo-list-item-inner {
				align-items: center;
				display: flex;
				overflow: hidden;
				box-sizing: border-box;
				height: 100%;

				padding: 10px;
			}

			img {
				max-width: 100%;
				height: auto;
				display: block;
				object-fit: cover;
				transition: transform var(--boldpo-preset-hover-transition);
			}

			i {
				font-size: 16px;
			}

			.boldpo-blog-date-top {
				z-index: 1;
				background-color: var(--boldpo-preset-color-primary);

				h4 {
					margin: 0;
					color: #fff;
					font-size: 36px;
					line-height: 1;
				}

				position: absolute;
				top: 0;
				right: 0;
				display: inline-block;
				padding: 20px;
				padding-bottom: 6px;
				text-align: center;
				border-radius: 4px;
				color: #fff;
				margin: 25px;

				h4,
				span {
					color: inherit;
				}

				@media screen and (max-width: 767px) {
					display: none;
				}

				@media screen and (max-width: 1024px) {
					display: none;
				}
			}

			.boldpo-blog-content {
				padding: 5px 10px;
				width: calc(100% - 70px);
			}

			.boldpo-blog-img {
				position: relative;
				width: 70px;
				max-width: 100%;
				height: 80px;
				display: block;
				margin: 0 auto;
				overflow: hidden;
				position: relative;
				border-radius: 4px;


				img {
					display: block;
					object-fit: cover;
					width: 100%;
					height: 80px;
				}

				&.boldpo-animate {
					overflow: hidden;

					img {
						transition: transform var(--boldpo-preset-hover-transition);
					}

					&.left_right {
						&:hover img {
							transform: translateX(15px) scale(1.1);
						}
					}

					&.top_bottom {
						&:hover img {
							transform: translateY(15px) scale(1.1);
						}
					}
				}
			}

			.boldpo-blog-title {
				font-weight: bold;
				color: var(--boldpo-preset-color-white);
				margin-bottom: 5px;
				margin-top: 0;
				text-transform: capitalize;
				font-size: 16px;
				line-height: 1.3;

				@media screen and (max-width: 767px) {
					font-size: 1em;
				}

				a {
					color: currentColor;
					transition: var(--boldpo-preset-hover-transition);
					text-decoration: none;
				}
			}

			.boldpo-read-more {
				display: inline-block;
				margin-top: 10px;
				text-decoration: none;

				@media screen and (max-width: 767px) {
					display: none;
				}

				.boldpo-read-more-link {
					display: inline-flex;
					align-items: center;
					text-decoration: none;
					padding: 7px 16px;
					background-color: var(--boldpo-preset-color-primary);
					color: var(--boldpo-preset-color-white);
					font-size: 14px;
					font-weight: 600;
					transition: 0.3s ease-in-out;

					&:hover {
						background-color: var(--boldpo-preset-color-secondary);
					}
				}

				.boldpo-read-more-icon.after {
					margin-left: 6px;
					top: 1px;
				}

				.boldpo-read-more-icon.before {
					margin-right: 6px;
					top: 1px;
				}
			}

			.boldpo-blog-excerpt {
				margin-bottom: 20px;
				font-size: 18px;
				color: var(--boldpo-preset-color-contrast-2);

				a {
					color: currentColor;
				}

				@media screen and (max-width: 767px) {
					display: none;
				}

				@media screen and (max-width: 1024px) {
					display: none;
				}
			}

			.boldpo-video-wrapper {
				position: relative;

				span.play-icon {
					width: 0;
					height: 0;
					border-bottom: 10px solid transparent;
					border-right: 15px solid #ffffff;
					border-top: 10px solid transparent;
					position: absolute;
					left: 50%;
					top: 50%;
					transform: translate(-50%, -50%);
				}


				iframe {
					height: 80px;
					width: 100%;
					transform: scale(3.1);
				}
			}

			a {
				&:hover {
					color: var(--boldpo-preset-color-primary);
				}
			}

		}

		span.pgbr {
			position: absolute;
			left: -2px;
			right: 0;
			width: 100%;
			height: 100%;
			transform: translate3d(-100%, 0, 0);
			display: block;
			top: 0;
			background-color: rgba(167, 163, 163, 0.1);
		}

		.swiper-slide-thumb-active span.pgbr {
			animation: slideProgress 7000ms linear;
		}

		@keyframes slideProgress {
			0% {
				transform: translate3d(-100%, 0, 0);
			}

			100% {
				transform: translate3d(0, 0, 0);
			}
		}

		.swiper-pagination-bullet {
			&.swiper-pagination-bullet-active {
				background-color: #000;
			}
		}

		.slider__flex {
			display: flex;
			align-items: flex-start;
			overflow: hidden;



			.slider__images {

				max-width: 74%;

				@media screen and (max-width: 1024px) {
					max-width: 100% !important;
				}

				.swiper-container {
					width: 100%;
					height: 100%;
					overflow: hidden;
					position: relative;
				}
			}

			.slider__col {
				display: flex;
				flex-direction: column;
				max-width: 26%;
				margin-left: 16px;
				order: 2;

				@media screen and (max-width: 1024px) {
					display: none !important;
				}

				.slider__thumbs {
					height: 430px;

					.slider__image {
						height: 100%;
					}

					.swiper-container {
						width: 100%;
						height: 100%;
						overflow: hidden;
						margin-top: 10px;
					}
				}
			}

			@media screen and (max-width: 575px) {
				flex-direction: column;

				.slider__images,
				.slider__col {
					max-width: 100%;
					flex: 0 0 100%;
					margin-left: 0;

					.slider__thumbs {
						height: auto;
					}
				}
			}
		}



		.swiper-button-next {
			margin-top: 20px;
		}

		.nav-btn {
			&::after {
				display: none !important;
			}
		}

		&.style-default,
		&.style-1 {
			.boldpo-list-item {
				background: #272727;
			}

			.nav-btn {
				cursor: pointer;
				text-align: center;
				font-size: 0.875rem;
				height: 32px;
				display: flex;
				align-items: center;
				justify-content: center;
				-webkit-user-select: none;
				-moz-user-select: none;
				user-select: none;
				background: var(--boldpo-preset-color-primary);
				color: #fff;
				border-radius: 0;
				box-sizing: border-box;
				z-index: 9;
				position: static;
				width: 100%;
				font-weight: 500;

				&.swiper-button-prev {
					margin-top: 0;
				}

				svg {
					display: none;
				}

				&:focus {
					outline: none;
				}

				&:hover {
					opacity: 0.9;
				}
			}
		}

		&.style-2 {
			.slider__images {
				max-width: 100%;

				.boldpo-blog-img img {
					height: 530px;
				}

				.boldpo-blog-content {
					width: var(--wp--style--global--content-size);
					left: 50%;
					transform: translateX(-50%);
					padding-right: 200px;
					padding-left: 0;

					@media screen and (max-width: 1024px) {
						max-width: 100%;
						transform: unset;
						left: auto;
						padding-right: 30px;
						padding-left: 30px;
						margin-left: 0;
					}
				}

				.boldpo-post-categories {
					margin: 0 !important;
				}

				.boldpo-post-slider-btn-wrapper {
					display: flex;
					align-items: center;
					left: 50%;
					transform: translateX(-50%);
					width: var(--wp--style--global--content-size);
					position: absolute;
					z-index: 2;

					@media screen and (max-width: 1024px) {
						transform: unset;
						left: 30px;
					}
				}

				.nav-btn {
					cursor: pointer;
					text-align: center;
					font-size: 18px;
					height: 48px;
					width: 48px;
					line-height: 51px;
					-webkit-user-select: none;
					-moz-user-select: none;
					user-select: none;
					background: rgba(255, 255, 255, 0.07);
					color: #fff;
					border-radius: 100%;
					z-index: 9;
					font-weight: 700;

					position: static;

					svg {
						height: 20px;
						width: 20px;
					}

					&.swiper-button-next {
						margin: 0 0 -145px 8px;
					}

					&.swiper-button-prev {
						margin: 0px 0 -145px 0;
					}

					&:hover {
						background-color: var(--boldpo-preset-color-primary);
					}

				}
			}

			.slider__col {
				right: 15%;
				position: absolute;
				z-index: 1;
				display: flex;
				flex-direction: column;
				margin-left: 16px;
				max-width: 26%;
				order: 2;
				align-items: center;
				justify-content: center;
				height: 100%;
				top: -8%;

				.slider__thumbs {
					height: 330px;
				}

				.boldpo-post-metas {

					.bldpost-meta {
						color: var(--boldpo-preset-color-white);
					}
				}
			}
		}
	}
}