strong {
    font-weight: 400;
}
.breadcrumbs {
    margin: 4em 0em 1em 0em;
}

.popover {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 1000;
}

.popover.visible {
    opacity: 1;
    transform: translateY(0px);
}

.popover.hidden {
    opacity: 0;
    transform: translateY(0px);
}

.audio {
    text-decoration: none;
}

section.preview,
section.header {
    padding: 20px calc((100% - 1190px)/ 2);
}

section.header {
    margin-top: 50px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

section.header div {
    width: 50%;
    text-align: left;
}

section.header div p {
    color: #292929;
    font-size: 18px;
}

section.preview {
    background-color: white;
}

section.preview h2.category-title {
    padding: 0.5em;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #32B4A6;
    text-align: center;
}

section.header {
    text-align: center;
}

section.header h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #32B4A6;
}

.preview .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.preview .wrapper .post-preview {
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
    width: 31%;
    background-color: #EFEFF4;
    border-radius: 8px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.20);
    min-height: 545px;
    position: relative;
}

.preview .wrapper .post-preview .category {
    display: inline-block;
    padding: 0.2em 0.5em;
    background-color: #86A0AE;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.preview .wrapper .post-preview .image {
    display: block;
    height: 200px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 8px 8px 0px 0px;
    position: relative;
}

.preview .wrapper .post-preview .image:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("/wp-content/themes/angelsense/images/player.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    width: 80px;
    height: 80px;
}

.preview .wrapper .post-preview .info {
    padding: 1em;
}

.preview .wrapper .post-preview .info .action {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.preview .wrapper .post-preview .info .action .audio {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #32b4a6;
    margin: 0;
    padding: 1em;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0px 0px 8px 8px;
}

.preview .wrapper .post-preview.playing .info .action .audio {
    background-color: #F34023;
}

.preview .wrapper .post-preview .info h2 {
    margin-top: 0.5em;
    color: #292929;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    min-height: 60px;
}

.preview .wrapper .post-preview .info p {
    color: #292929;
}

.preview .wrapper .post-preview .info .date {
    display: block;
    margin: 1em 0em;
    color: #5F5F5F;
    font-weight: 600;
}

.preview .wrapper .post-preview .info .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 1em 0em;
}

.preview .wrapper .post-preview .info .tags li {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0.2em 0.6em;
    background-color: white;
    color: #858787;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 400;
    line-height: 20px;
}

.preview .wrapper .post-preview .info a {
    display: block;
    margin-top: 0.5em;
    text-decoration: underline;
    color: #32b4a6;
    font-weight: 600;
}

.preview .wrapper .post-preview .info a.title-link {
    text-decoration: none;
}

.preview .wrapper .post-preview .info a.category {
    text-decoration: none;
    display: inline-block;
    color: white;
}

.preview .wrapper .post-preview .info .audio {
    position: relative;
    border: none;
    margin-right: 25px;
}

.preview .wrapper .post-preview .info .audio span {
    position: relative;
    font-weight: 500;
}

.preview .wrapper .post-preview .info .audio span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url(/wp-content/themes/angelsense/images/play2.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 25px;
    height: 25px;
    z-index: 1000;
    margin-left: 10px;
    border: 2px solid white;
    border-radius: 999px;
    margin-left: 18px;
}

.preview .wrapper .post-preview.playing .info .audio span:after {
    background-image: url(/wp-content/themes/angelsense/images/pause1.svg);
}

section.main-blog .post a.audio:after {
    left: 0;
}

.preview .wrapper .post-preview .info .share-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1em;
    position: relative;
}

.preview .wrapper .post-preview .info .share-links a {
    margin-right: 10px;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.preview .wrapper .post-preview .info .share-links a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,  -50%);
    transform: translate(-50%,  -50%);
}