.editorial-content-nav {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.editorial-post-nav {
    margin-bottom: 2.25rem;
}

.editorial-post-nav__link,
.editorial-post-nav__link:hover,
.editorial-post-nav__link:focus,
.editorial-post-nav__link:visited {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fafafa;
    color: #222;
    text-decoration: none;
    transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.editorial-post-nav__link:hover,
.editorial-post-nav__link:focus {
    color: #111;
    text-decoration: none;
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.editorial-post-nav__link--next {
    text-align: right;
    align-items: flex-end;
}

.editorial-post-nav__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--theme-color, #222);
    opacity: 0.88;
}

.editorial-post-nav__label .fa {
    font-size: 0.95rem;
    vertical-align: -1px;
}

.editorial-post-nav__title {
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
}

.editorial-post-nav__link:hover .editorial-post-nav__title,
.editorial-post-nav__link:focus .editorial-post-nav__title {
    color: var(--theme-color, #222);
}

.editorial-related {
    margin-top: 0.5rem;
}

.editorial-related__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.editorial-related__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.editorial-related__heading {
    margin: 0;
    padding-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #222;
    position: relative;
}

.editorial-related__heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 52px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--theme-color, #222);
    opacity: 0.45;
    border-radius: 999px;
}

.editorial-related__grid {
    margin-top: 0.35rem;
}

.editorial-related__card {
    height: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.editorial-related__card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.editorial-related__image {
    display: block;
    overflow: hidden;
}

.editorial-related__image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.editorial-related__card:hover .editorial-related__image img {
    transform: scale(1.03);
}

.editorial-related__body {
    padding: 1rem 1.15rem 1.2rem;
}

.editorial-related__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.55rem;
    line-height: 1.45;
    text-transform: none;
}

.editorial-related__title a,
.editorial-related__title a:visited {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.editorial-related__title a:hover,
.editorial-related__title a:focus {
    color: var(--theme-color, #222);
    text-decoration: none;
}

.editorial-related__body p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .editorial-post-nav__link--next {
        text-align: left;
        align-items: flex-start;
        margin-top: 0.75rem;
    }

    .editorial-related__heading {
        font-size: 1.2rem;
    }
}
