/* ==========================================================================
   MT Careers - Styles
   ========================================================================== */

:root {
    --mt-careers-primary: #2563eb;
    --mt-careers-primary-hover: #1d4ed8;
    --mt-careers-text: #1f2937;
    --mt-careers-text-light: #6b7280;
    --mt-careers-bg-light: #f9fafb;
    --mt-careers-border: #e5e7eb;
    --mt-careers-radius: 12px;
    --mt-careers-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --mt-careers-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --mt-careers-transition: all 0.3s ease;
    --mt-careers-green: #059669;
    --mt-careers-green-bg: #ecfdf5;
    --mt-careers-purple: #7c3aed;
    --mt-careers-purple-bg: #f5f3ff;
}

/* ==========================================================================
   Tags
   ========================================================================== */

.mt-careers-tags,
.mt-careers-list-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.mt-careers-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mt-careers-tag--type {
    background: var(--mt-careers-text);
    color: #fff;
}

.mt-careers-tag--workplace {
    background: var(--mt-careers-green-bg);
    color: var(--mt-careers-green);
}

.mt-careers-tag--location {
    background: var(--mt-careers-purple-bg);
    color: var(--mt-careers-purple);
}

/* ==========================================================================
   Single Career
   ========================================================================== */

.mt-careers-header {
    margin-bottom: 32px;
}

.mt-careers-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--mt-careers-text);
    margin: 0 0 14px;
    line-height: 1.3;
}

.mt-careers-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mt-careers-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--mt-careers-text);
}

.mt-careers-meta-item i {
    color: var(--mt-careers-text);
    font-size: 13px;
}

.mt-careers-featured-img {
    margin-bottom: 32px;
    border-radius: var(--mt-careers-radius);
    overflow: hidden;
}

.mt-careers-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.mt-careers-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mt-careers-text);
}

.mt-careers-content p {
    margin-bottom: 16px;
}

.mt-careers-content h2,
.mt-careers-content h3,
.mt-careers-content h4 {
    color: var(--mt-careers-text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.mt-careers-content ul,
.mt-careers-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.mt-careers-content li {
    margin-bottom: 6px;
}

/* Sidebar */
.mt-careers-details-card {
    background: #fff;
    border: 1px solid var(--mt-careers-border);
    border-radius: var(--mt-careers-radius);
    padding: 28px;
    box-shadow: var(--mt-careers-shadow);
    position: sticky;
    top: 100px;
}

.mt-careers-details-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mt-careers-text);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mt-careers-border);
}

.mt-careers-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--mt-careers-border);
}

.mt-careers-detail-row:last-child {
    border-bottom: none;
}

.mt-careers-detail-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-careers-bg-light);
    color: var(--mt-careers-text);
    border-radius: 8px;
    font-size: 14px;
}

.mt-careers-detail-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mt-careers-text-light);
    margin-bottom: 2px;
    font-weight: 600;
}

.mt-careers-detail-value {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-careers-text);
    word-break: break-word;
}

.mt-careers-detail-value a {
    color: var(--mt-careers-text);
    text-decoration: none;
}

.mt-careers-detail-value a:hover {
    text-decoration: underline;
}

.mt-careers-salary {
    color: var(--mt-careers-green);
    font-weight: 700;
}

.mt-careers-cta {
    margin-top: 24px;
}

.mt-careers-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--mt-careers-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--mt-careers-transition);
}

.mt-careers-btn:hover {
    background: var(--mt-careers-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* ==========================================================================
   Careers Archive / Taxonomy
   ========================================================================== */

.mt-careers-archive .mt-archive-header {
    text-align: center;
    margin-bottom: 48px;
}

.mt-careers-archive .mt-archive-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--mt-careers-text);
    margin: 0 0 12px;
}

.mt-careers-archive .mt-archive-description {
    font-size: 16px;
    color: var(--mt-careers-text-light);
    max-width: 600px;
    margin: 0 auto;
}
.mt-careers-design-v1 .mt-careers-list-item:last-child {
    border-bottom: 0 none;
}
.mt-careers-list-item {
    background: #fff;
    border: 1px solid var(--mt-careers-border);
    border-radius: var(--mt-careers-radius);
    padding: 24px;
    box-shadow: var(--mt-careers-shadow);
    transition: var(--mt-careers-transition);
}

.mt-careers-list-item:hover {
    box-shadow: var(--mt-careers-shadow-lg);
    border-color: var(--mt-careers-text);
}

.mt-careers-list-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.mt-careers-list-title a {
    color: var(--mt-careers-text);
    text-decoration: none;
    transition: var(--mt-careers-transition);
}

.mt-careers-list-title a:hover {
    color: var(--mt-careers-text);
    text-decoration: underline;
}

.mt-careers-list-excerpt {
    color: var(--mt-careers-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Thumbnail */
.mt-careers-list-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mt-careers-list-thumb {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.mt-careers-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-careers-list-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.mt-careers-list-salary {
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-careers-green);
    white-space: nowrap;
}

/* Inline salary (left column) – hidden by default */
.mt-careers-list-salary--inline {
    display: none;
}

.mt-careers-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--mt-careers-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--mt-careers-transition);
}

.mt-careers-list-btn:hover {
    background: var(--mt-careers-primary-hover);
    color: #fff;
}

/* Pagination */
.mt-careers-archive .mt-cpt-pagination {
    margin-top: 20px;
    text-align: center;
}

.mt-careers-archive .mt-cpt-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mt-careers-archive .mt-cpt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--mt-careers-border);
    border-radius: 8px;
    color: var(--mt-careers-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--mt-careers-transition);
}

.mt-careers-archive .mt-cpt-pagination .page-numbers:hover,
.mt-careers-archive .mt-cpt-pagination .page-numbers.current {
    background: var(--mt-careers-text);
    border-color: var(--mt-careers-text);
    color: #fff;
}

.mt-careers-archive .mt-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--mt-careers-text-light);
    font-size: 16px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .mt-careers-sidebar {
        margin-top: 30px;
    }

    .mt-careers-details-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .mt-careers-title {
        font-size: 26px;
    }

    .mt-careers-archive .mt-archive-title {
        font-size: 28px;
    }

    .mt-careers-list-actions {
        justify-content: flex-start;
        margin-top: 16px;
    }

    .mt-careers-meta-row {
        gap: 12px;
    }
}

/* ==========================================================================
   Related Section
   ========================================================================== */

.mt-careers-single .mt-related-section {
    background: var(--mt-careers-bg-light);
    padding: 60px 0;
}

.mt-careers-single .mt-related-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--mt-careers-text);
    margin: 0 0 32px;
    text-align: center;
}

/* ==========================================================================
   Design V1 – Clean List with Salary Ribbon
   ========================================================================== */

.mt-careers-design-v1 .mt-careers-list-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mt-careers-border);
    border-radius: 0;
    box-shadow: none;
    padding: 28px 0;
}

.mt-careers-design-v1 .mt-careers-list-item:first-child {
    border-top: 1px solid var(--mt-careers-border);
}

.mt-careers-design-v1 .mt-careers-list-item:hover {
    box-shadow: none;
    border-color: var(--mt-careers-border);
}

/* Title */
.mt-careers-design-v1 .mt-careers-list-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}

.mt-careers-design-v1 .mt-careers-list-title a {
    color: var(--mt-careers-text);
}

.mt-careers-design-v1 .mt-careers-list-title a:hover {
    color: var(--mt-careers-text);
    text-decoration: underline;
}

/* V1: Actions column – vertical stack: button on top, salary below */
.mt-careers-design-v1 .mt-careers-list-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* V1: hide inline salary (left column) */
.mt-careers-design-v1 .mt-careers-list-salary--inline {
    display: none;
}

/* V1: Button – ribbon clip-path, most prominent */
.mt-careers-design-v1 .mt-careers-list-btn {
    background: var(--mt-careers-text);
    color: #fff;
    border-radius: 0;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}

.mt-careers-design-v1 .mt-careers-list-btn:hover {
    background: var(--mt-careers-primary);
    color: #fff;
}

/* V1: Salary below button – subtle text style */
.mt-careers-design-v1 .mt-careers-list-actions .mt-careers-list-salary {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-careers-text-light);
}

/* Grid card V1 */
.mt-careers-design-v1 .mt-careers-grid-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mt-careers-border);
    border-radius: 0;
    box-shadow: none;
    padding: 28px 0;
}

.mt-careers-design-v1 .mt-careers-grid-card:hover {
    box-shadow: none;
}

.mt-careers-design-v1 .mt-careers-grid-title {
    font-size: 22px;
    font-weight: 700;
}

.mt-careers-design-v1 .mt-careers-grid-footer {
    flex-direction: column;
    align-items: flex-start;
}

.mt-careers-design-v1 .mt-careers-grid-footer .mt-careers-list-btn {
    background: var(--mt-careers-text);
    color: #fff;
    border-radius: 0;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}

.mt-careers-design-v1 .mt-careers-grid-footer .mt-careers-list-btn:hover {
    background: var(--mt-careers-primary);
}

.mt-careers-design-v1 .mt-careers-grid-footer .mt-careers-list-salary {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-careers-text-light);
}

/* ==========================================================================
   Design V2 – Minimal
   ========================================================================== */

/* List item */
.mt-careers-design-v2 .mt-careers-list-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mt-careers-border);
    border-radius: 0;
    box-shadow: none;
    padding: 40px 0;
}

.mt-careers-design-v2 .mt-careers-list-item:first-child {
    border-top: 1px solid var(--mt-careers-border);
}

.mt-careers-design-v2 .mt-careers-list-item:last-child {
    border-bottom: 0 none;
}

.mt-careers-design-v2 .mt-careers-list-item:hover {
    box-shadow: none;
    border-color: var(--mt-careers-border);
}

/* Hide thumbnail */
.mt-careers-design-v2 .mt-careers-list-thumb {
    display: none;
}

/* Reorder: title → excerpt → meta */
.mt-careers-design-v2 .mt-careers-list-info {
    display: flex;
    flex-direction: column;
}

.mt-careers-design-v2 .mt-careers-list-title {
    order: 1;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
}

.mt-careers-design-v2 .mt-careers-list-title a {
    color: var(--mt-careers-text);
}

.mt-careers-design-v2 .mt-careers-list-title a:hover {
    color: var(--mt-careers-text);
    text-decoration: underline;
}

.mt-careers-design-v2 .mt-careers-list-excerpt {
    order: 2;
    font-size: 18px;
    color: var(--mt-careers-text);
    margin: 0 0 20px;
    line-height: 1.5;
}

.mt-careers-design-v2 .mt-careers-meta-row {
    order: 3;
    gap: 10px;
}

/* Meta items as rounded pills with border */
.mt-careers-design-v2 .mt-careers-meta-item {
    border: 1.5px solid var(--mt-careers-text);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
}

.mt-careers-design-v2 .mt-careers-meta-item i {
    font-size: 13px;
}

/* Actions column – align top */
.mt-careers-design-v2 .mt-careers-list-actions {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

/* Apply button – text only with diagonal arrow */
.mt-careers-design-v2 .mt-careers-list-btn {
    background: transparent;
    color: var(--mt-careers-text);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    text-transform: none;
    white-space: nowrap;
}

.mt-careers-design-v2 .mt-careers-list-btn:hover {
    background: transparent;
    color: var(--mt-careers-primary);
}

.mt-careers-design-v2 .mt-careers-list-btn i {
    transform: rotate(-45deg);
    font-size: 22px;
}

/* Hide salary */
.mt-careers-design-v2 .mt-careers-list-salary {
    display: none;
}

/* Grid card V2 */
.mt-careers-design-v2 .mt-careers-grid-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mt-careers-border);
    border-radius: 0;
    box-shadow: none;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.mt-careers-design-v2 .mt-careers-grid-card:hover {
    box-shadow: none;
}

.mt-careers-design-v2 .mt-careers-grid-card .mt-careers-list-thumb {
    display: none;
}

.mt-careers-design-v2 .mt-careers-grid-title {
    order: 1;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
}

.mt-careers-design-v2 .mt-careers-grid-card .mt-careers-list-excerpt {
    order: 2;
    font-size: 16px;
    color: var(--mt-careers-text);
    margin: 0 0 16px;
}

.mt-careers-design-v2 .mt-careers-grid-card .mt-careers-meta-row {
    order: 3;
    gap: 10px;
    margin-bottom: 16px;
}

.mt-careers-design-v2 .mt-careers-grid-card .mt-careers-meta-item {
    border: 1.5px solid var(--mt-careers-text);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
}

.mt-careers-design-v2 .mt-careers-grid-footer {
    order: 4;
}

.mt-careers-design-v2 .mt-careers-grid-footer .mt-careers-list-btn {
    background: transparent;
    color: var(--mt-careers-text);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    text-transform: none;
}

.mt-careers-design-v2 .mt-careers-grid-footer .mt-careers-list-btn:hover {
    background: transparent;
    color: var(--mt-careers-primary);
}

.mt-careers-design-v2 .mt-careers-grid-footer .mt-careers-list-btn i {
    transform: rotate(-45deg);
}

.mt-careers-design-v2 .mt-careers-grid-footer .mt-careers-list-salary {
    display: none;
}

/* ==========================================================================
   Design V3 – Card Grid
   ========================================================================== */

/* Outer background */
.mt-careers-design-v3 .mt-careers-grid-row {
    gap: 0;
}

/* Card item wrapper */
.mt-careers-v3-item {
    padding: 15px;
    margin-bottom: 0;
}

/* The card */
.mt-careers-v3-card {
    background: #fff;
    border: 1px solid var(--mt-careers-border);
    border-radius: 16px;
    padding: 30px 28px 28px;
    transition: var(--mt-careers-transition);
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mt-careers-v3-card:hover {
    box-shadow: var(--mt-careers-shadow-lg);
    border-color: var(--mt-careers-text);
}

/* Card header: title + arrow link */
.mt-careers-v3-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
}

.mt-careers-v3-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    flex: 1;
}

.mt-careers-v3-title a {
    color: var(--mt-careers-text);
    text-decoration: none;
    transition: var(--mt-careers-transition);
}

.mt-careers-v3-title a:hover {
    color: var(--mt-careers-text);
    text-decoration: underline;
}

/* Arrow link (top-right) */
.mt-careers-v3-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--mt-careers-bg-light);
    color: var(--mt-careers-text);
    font-size: 14px;
    text-decoration: none;
    transition: var(--mt-careers-transition);
    flex-shrink: 0;
}

.mt-careers-v3-arrow i {
    transform: rotate(-45deg);
    transition: var(--mt-careers-transition);
}

.mt-careers-v3-arrow:hover {
    background: var(--mt-careers-text);
    color: #fff;
}

.mt-careers-v3-arrow:hover i {
    transform: rotate(0deg);
}

/* Divider */
.mt-careers-v3-divider {
    height: 1px;
    background: var(--mt-careers-border);
    margin: 18px 0;
}

/* 2x2 meta grid */
.mt-careers-v3-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
}

.mt-careers-v3-meta-cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mt-careers-v3-meta-cell > i {
    font-size: 15px;
    color: var(--mt-careers-text-light);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.mt-careers-v3-meta-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mt-careers-text-light);
    font-weight: 600;
    margin-bottom: 3px;
}

.mt-careers-v3-meta-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-careers-text);
    line-height: 1.3;
}

/* Apply button – full width, dark, rounded pill */
.mt-careers-v3-apply-btn:visited,
.mt-careers-v3-apply-btn {
    display: block;
    width: 100%;
    background: var(--mt-careers-text);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--mt-careers-transition);
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.mt-careers-v3-apply-btn:hover {
    background: var(--mt-careers-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* Posted date below card */
.mt-careers-v3-posted {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--mt-careers-text-light);
    margin-top: 16px;
    text-transform: uppercase;
}


@media (max-width: 767px) {
    .mt-careers-v3-meta-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mt-careers-v3-title {
        font-size: 18px;
    }

    .mt-careers-v3-item {
        padding: 10px;
    }
}

/* ==========================================================================
   Post Navigation (Prev / Next)
   ========================================================================== */

.mt-post-nav {
    padding: 0;
}

.mt-post-nav-inner {
    display: flex;
    gap: 24px;
    padding: 40px 0;
    border-top: 1px solid var(--mt-careers-border, #e5e7eb);
}

a.mt-post-nav-link,
span.mt-post-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
    padding: 24px 28px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a.mt-post-nav-link:hover {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.mt-post-nav-next {
    text-align: right;
}

.mt-post-nav-arrow {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1f2937;
    border-radius: 50%;
    font-size: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a.mt-post-nav-link:hover .mt-post-nav-arrow {
    background: #1f2937;
    border-color: #1f2937;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mt-post-nav-prev:hover .mt-post-nav-arrow {
    transform: translateX(-4px);
}

.mt-post-nav-next:hover .mt-post-nav-arrow {
    transform: translateX(4px);
}

.mt-post-nav-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.mt-post-nav-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.mt-post-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    transition: color 0.3s ease;
}

a.mt-post-nav-link:hover .mt-post-nav-title {
    color: #111827;
}

@media (max-width: 767.98px) {
    .mt-post-nav-inner {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
    }

    a.mt-post-nav-link {
        padding: 18px 20px;
    }

    .mt-post-nav-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 14px;
    }

    .mt-post-nav-title {
        font-size: 14px;
    }
}
