/* Feed detail page styles */

.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.feed-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.feed-description {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Posts list styles */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.post-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-header {
    margin-bottom: 1rem;
}

.post-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--accent-color);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.post-date {
    font-weight: 500;
}

.post-author {
    position: relative;
}

.post-author::before {
    content: "·";
    position: absolute;
    left: -0.6rem;
}

/* Post image styles */
.post-image {
    margin: 1.5rem 0;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-image a {
    display: block;
}

/* Post excerpt styles */
.post-excerpt {
    margin: 1rem 0 1.5rem 0;
}

.post-excerpt p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Post footer styles */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Feed actions */
.feed-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.feed-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: 2px solid var(--accent-color);
}

.feed-subscribe:hover {
    background: var(--primary-color);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--secondary-color);
}

.empty-message {
    font-size: 1.1rem;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .feed-title {
        font-size: 1.5rem;
    }
    
    .post-title {
        font-size: 1.25rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .post-author::before {
        display: none;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}