@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap);

#content_cont{
    font-family: 'Montserrat', sans-serif !important;
}

.section-title{padding:0px; margin-top:0px; }

.section-title-careers{
    margin-top:2rem;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
}

.section-blurb-careers{
    /*margin: 10px 90px 50px;*/
    margin:10px 30px 15px;
    line-height: 1.5rem;
    font-weight:400;
    font-size:0.86em;
    font-family: 'Montserrat', sans-serif !important;
    color:#000000;
    text-align: center;
}


h4 {
    font-size: 1.25em;
}

.float-right {
    float: right;
}

.highlight {
    text-align: center;
}

.highlight p {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.page-banner {
    width: 100%;
}

.main-content {
    display: flex;
    width: 100%;
}

.podcast-main {
    flex-grow: 1;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
}

.host {
    width: 47%;
    flex-shrink: 0;
}

.host p {
    margin: 0;
}

.host img {
    width: 120px;
    float: right;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 3px 10px 0px rgba(164, 151, 177, 0.9);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(214, 208, 214, 0.61);
    color: white;
    border: none;
    _padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 3.5em;
    aspect-ratio: 1
}

.nav-btn:hover {
    background-color: rgba(235, 230, 235, 0.863);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

.podcasts {
    display: flex;
    _flex-wrap: wrap;
    _justify-content: flex-start;
    _gap: 1em;
    transition: transform 0.5s ease-in-out;
}

.podcasts>.episode {
    _width: 33%;
    flex: 0 0 32%;
    padding: 0 1em 0 0;
}


.episode>a {
    display: block;
    text-decoration: none;
    padding-bottom: 1em;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 0.25em 0.25em 1em 0.25em;
}

.episode-img {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.episode-img::before {
    display: block;
    content: "";
    background: url("https://www.bop.gov/videos/img/icon_play.png");
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 75%;
}

.podcasts .episode-img::before {
    width: 40px;
    height: 40px;
}

.episode a:hover {
    border-color: rgb(192, 192, 192);
}

.episode a:hover .episode-img::before {
    opacity: 100%;
}

.episode p {
    margin: 0.35em 0 0 5px;
}

.episode img {
    width: 100%;
    border-radius: 5px;
    _object-fit: cover;
}

#featured-podcast .episode img {
    _height: 235px;
}

.podcasts .episode img {
    _height: 153px;
}

.episode-title {
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
}

.episode-info {
    font-weight: normal;
    font-size: 0.8em;
    color: #252525;
}

.episode-info>span:not(:last-child):after {
    content: "\2022";
    margin-left: 0.65em;
    margin-right: 0.65em;
}

.more-podcasts {
    text-align: right;
}

.follow {
    margin-top: 3em;
    text-align: center;
}

.follow h4 {
    margin-left: auto;
    margin-right: auto;
}

.media-length {
    position: absolute;
    bottom: 3%;
    right: 10px;
    padding: 5px;
    background-color: #25252571;
    border-radius: 5px;
    color: #fff;
    font-size: 0.85em;
}

@media screen and (width <=768px) {
    .main-content {
        display: block;
    }

    .podcast-main,
    .host {
        width: 100%;
    }
}

@media screen and (width <=500px) {
    .podcasts {
        flex-wrap: wrap;
    }

    .podcasts .espisode {
        width: 45%;
    }
}