.post-discovery {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    background: #fff;
}

.post-discovery-title {
    margin: 0 0 .75rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.post-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.post-share-status {
    min-height: 1.25rem;
    margin-top: .5rem;
    color: #495057;
    font-size: .875rem;
}

.post-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem .9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-link-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.5rem;
    padding: .55rem .7rem;
    border: 1px solid #edf0f2;
    border-radius: .35rem;
    color: #212529;
    text-decoration: none;
}

.post-link-grid a:hover,
.post-link-grid a:focus {
    border-color: #8aa9ff;
    background: #f7f9ff;
    color: #123a9c;
}

.post-link-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-link-hit {
    flex: 0 0 auto;
    margin-left: .6rem;
    color: #6c757d;
    font-size: .75rem;
}

@media (max-width: 767.98px) {
    .post-link-grid {
        grid-template-columns: 1fr;
    }
}
