/* Custom Post Navigation Styles */
.mtc-post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mtc-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.mtc-nav-previous,
.mtc-nav-next {
    flex: 1;
    min-width: 200px;
}

.mtc-nav-next {
    text-align: right;
}

.mtc-nav-links a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    max-width: 100%;
}

.mtc-nav-links a:hover {
    transform: translateY(-2px);
    color: #b03a05; /* Brand color dark hover */
}

.mtc-nav-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 600;
}

.mtc-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .mtc-nav-links {
        flex-direction: column;
    }
    
    .mtc-nav-next {
        text-align: left;
        margin-top: 10px;
    }
}

/* Back Button Styles */
.mtc-back-button-container {
    padding-top: 18px;
    margin-bottom: 20px;
}

.mtc-back-button {
    
    display: inline-block;
    padding: 8px 16px;
    background-color: #e04c08;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid #e04c08;
}

.mtc-back-button:hover {
    background-color: #b03a05;
    color: #fff;
    border-color: #b03a05;
}
.type-post{
    max-width: 1200px;
    margin: auto
}
.comment-form,.comment-reply-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}