.feature-image-slider {
    /*margin-bottom: 6rem;*/
    padding: 6rem 0 6rem;
}
.article .image-slider {
    margin-bottom: 3rem;
}
.image-slider {
    position: relative;
}
.image-slider__inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    /*background: #fafafa;*/
    background: hsl(0, 0%, 20%);
    /*background: hsl(0, 0%, 90%);*/
    z-index: 1;
}

/* Slider Item */
.image-slider__item {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 60%;
    display: none;
    transition: transform .4s ease-in-out;
}
.image-slider__img {
    width: 100%;
    position: relative;
}
.image-slider__img > img {
    max-width: 95%;
    max-height: 95%;
    margin-top: calc(60% / 2);
    margin-left: 50%;
    transform: translate(-50%, -50%);
}

/* Caption */
.image-slider__caption {
    position: absolute;
    bottom: 0%;
    width: 100%;
    background: pink;
    background: hsl(0, 0%, 95%);
    background: hsl(0, 0%, 25%);
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1rem;
	line-height: 1.5;
	font-family: "VistaRegular", "Vista Sans OT", sans-serif;
	color: #888;
    transform: translateY(100%);
    transition: transform .2s ease-in-out;
}
.image-slider__caption.open {
    transform: translateY(0);
}
.image-slider__caption > .count {
    display: none;
}

/* Transition States */
.image-slider__item.active,
.image-slider__item.prev,
.image-slider__item.next {
    display: block;
}
.image-slider__item.prev,
.image-slider__item.next {
    position: absolute;
    top: 0;
}
.image-slider__item.active.left,
.image-slider__item.prev {
    transform: translate(-100%);
}
.image-slider__item.active.right,
.image-slider__item.next {
    transform: translate(100%);
}
.image-slider__item.active,
.image-slider__item.next.left,
.image-slider__item.prev.right {
    transform: translateX(0);
}

/* Controls */
.image-slider__controls {
    position: absolute;
    height: 5rem;
    bottom: 0;
    right: 0;
    color: #888;
    z-index: 99;
    margin-right: 2.5rem;
}
@media (min-width: 400px) and (max-width: 639px) {
    .image-slider__controls {
        margin-right: 3rem;
    }
}
.image-slider__control {
    display: inline-block;
    line-height: inherit;
    height: 5rem;
    margin-left: 1rem;
}
.image-slider__control:hover {
    color: #777;
}
.image-slider__control > i {
    line-height: inherit;
    font-size: 2em;
}

/* Footer */
.image-slider__footer {
    /*background: hsl(0, 0%, 95%);*/
   background: hsl(0, 0%, 25%);
    height: 5rem;
    line-height: 5rem;
    overflow: hidden;
    padding: 0 1rem;
    position: relative;
    color: #666;
    color: #888;
    z-index: 1
}
.image-slider__count {
    color: inherit;
    position: absolute;
    height: inherit;
    width: 100%;
    left: 0;
    text-align: center;
    line-height: inherit;
    font-family: "VistaRegular", "Vista Sans OT", sans-serif;
    z-index: 1;
}
.image-slider__footer-caption {
    display: none;
    /*background: hsl(0, 0%, 95%);*/
}
.image-slider__caption-button {
    float: left;
    position: relative;
    z-index: 2;
}
.image-slider__caption-button > a {
    display: block;
    height: 5rem;
    line-height: inherit;
    color: inherit;
}
.image-slider__caption-button > a > i {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1em;
    line-height: 1.85rem;
    text-align: center;
    border-radius: 50%;
    font-style: normal;
    font-family: "VistaMedium", "Vista Sans OT", sans-serif;
    border: 2px solid #888;
}
@media (min-width: 1024px) {
    .image-slider__inner {
        background: hsl(0, 0%, 20%);
    }
    .image-slider__img > img {
        max-width: 90%;
        max-height: 90%;
        margin-top: calc(60% / 2);
        margin-left: 50%;
        transform: translate(-50%, -50%);
    }
    .image-slider__caption {
        display: none;
    }
    .article .image-slider__footer {
        width: 100%;
    }
    .image-slider__footer {
        background: hsl(0, 0%, 20%);
        box-sizing: border-box;
        padding: 1.5rem;
        height: auto;
        min-height: 5rem;
        transition: height .1s ease-in-out;
        /*position: absolute;*/
        /*bottom: -5rem;*/
        /*width: calc(100% - 3rem);*/
        /*border-top: 1px solid #dfdfdf;*/
        width: 100%;
        position: relative;
        margin-top: -5.0rem;
    }
    .article .image-slider__footer {
        width: 100%;
        position: relative;
        margin-top: -5.0rem;
    }
    .image-slider__footer-caption {
        display: block;
        font-family: "VistaRegular", "Vista Sans OT", sans-serif;
        color: #666;
        color: #888;
        line-height: 2rem;
        font-size: 1.25rem;
        /*white-space: nowrap;*/
        overflow: hidden;
        /*text-overflow: ellipsis;*/
        max-width: 100%;
    }
    .image-slider__footer-caption > .count {
        display: inline;
        font-family: "VistaMedium", "Vista Sans OT", sans-serif;
    }
    /*.image-slider__footer-caption:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 1.5rem;
        bottom: 0;
        background: hsl(0, 0%, 95%);
    }*/
    .image-slider__footer:hover {
        /*height: 9rem;*/
    }
    .image-slider__footer:hover > .image-slider__footer-caption {
        white-space: normal;
        max-width: 100%;
    }
    /*.image-slider__inner:hover + .image-slider__footer {
        background: red;
    }
    .image-slider__inner:hover + .image-slider__footer > .image-slider__footer-caption,
    .image-slider__footer:hover > .image-slider__footer-caption {
        white-space: normal;
        max-width: 100%;
        line-height: 2rem;
        position: absolute;
        bottom: 0;
        height: 7rem;

    }*/
    .image-slider__caption-button {
        display: none;
    }
    .image-slider__count {
        display: none;
    }
    .image-slider__controls {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        /*background: pink;*/
    }
    .image-slider__control {
        position: absolute;
        height: 100%;
        /*background: red;*/
        width: 4rem;
        text-align: center;
        margin: 0;
        color: #888;
        cursor: pointer;
    }
    .image-slider__control:hover {
        color: hsl(0, 0%, 20%);
    }
    .image-slider__control--next {
        right: -2rem;
    }
    .image-slider__control--prev {
        left: -2rem;
    }
    .article .image-slider__control--next {
        right: -5rem;
    }
    .article .image-slider__control--prev {
        left: -5rem;
    }
    .image-slider__control > i {
        display: block;
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 3em;
    }
}
@media (min-width: 1100px) {
    .image-slider__control--next {
        right: -5rem;
    }
    .image-slider__control--prev {
        left: -5rem;
    }
}
