﻿/* ------------ RSS Advanced ------------ */

/* Slide */
.feature-slide {
    background-color: #c8102e;
    height: 35rem;
}

/* Content */
.news-content {
    padding: 2rem 4rem;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    max-width: 60rem;
}

.news-content h3 {
    font-weight: 700;
    font-size: 2.25em;
    line-height: 1.25em;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content p {
    font-weight: 400;
    font-size: 1.25em;
    margin-top: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image */
.news-image img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    padding: 0;
}

/* Orbit Arrows */
.custom-orbit-btn {
    width: 4rem;
    height: 4rem;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border-radius: 0;
}

.custom-orbit-btn:hover {
    background-color: #c8102e;
}

.custom-orbit-btn:focus {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.9);
}

.custom-orbit-btn i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #000;
    line-height: 0;
}

.orbit-previous {
    top: 33rem;
    left: 50%;
}

.orbit-next {
    top: 33rem;
    left: 50%;
    margin-left: 4.15rem;
}

/* Orbit Bullets */
.orbit-bullets button {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

/* Large Screen */
@media screen and (min-width: 80em) {
    .news-content h3 {
        font-size: 3.5em;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Medium Screen */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .news-content {
        padding: 2rem;
    }

        .news-content h3 {
            -webkit-line-clamp: 4;
        }

        .news-content p {
            font-size: 1.15em;
        }
}

/* Small Screen */
@media screen and (max-width: 39.9375em) {
    .feature-slide {
        min-height: 42rem;
    }

    .news-content h3 {
        font-size: 1.5em;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-content p {
        font-size: 1em;
        margin-top: 1.25rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-image img {
        height: 16rem;
    }

    .custom-orbit-btn {
        width: 3.5rem;
        height: 3.5rem;
    }

        .custom-orbit-btn i {
            font-size: 2rem;
            color: #000;
        }

    .orbit-previous {
        top: 14.25rem;
        left: auto;
    }

    .orbit-next {
        top: 14.25rem;
        left: auto;
    }
}

/* ------------ RSS Basic ------------ */

/* Slide */
.feature-slide-basic {
    height: 25rem;
}

/* Content */
.basic-container {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 4em;
}
.basic-container ul > li:before {
    content: none;
}

.orbit-slides {
    list-style-type: none;
}

.basic-container ul.orbit-container li {
    margin-left: 0
}

.news-content-basic {
    padding: 2rem 0;
    color: #544f47;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    max-width: 60rem;
    text-align: center;
}
    .news-content-basic h2 {
        font-weight: 700;
        font-size: 2em;
        font-style: italic;
    }
    .news-content-basic h3 {
        font-weight: 700;
        font-size: 1.25em;
        line-height: 1.25em;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-content-basic p {
        font-weight: 400;
        font-size: 1em;
        margin-top: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Orbit Arrows */
.custom-orbit-btn-basic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    border-radius: 0;
}

    .custom-orbit-btn-basic:hover {
        background-color: transparent;
    }

    .custom-orbit-btn-basic:focus {
        backdrop-filter: none;
        background: none;
    }

    .custom-orbit-btn-basic i {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2.5rem;
        color: #000;
        line-height: 0;
    }

.orbit-previous.custom-orbit-btn-basic {
    left: 0;
    right: auto;
    margin:0;
}

.orbit-next.custom-orbit-btn-basic {
    right: 0;
    left: auto;
    margin:0;
}

/* Medium Screen */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .news-content-basic {
        padding: 2rem;
    }

        .news-content-basic h3 {
            -webkit-line-clamp: 4;
        }
}

/* Small Screen */
@media screen and (max-width: 39.9375em) {
    .feature-slide-basic {
        height: 30rem;
    }
    .basic-container {
        padding: 0 2.5em;
    }
    .news-content-basic h2 {
        font-size: 1.5em;
    }
    .news-content-basic h3 {
        -webkit-line-clamp: 4;
    }
    .custom-orbit-btn-basic {
        width: 3.5rem;
        height: 3.5rem;
    }
        .custom-orbit-btn-basic i {
            font-size: 2rem;
        }
}
