/**
 * post-truncate.css
 * Styling untuk fitur truncate postingan (Show more / Tampilkan lebih banyak)
 */

.post-show-more-link {
    color: var(--primary-color, #0E87D8);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.15s;
}

.post-show-more-link:hover {
    text-decoration: underline;
    color: var(--primary-color, #0E87D8);
    opacity: 0.85;
}

.post-show-more-wrap {
    display: inline;
    color: var(--text-muted, #8899a6);
    font-size: 14px;
}

.post-text-full {
    white-space: pre-wrap;
    word-break: break-word;
}

.post-text-truncated {
    white-space: pre-wrap;
    word-break: break-word;
}