.post__navigation {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin: 2.5rem 0 0;
}

.post__navigation .post__nav--link,
.blog__article .post__navigation .post__nav--link {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f4f8fd;
    border: 1px solid #e5e7ea;
    border-radius: 12px;
    text-decoration: none !important;
    color: #231F20 !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    min-width: 0;
}

.post__navigation .post__nav--link:hover,
.post__navigation .post__nav--link:focus-visible,
.blog__article .post__navigation .post__nav--link:hover,
.blog__article .post__navigation .post__nav--link:focus-visible {
    background: #fff;
    border-color: #0351a3;
    outline: none;
}

.post__navigation .post__nav--next {
    justify-content: flex-end;
    text-align: right;
}

.post__nav--spacer {
    flex: 1 1 0;
}

.post__nav--arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #00235D;
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.post__navigation .post__nav--link:hover .post__nav--arrow,
.post__navigation .post__nav--link:focus-visible .post__nav--arrow {
    background: #0351a3;
}

.post__navigation .post__nav--prev:hover .post__nav--arrow {
    transform: translateX(-3px);
}

.post__navigation .post__nav--next:hover .post__nav--arrow {
    transform: translateX(3px);
}

.post__nav--arrow i {
    font-size: 1rem;
    color: #fff;
}

.post__nav--body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.post__nav--label {
    font-family: "Gantari", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0351a3;
    margin-bottom: 0.25rem;
}

.post__nav--title {
    font-family: "Gantari", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: #00235D;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 47.9375rem) {
    .post__navigation {
        flex-direction: column;
    }
    .post__navigation .post__nav--next {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    .post__nav--spacer {
        display: none;
    }
}

.post__share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e7ea;
    border-bottom: 1px solid #e5e7ea;
}

.post__share--label {
    font-family: "Gantari", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00235D;
}

.post__share--links,
.blog__article .post__share--links {
    display: flex;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0.625rem;
}

.post__share--links li,
.blog__article .post__share--links li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}

.post__share--links li::before,
.post__share--links li::marker,
.blog__article .post__share--links li::before,
.blog__article .post__share--links li::marker {
    content: none !important;
    display: none !important;
}

.post__share--btn,
.blog__article .post__share--btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #00235D;
    color: #fff !important;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: none !important;
}

.post__share--btn i,
.blog__article .post__share--btn i {
    font-size: 1rem;
    line-height: 1;
    color: #fff !important;
}

.post__share--btn:hover,
.post__share--btn:focus-visible,
.blog__article .post__share--btn:hover,
.blog__article .post__share--btn:focus-visible {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: none !important;
    outline: none;
    text-decoration: none !important;
}

.post__share--facebook:hover,
.post__share--facebook:focus-visible { background: #1877f2; }

.post__share--twitter:hover,
.post__share--twitter:focus-visible { background: #0f0f0f; }

.post__share--linkedin:hover,
.post__share--linkedin:focus-visible { background: #0a66c2; }

.post__share--email:hover,
.post__share--email:focus-visible { background: #0351a3; }

.post__share--copy:hover,
.post__share--copy:focus-visible { background: #0351a3; }

.post__share--tooltip {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #00235D;
    color: #fff;
    font-family: "Gantari", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.post__share--tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #00235D;
}

.post__share--copy.is-copied .post__share--tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media only screen and (max-width: 47.9375rem) {
    .post__share {
        padding: 1rem;
        gap: 0.75rem;
    }
    .post__share--label {
        font-size: 0.875rem;
    }
    .post__share--btn {
        width: 40px;
        height: 40px;
    }
}
