.blog-podcasts-list_wrapper {
    margin: 1.875rem auto;
    max-width: 78.125rem;
}

.blog-podcasts-list__items {
    padding: 1.25rem 0;
    border-bottom: 1px solid #F4F4F4;
    position: relative;
}

.blog-podcasts-list__items:last-child {
    border-bottom: 1px solid transparent;
}

.blog-podcasts-button__wrapper {
    text-align: center;
    margin-bottom: 3.125rem;
}

.blog-podcasts-list__items-wrapper {
    display: flex;
    justify-content: space-between;
}

.blog-podcasts-list__info-group {
    display: flex;
    overflow: hidden;
    flex: 1;
}

.blog-podcasts-list__info-image {
    position: relative;
    min-width: 4.0625rem;
    width: 4.0625rem;
    height: 4.0625rem;
    margin-right: 1.125rem;
    border-radius: 5px;
    overflow: hidden;
}

.blog-podcasts-list__info-image:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    transition: 0.3s;
}

.blog-podcasts-list__info-image:after {
    content: "\f04b";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 10rem;
    opacity: 0;
    transition: 0.3s;
}

.blog-podcasts-list__info-image:hover:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.blog-podcasts-list__info-image:hover:after {
    font-size: 1rem;
    opacity: 1;
}

.blog-podcasts-list__info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-podcasts-list__info-content .h6 {
    margin-bottom: 0;
    line-height: 1.75rem;
}

.blog-podcasts-list__info-content a.h6:hover {
    color: var(--font-color-hex);
    text-decoration: none;
}

.blog-podcasts-list__info-content p {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
}

.blog-podcasts-list__info-content .info-published-text {
    color: #9B9C9D;
    margin-bottom: 0;
}

.blog-podcasts-list__icon-group {
    min-width: 6.25rem;
    flex: 0;
    display: flex;
}

.blog-podcasts-dropdown-menu {
    padding: 0.625rem 0;
    box-shadow: 0px 3px 15px #00000019;
    border-color: transparent;
    border-radius: 5px;
}

.blog-podcasts-dropdown-menu .dropdown-item {
    padding: 0.625rem 1.25rem;
    display: flex;
    align-items: center;
}

.blog-podcasts-dropdown-menu .dropdown-item span {
    margin-left: 0.625rem;
}

.blog-podcasts-dropdown-menu .dropdown-item:active,
.blog-podcasts-dropdown-menu .dropdown-item.active {
    background-color: var(--background-color-hex);
}

.blog-podcasts-dropdown-menu .dropdown-item:active svg path,
.blog-podcasts-dropdown-menu .dropdown-item.active svg path {
    fill: #fff;
}

/* buttons */

.blog-podcasts-button {
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0;
    border-radius: 5px;
    transition: all .15s ease-in-out;
}

.blog-podcasts-button svg path {
    transition: all .15s ease-in-out;
    fill: #9B9C9D;
}

.blog-podcasts-button:hover {
    background-color: #f0f0f0;
}

.blog-podcasts-button:hover svg path {
    fill: var(--font-color-hex);
}

.blog-podcasts-button:focus {
    background-color: #f0f0f0;
    outline: none;
}

.blog-podcasts-button:focus svg path {
    fill: var(--font-color-hex);
}

.btn-load-more {
    cursor: pointer;
    padding: 0.5625rem 1.125rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: .25rem;
    background-color: var(--background-color-hex);
    border-color: var(--background-color-hex);
}

.btn-load-more:hover {
    color: #fff;
    background-color: var(--background-color-hex);
    border-color: var(--background-color-hex);
    opacity: 0.8;
}

.btn-load-more:focus,
.btn-load-more.focus {
    outline: none;
}
