﻿.post-nav-wrap .post-nav-head {
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px rgb(175 175 175 / 55%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #5c724c;
    font-family: "Oswald", "Arial", "Helvetica", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.post-nav-wrap .post-nav-head .fa-angle-double-right {
    color: #5c724c;
    font-size: 20px;
    line-height: 1;
}
.post-nav-wrap .post-nav-head a{
    transition: all 0.15s ease;
    cursor: pointer;
}
.post-nav-wrap .post-nav-head a:hover {
    color: #101010;
}
.post-nav-wrap .post-nav-head a.post-nav-search {
    padding: 3px 12px 5px 9px;
    border: 1px solid #5c724c;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 16px;
    line-height: 20px;
}
.post-nav-wrap .post-nav-head a.post-nav-search:hover {
    border-color: #101010;
}
.post-nav-wrap .post-nav-head a.post-nav-search .fa-search {
    font-size: 16px;
    line-height: 1;
}

.post-msg-wrap.message .message-content {
    color: #101010;
    font-family: "Lato", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    min-height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #D2D2D2;
    border-radius: 16px;
    text-align: center;
    max-width: 584px;
    margin: 0 auto;
}
.post-msg-wrap.message .message-content .post-msg-btn {
    background-color: #4B6719;
    border: 1px solid #4B6719;
    border-radius: 21px;
    padding: 9px 15px;
    min-width: 160px;
    margin-top: 16px;
    transition: all 0.3s linear;
    display: inline-block;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.16px;
}
.post-nav-title {
    color: #101010;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 30px;
}
.post-nav-title strong {
    color: #4B6719;
    display: inline-block;
    margin-right: 3px;
}

@media (max-width: 767px) {
    .post-nav-wrap .post-nav-head {
        justify-content: center;
    }

    .post-msg-wrap.message .message-content .post-msg-btn {
        font-size: 14px;
        line-height: 20px;
        padding: 7px 15px;
    }
}
@media (max-width: 479px) {
    .post-nav-wrap .post-nav-head {
        font-size: 16px;
        line-height: 24px;
    }
    .post-nav-title {
        font-size: 16px;
        line-height: 24px;
    }
}