.mt-featured p {
    font-family: 'Open Sans', 'Manrope', sans-serif;
}

.mt-featured .border {
    border-width: 1px;
    border-style: solid;
}

.mt-featured .border.black {
    border-color: black;
}

.mt-featured .border.gray {
    border-color: gray;
}

.mt-featured {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    height: 400px;
}

.mt-featured .mt-hidden {
    display: none !important;
}

.mt-featured__showall {
    width: 300px;
    height: 400px;  
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

.mt-featured__showall-image {
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.mt-featured__showall-link {
    font-family: 'Open Sans', 'Manrope', sans-serif;
    display: block;
    padding: 10px 20px 10px 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    background-color: white !important;
    border-radius: 16px;
    margin-bottom: 16px !important;
    color: black;
    text-decoration: none;
}

.mt-featured__showall-link:hover {
    color: unset !important;
}

.mt-featured__showall-link:visited {
    color: black;
}

.mt-featured__showall-link::after {
    content: '';
    display: inline-block;
    width: 9.14px;
    height: 16px;
    background: url(../png/arrow.png) no-repeat;
    filter: brightness(0);
    background-size: contain;
    margin-left: 8px;
    position: relative;
    top: 1px;
}

.mt-featured .mt-featured__list-wrapper {
    height: 400px;
    width: calc(100% - 300px);
    position: relative;
}

.mt-featured .mt-featured__list {
    margin-left: 70px;
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
}

.mt-featured__carousel-item {
    position: relative;
    margin-top: 32px;
    width: 100%;
    transition: margin-left 0.4s;
    transition: margin-right: 0.4s;
    flex-shrink: 0;
}

.mt-featured .mt-featured__listitem {
    display: flex;
    flex-direction: row;
    height: 153px;
}

.mt-featured .mt-featured__listitem:nth-child(2) {
    margin-top: 30px;
}

.mt-featured .mt-featured__listitem-image {
    width: 202px;
    height: 153px;
    object-fit: contain;
    border-radius: 10px;
}

.mt-featured__listitem-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
    padding-right: 30px;
}

.mt-featured__headline {
    font-size: 1.5rem;
    line-height: 1.65rem;
    font-weight: 700;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
}

.mt-featured__digest {
    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 400;
    color: black;
    margin-bottom: 0px;
}

.mt-featured__btn-left,
.mt-featured__btn-right {
    opacity: 0;
    position: absolute;
    background-color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 20px !important;
    box-shadow: 0px 0px 20px 0px rgba(235, 229, 233, 1);
    top: calc(50% - 30px);
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-featured .mt-featured__list-wrapper:hover .mt-featured__btn-left:not(.mt-hidden),
.mt-featured .mt-featured__list-wrapper:hover .mt-featured__btn-right:not(.mt-hidden) {
    opacity: 1;
}

.mt-featured__arrow {
    width: 13px;
    height: 22px;
    margin: auto;
}

.mt-featured__btn-left .mt-featured__arrow {
    transform: rotate(180deg);
}

.mt-featured__btn-left {
    left: 30px;
}

.mt-featured__btn-right {
    right: 0px;
}

html[dir="rtl"] .mt-featured .mt-featured__list {
	margin-left: unset;
    margin-right: 70px;
}

html[dir="rtl"] .mt-featured__showall-link::after {
	margin-left: unset;
    margin-right: 8px;
    transform: rotate(180deg);
}

html[dir="rtl"] .mt-featured__btn-left {
	left: unset;
    right: 30px;
}

html[dir="rtl"] .mt-featured__btn-right {
	right: unset;
    left: 0px;
}

html[dir="rtl"] .mt-featured__btn-left .mt-featured__arrow {
	transform: unset;
}

html[dir="rtl"] .mt-featured__btn-right .mt-featured__arrow {
	transform: rotate(180deg);
}

html[dir="rtl"] .mt-featured__listitem-text {
	margin-left: unset;
    margin-right: 1rem;
}