.dn-team-carousel {
	position: relative;
	margin: 0 -6px;
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
}
.dn-team-carousel .slick-track {
    display: flex;
}
.dn-team-carousel .slick-slide {
	padding: 0 6px;
    height: auto;
}
.dn-team-carousel .slick-list {
	margin: 0 -6px;
	overflow: visible;
}
.dn-team-carousel--contained .slick-list {
        overflow: hidden;
    }
.dn-team-carousel__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
}
.dn-team-carousel__image img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
}
.dn-team-carousel__content {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 16px 16px 46px;
        background: var(--e-global-color-primary);
        color: #fff;
        position: relative;
        min-height: 120px;
}
.dn-team-carousel__title {
	margin: 0 0 6px;
        color: var(--e-global-color-844b6b6);
        font-family: "Poppins", Sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 20px;
}
.dn-team-carousel__title a {
	color: inherit;
	text-decoration: none;
}
.dn-team-carousel__excerpt {
        color: var(--e-global-color-accent);
        font-family: "Poppins", Sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
}
a.dn-team-carousel__link {
        font-family: "Roboto", Sans-serif;
        font-weight: 600;
        color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 12px 22px;
}
a.dn-team-carousel__link i {
        margin-left: 6px;
    }
.dn-team-carousel .slick-prev,
.dn-team-carousel .slick-next {
        z-index: 101;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #fff !important;
        text-decoration: none;
        background: var(--e-global-color-primary);
        border-radius: 4px;
}
.dn-team-carousel .slick-prev:before,
.dn-team-carousel .slick-next:before {
	content: none;
}
.dn-team-carousel .slick-prev i,
.dn-team-carousel .slick-next i {
	font-size: 24px;
	line-height: 1;
}
.dn-team-carousel .slick-dots {
	position: relative;
	bottom: 0;
	margin-top: 24px;
}
.dn-team-carousel .slick-slide:not(.slick-active) {
        opacity: 0.3;
        transition: all .3s ease;
}
.dn-team-carousel::before,
.dn-team-carousel::after {
    content: "";
    top: 0;
    left: calc(((100vw - 100%) / 2) * -1);
    height: 100%;
    width: calc((100vw - 100%) / 2);
    position: absolute;
    background: linear-gradient(90deg, white, transparent);
    z-index: 100;
}
.dn-team-carousel::after {
    left: auto;
    right: calc(((100vw - 100%) / 2) * -1);
    background: linear-gradient(270deg, white, transparent);
}

@media (min-width: 1025px) {
    .dn-team-carousel {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    a.dn-team-carousel__link {
        text-align: center;
    }
    a.dn-team-carousel__link:hover {
        color: #fedf59;
    }

    .dn-team-carousel .slick-prev {
        left: -50px;
    }

    .dn-team-carousel .slick-next {
        right: -50px;
    }

    .dn-team-carousel .slick-prev:hover, .dn-team-carousel .slick-next:hover {
        background: #fff;
        color: var(--e-global-color-primary) !important;
    }
}

.dn-team-carousel:not(.slick-initialized) .dn-team-carousel__slide:not(:first-child) {
    display: none;
}
