.podcast-header {
    display: flex;
    align-items: center;
    gap: 8px;   
}
.post-hero {
    padding: 176px 0 0 0;
}

.post-hero .hero-heading {
    margin-bottom: 66px;
}

.post-hero .hero-info {
    margin-bottom: 34px;
}

.post-hero .hero-img {
    margin-bottom: 48px;
}

.post-hero .hero-author {
    margin-bottom: 49px;
}

@media only screen and (max-width: 767px) {

    .post-hero {
        padding: 120px 0 0 0;
    }

    .post-hero .hero-heading {
        margin-bottom: 40px;
    }

    .post-hero .hero-info {
        margin-bottom: 27px;
    }

    .post-hero .hero-img {
        margin-top: 27px;
        margin-bottom: 40px;
    }

    .post-hero .hero-author {
        margin-bottom: 32px;
    }

}

.social-sharing-parent {
    position: relative;
    display: inline-block;
}

.social-sharing-toggle {
    cursor: pointer;
}

.social-sharing-toggle path {
    fill: #00FFEF;
}

.social-sharing-parent.open .social-sharing-toggle path,
.social-sharing-toggle:hover path {
    fill: #12B2A8;
}

.social-sharing-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    right: -6px;
    background: hsla(0,0%,100%,.1);
    padding: 6px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-item