#botw-carousel {
    width: 100%;
    background-color: #F6F8F9;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 80px;
}

.botw-carousel-header {
    font: 32px/46px BNPP-Sans;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 80px 80px 60px 80px;
}

#carousel-items {
    position: relative;
    height: 486px;
    overflow: visible;
}

.carousel-item {
    width: 360px;
    height: 486px;
    background-color: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    margin-right: 40px;
    vertical-align: bottom;
}

.carousel-header {
    width: 100%;
    height: 180px;
    background-color: #F0F0F0;
}

.carousel-header-content {
    text-align: left;
}

.carousel-body {
    padding: 24px 35px 24px 24px;
    text-align: left;
    height: 306px;
    box-sizing: border-box;
}

.body-topic {
    font: 18px/24px roboto-regular;
    color: #4D4D4d;
    background-color: #F0F0F0;
    padding: 12px 8px;
    display: inline-block;
    text-align: left;
}

.body-content {
    font: 27px/36px roboto-bold;
    color: #1A1A1A;
    padding-top: 24px;
    text-align: left;
    box-sizing: border-box;
    min-height: 150px;
}

.body-read {
    font: 21px/30px roboto-regular;
    color: #4D4D4D;
    position: absolute;
    bottom: 24px
}

.body-read-link {
    position: absolute;
    bottom: 31px;
    right: 35px
}


/* nav links */

#nav-next {
    position: absolute;
    top: 243px;
    right: -36px;
    padding: 20px;
    background-color: #008855;
    color: #FFFFFF;
    text-decoration: none;
}

#nav-next.disabled {
    background-color: lightgray;
}

#nav-prev {
    position: absolute;
    top: 243px;
    left: -36px;
    padding: 20px;
    background-color: #008855;
    color: #FFFFFF;
    text-decoration: none;
    display: none;
}

#carouselNav {
    display: block;
}

#carouselNavMobile {
    display: none;
}

#nav-prev img {
    transform: scale(-1, 1);
}

a.carousel-link:link {
    text-decoration: none;
}

@media only screen and (min-width: 1200px) {
    #carousel-items div:nth-child(3n+0) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    #carousel-items div:nth-child(2n+0) {
        margin-right: 0;
    }
    .carousel-item {
        width: 310px;
        margin-right: 20px;
    }
    #nav-prev,
    #nav-next {
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 767px) {
    #botw-carousel {
        padding-bottom: 60px;
    }
    .botw-carousel-header {
        font: 22px/32px BNPP-Sans;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 60px 20px 40px 20px;
    }
    #carousel-items {
        height: 420px;
    }
    .carousel-item {
        width: 260px;
        height: 420px;
        background-color: #FFF;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        position: relative;
        display: inline-block;
        margin-right: 20px;
        vertical-align: bottom;
    }
    #carousel-items div:nth-child(1n+0) {
        margin-right: 0;
    }
    .carousel-header {
        width: 100%;
        height: 134px;
        background-color: #F0F0F0;
    }
    .carousel-header-content {
        text-align: left;
    }
    .carousel-body {
        padding: 24px 24px 0 24px;
        text-align: left;
        height: 286px;
        box-sizing: border-box;
    }
    .body-topic {
        font: 18px/24px roboto-regular;
        color: #4D4D4d;
        background-color: #F0F0F0;
        padding: 12px 8px;
        display: inline-block;
        text-align: left;
    }
    .body-content {
        font: 22px/32px roboto-bold;
        color: #1A1A1A;
        padding-top: 24px;
        text-align: left;
        box-sizing: border-box;
        min-height: 150px;
    }
    .body-read {
        font: 18px/26px roboto-regular;
        color: #4D4D4D;
        position: absolute;
        bottom: 20px
    }
    .body-read-link {
        position: absolute;
        bottom: 20px;
        right: 24px
    }
    /* nav links */
    #carouselNav {
        display: none;
    }
    #carouselNavMobile {
        display: block;
    }
    #m-nav-next {
        position: absolute;
        top: 243px;
        right: 0;
        padding: 0;
        background-color: transparent;
        text-decoration: none;
    }
    #m-nav-prev {
        position: absolute;
        top: 243px;
        left: 0;
        padding: 0;
        background-color: transparent;
        text-decoration: none;
        display: none;
    }
    #m-nav-prev img {
        transform: scale(-1, 1);
    }
}