/* blog.css — blog-specific styles (shared styles in styles.css) */

.post-card {
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.post-card:hover {
    border-color: var(--purple-border-strong);
}

.post-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 8px;
}

.post-content {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.post-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--blue-link);
    text-decoration: none;
    padding: 2px 8px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-border);
    border-radius: 3px;
    margin-bottom: 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.post-link:hover {
    color: var(--blue-link-hover);
    background: rgba(126, 184, 218, 0.12);
    border-color: rgba(126, 184, 218, 0.25);
}

.post-date {
    font-family: var(--font-heading);
}
