/* Blog Styles - Posts, Post Content, Cards */

.post {
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    transition: opacity 0.2s;
}

.post:last-child {
    border-bottom: none;
}

.post:hover {
    opacity: 0.9;
}

.post-title {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.post-title a {
    color: var(--accent-color);
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}

.post-meta {
    font-size: 0.85em;
    opacity: 0.6;
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 1em;
    opacity: 0.8;
    line-height: 1.7;
}

.post-card {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.post-authors {
    font-size: 0.8em;
    opacity: 0.6;
    font-weight: 300;
    line-height: 1.4;
}

.post-link-card {
    font-size: 0.85em;
    color: var(--accent-color);
    text-decoration: none;
    opacity: 0.7;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.post-link-card:hover {
    opacity: 1;
    text-decoration: underline;
}

.post-content {
    font-size: 1em;
    opacity: 0.9;
    line-height: 1.8;
    margin-top: 20px;
}

.post-content p {
    margin-bottom: 15px;
}

#posts-container {
    min-height: 400px;
}

