:root {
    --dk-blue: #0D1E32;
    --lt-blue: #0095FF;
    --sky-blue: #BBE2FF;
}
#wrapper {
    overflow: unset;
    background-color: #F7F8FA;
    color: #363D45;
}
.container-fluid {
    max-width: 1360px;
}
.btn-default:not(:hover) {
    color: #ffffff;
    background-color: var(--lt-blue);
    border-color:var(--lt-blue);
}
.btn-default-outline:not(:hover) {
    color: var(--lt-blue);
    background-color: rgba(0,0,0,0);
    border-color: var(--lt-blue);
}
.btn-default-outline:hover {
    color: #FFF;
    background-color: var(--lt-blue);
    border-color: var(--lt-blue);
}

.podcasts-banner {
    position: relative;
    z-index: 1;
    padding: 44px 0 160px;
    background-color: var(--dk-blue);
    background-image: url('https://cloudinary-marketing-res.cloudinary.com/image/upload/v1730751169/Newsroom-hero-bckg.svg') !important;
    background-size: cover;
    background-position: right center;
    color: #FFF;
}
@media (min-width: 992px) {
    .podcasts-banner.circle::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        top: calc(100% - 270px);
        right: -300px;
        width: 568px;
        height: 568px;
        background-image: url('https://cloudinary-marketing-res.cloudinary.com/image/upload/f_auto,q_auto/v1689866839/digital-first-circle.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}
.podcasts-banner .pretitle {
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
}
.podcasts-banner .pretitle .parent {
    color: #355A90;
}
.podcasts-banner .meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    margin-top: 45px;
}
.podcasts-banner .meta a {
    color: #FFF;
    line-height: 1;
    display: block;
}
.podcasts-banner .meta .episode {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
}
.podcasts-banner .meta .social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.podcasts-banner .meta .social .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 0 28px;
    margin-right: 10px;
}
.podcasts-banner h1 {
    color: inherit;
    font-size: 61px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 15px;
}
.podcasts-banner .text p {
    font-size: 21px;
    line-height: 1.5;
}

.podcasts-featured {
    position: relative;
    z-index: 2;
    margin-top: -110px;
}
.podcasts-featured .wrapper {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}
.podcasts-featured .image {
    flex: 1 0 auto;
    width: 65%;
}
.podcasts-featured .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcasts-featured .text {
    flex: 1 0 auto;
    width: 35%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--sky-blue);
}
.podcasts-featured .text h3 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 300;
}
.podcasts-featured .text .btn {
    margin-top: auto;
    padding: 7px 40px;
}

.podcasts-channels {
    margin: 20px 0;
}
.podcasts-channels .wrapper {
    display: flex;
    gap: 20px;
}
.podcasts-channels .single-channel {
    flex: 1 1 auto;
    background-color: #E1EDFF;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.podcasts-channels .single-channel .image {
    width: 240px;
    height: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.podcasts-channels .single-channel .text {
    text-align: center;
    max-width: 420px;
}
.podcasts-channels .single-channel .text p {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #27292F;
}
.podcasts-channels .single-channel .text .btn {
    color: var(--lt-blue);
    font-size: 16px;
    letter-spacing: 0;
}

.podcasts.archive {
    padding: 60px 0 80px;
}

.podcasts-header {
    margin-bottom: 32px;
}
.podcasts-header h2 {
    font-weight: 300;
    font-size: 47px;
    line-height: 1.2;
    margin-bottom: 32px;
}
.podcasts-header .filter-row {
    --filter-gap: 16px;
    display: flex;
    gap: var(--filter-gap);
}
.podcasts-header .filter-row .form-control {
    border: solid 2px var(--lt-blue);
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    height: auto;
    padding: 10px 24px;
}
.podcasts-header .filter-row .search {
    display: flex;
}
.podcasts-header .filter-row .search .input-group-text {
    background-color: var(--lt-blue);
    color: #FFF;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.podcasts-header .filter-row #filters {
    display: flex;
    gap: var(--filter-gap);
}
.podcasts-header .filter-row .button {
    background-color: var(--sky-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 400;
    padding: 12px 24px;
}
.podcasts-header .filter-row .button:hover,
.podcasts-header .filter-row .button.is-checked {
    background-color: var(--lt-blue);
    color: #FFF;
}

.podcasts-feed .element-item .item-wrapper {
    display: flex;
    background-color: #FFF;
    border-radius: 4px;
    padding: 16px;
    gap: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all .25s ease-in-out;
}
.podcasts-feed .element-item:hover .item-wrapper {
    background-color: #E7F5FF;
    transform: translateX(18px);
}
.podcasts-feed .element-item .meta {
    flex: 1 0 auto;
    width: 86px;
}
.podcasts-feed .element-item .meta p {
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    color: #77808B;
}
.podcasts-feed .element-item .meta p:last-child {
    margin-bottom: 0;
}
.podcasts-feed .element-item .content {
    padding-right: 16px;
}
.podcasts-feed .element-item .content h4 {
    line-height: 1.5;
    font-weight: 400;
    color: inherit;
}
.podcasts-feed .element-item .content .text {
    margin: 0;
}


#contact-us {
    background-image: url('https://cloudinary-marketing-res.cloudinary.com/image/upload/v1736894672/Newsroom-cta-bckg.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 72px 0;
    text-align: center;
    color: #FFF;
}
#contact-us h2 {
    font-size: 47px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 16px;
    color: #FFF;
}
#contact-us .contact-content {
    max-width: 450px;
    margin: 0 auto;
}
#contact-us .btn.btn-default {
    margin-top: 16px;
}



.podcasts.single {
    position: relative;
    z-index: 2;
    margin-top: -110px;
    padding-bottom: 110px;
}
.podcasts.single a {
    color: var(--lt-blue);
}
.podcasts.single .video-wrapper {
    margin-bottom: 30px;
    line-height: 0;
    border-radius: 8px;
    overflow: hidden;
}
.podcasts.single .transcript-btn {
    padding: 5px 28px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.podcasts.single .transcript-btn::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 8.4L0 7L7 0L14 7L12.6 8.4L7 2.825L1.4 8.4Z' fill='%230095FF'/%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .25s ease-in-out;
}
.podcasts.single .transcript-btn[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.podcasts.single .transcript-btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 8.4L0 7L7 0L14 7L12.6 8.4L7 2.825L1.4 8.4Z' fill='%23FFF'/%3E%3C/svg%3E");
}
.podcasts.single .alt-links {
    display: flex;
    gap: 6px;
    margin-top: 48px;
}
.podcasts.single .alt-links .link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}


@media (max-width: 991px) {
    .podcasts-banner h1 {
        font-size: 48px;
    }
    .podcasts-featured .image {
        width: 33%;
    }
    .podcasts-featured .text h3 {
        font-size: 26px;
    }
    .podcasts-header .filter-row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .podcasts-featured .wrapper {
        flex-direction: column;
    }
    .podcasts-featured .image {
        width: 100%;
    }
    .podcasts-featured .text {
        width: 100%;
    }
    .podcasts-channels .wrapper {
        flex-direction: column;
    }
    .podcasts-header .filter-row #filters {
        flex-wrap: wrap;
    }
    .podcasts-feed .element-item .item-wrapper {
        flex-direction: column;
    }
}