.epnt-post-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
    background: #151b1b;
    min-height: 46px;
    overflow: hidden;
}

.epnt-post-nav__item {
    min-width: 0;
}

.epnt-post-nav__divider {
    background: rgba(255, 255, 255, 0.35);
}

.epnt-post-nav__link {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 46px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.epnt-post-nav__link:hover,
.epnt-post-nav__link:focus {
    color: #fff;
    text-decoration: none;
}

.epnt-post-nav__link--prev {
    justify-content: flex-start;
}

.epnt-post-nav__link--next {
    justify-content: flex-end;
}

.epnt-post-nav__thumb {
    width: 86px;
    height: 46px;
    flex: 0 0 86px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.epnt-post-nav__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.epnt-post-nav__content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 26px;
    min-width: 0;
}

.epnt-post-nav__content--prev {
    justify-content: flex-start;
}

.epnt-post-nav__content--next {
    justify-content: flex-end;
}

.epnt-post-nav__title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.epnt-post-nav__arrow {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

@media (max-width: 767px) {
    .epnt-post-nav {
        grid-template-columns: 1fr;
    }

    .epnt-post-nav__divider {
        height: 1px;
    }

    .epnt-post-nav__link,
    .epnt-post-nav__thumb {
        min-height: 54px;
        height: 54px;
    }

    .epnt-post-nav__thumb {
        width: 76px;
        flex-basis: 76px;
    }

    .epnt-post-nav__content {
        padding: 0 16px;
    }
}
