/* ═══════════════════════════════════════
   NOIR ATELIER — Feed Detail
   A curated journal, chapter by chapter
   ═══════════════════════════════════════ */

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

.feed-title {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

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

/* Posts List */
.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: 400;
}

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

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

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light-color);
    letter-spacing: 0.04em;
}

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

.post-author {
    position: relative;
}

.post-author::before {
    content: "\00b7";
    position: absolute;
    left: -0.6rem;
    color: var(--separator-color);
}

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

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

.post-image a {
    display: block;
}

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

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

/* Post Footer */
.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;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: color 0.3s 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: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    font-family: inherit;
    letter-spacing: 0.06em;
    font-size: 13px;
}

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

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

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

/* Responsive */
@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;
    }
}
