a.fancybox, a.fancybox:hover {
    color: black;
    text-decoration: none;
}
.fancybox-image {
    background-color: white;
    border-radius: 2px;
    padding: 20px;
}


.caption-title {
    font-size: 14px;
    font-weight: bold;
}
.caption-caption {
    font-size: 13px;
}
.caption-creator {
    font-size: 13px;
    font-style: italic;
}


/* Image carousel */
.article-image-carousel {
    border-radius: 3px;
    box-shadow: 2px 2px 2px;
}
.article-image-carousel > .carousel {
    height: 340px;
}
.article-image-carousel > .carousel > .carousel-inner {
    background-color: black;
    height: 100%;
}
.article-image-carousel > .carousel > .carousel-inner > .item {
    height: 100%;
}
.article-image-carousel > .carousel > .carousel-inner > .item > img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding: 0;
}
.article-image-carousel .controls {
    background-color: #f8f8f8;
    display: flex;
    flex-direction: row;
    padding: 10px;
}
.article-image-carousel .controls > a {
    font-size: 16px;
}
.article-image-carousel .caption {
    background-color: #f8f8f8;
    padding: 10px;
    overflow-y: auto;
    text-align: center;
}
@media (max-width: 1200px) {
    .article-image-carousel > .carousel {
        height: 256px;
    }
}
@media (max-width: 992px) {
    .article-image-carousel > .carousel {
        height: 240px;
    }
}
