/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

.standardfirst_headline {margin-top: 25px;}

.post-navigation-wrapper,
.post-navigation,
.post-navigation a,
.prev-label,
.next-label {
    font-family: "Brother-1816", sans-serif;
}


.post-navigation-wrapper {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
}

.post-navigation a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    flex: 1;
    min-width: 0;
}

.post-navigation a:hover {
    transform: translateY(-3px);
}

.post-navigation a img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
}

.prev-lebel, .next-lebel {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 14px;
    color: #0099fb;
    margin-bottom: 4px;
}

.nav-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
	word-wrap: break-word;
    white-space: normal; 
    overflow-wrap: break-word;
	padding-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
    }

    .post-navigation a {
        flex-direction: row;
    }

    .post-navigation a img {
        width: 60px;
        height: 60px;
    }

    .nav-title {
        font-size: 14px;
    }

    .nav-label {
        font-size: 12px;
    }
}