.gh-related {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.gh-related-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.gh-related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gh-related-item h4 {
    margin: 0;
    font-size: 1rem;
}

.gh-related-item time {
    font-size: 0.8rem;
    color: #888;
}
.gh-related-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.gh-related-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.gh-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gh-related-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.2s ease;
}

.gh-related-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gh-related-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.gh-related-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.gh-related-content {
    padding: 20px 18px; /* 原来是 16px */
}

.gh-related-post-title {
    font-size: 1.1rem; /* 原来是 1rem */
    font-weight: 600;   /* 加强字重 */
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.gh-related-time {
    font-size: 0.9rem; /* 原来是 0.8rem */
    color: #777;       /* 比 #888 略深一点 */
}

.lm-foot {
    padding: 24px 16px;
    background: none;
    text-align: center;
    font-size: 1.1rem;
    color: #888;
}

.lm-foot-inner {
    max-width: 100%;
    margin: 0 auto;
    white-space: normal;
    overflow: visible;
}

.lm-footer-text {
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
}
@media (max-width: 480px) {
    .lm-foot {
        font-size: 0.9rem;
    }
}