/*
    + ---------------------------------------+
    | Pittsburgh Radio Rosary & Consecration |
    +----------------------------------------+
    @site:     www.pittrrc.org
    @location: Pittsburgh, PA 2023

    ******************************************
    @author: Ivan Bondarenko
    @link:   www.ivanbond.tech
    @mailto: ivanbonddev@gmail.com
    ******************************************
*/

html {
    overflow: scroll;
    background-color: var(--color-navy-blue);
    height: 100vh;
    color: white;
}

.col-cont {
    display: flex;
    /* padding-top: 2.5rem; */
}

.col {
    flex: 1;
    padding: 2.5rem;
    box-sizing: border-box;
}

.empty-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.col-1-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headshot {
    display: block;
    border-radius: 50%;
    border: 2px solid white;
    width: 10rem;
    margin-left: auto;
    margin-right: auto;
}

.hawkins-bio-cont {
    padding: 0 2.5rem 0 2.5rem;
}

.hawkins-bio {
    color: white;
    text-align: justify;
}

ul.uploads-videos-carousel {
    list-style-type: none;
    overflow-x: scroll;
    overflow-y:hidden;
    /* max-height: 16rem; */
    white-space: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
    /* max-width: 50rem; */
}

li.video-carousel-li {
    display: inline-block;
    /* float: left; */
    vertical-align: top;
    padding-right: 2rem;
}

div.video-preview-cont {
    display: inline-block;
    width: 18rem;
    height: 10rem;
    position: relative;
    /* padding: 1rem; */
}

div.picture-preview-cont {
    display: inline-block;
    width: 18rem;
    height: 10rem;
    position: relative;
    /* padding: 1rem; */
}

img.audio-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

video.video-preview {
    /* background-color: yellow; */
    /* height: 10rem; */
    /* width: auto; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* position: relative; */
    /* padding: 1rem; */
}

h3.video-title {
    color: white;
    /* font-family: "IBM Plex Mono"; */
    white-space: normal;
}

div.video-overlay {
    text-align: right;
    margin-top: 8.35rem;
}

span#video-duration {
    background-color: rgb(25,25,25);
    color: white;
    padding: 0.5rem;
    z-index: 9999;
    position: relative;
}

div.blog-post-card {
    background-color: var(--color-navy-blue);
    border: 2px solid white;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.blog-post-author-cont {
    display: flex;
    align-items: center;
}

.blog-post-author {
    padding-left: 0.5rem;
    vertical-align: middle;
}

img.blog-post-author-img {
    border-radius: 50%;
    border: 2px solid var(--color-navy-blue);
    width: 2rem;
}

.blog-post-title {
    margin-bottom: 5px;
    color: var(--color-light-blue);
}

.read-more-link {
    color: var(--color-gold);
    text-decoration: none;
}

span.see-all-posts {
    font-size: 1.25rem;
}

span.see-all-posts a {
    text-decoration: none;
    text-transform:lowercase;
    color: var(--color-light-blue);
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: var(--color-light-blue);
}