section.archive h1 {
    margin-bottom: 0.75rem;
}

/* Intro Text */
.archive-intro {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-mid);
    margin-bottom: 3rem;
    max-width: 720px;
}

/* Communities List */
.communities-list {
    border-top: 1px solid #eee;
}

.community-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 1.5rem;
}

.community-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.community-name a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-darker);
    text-decoration: none;
    transition: color 0.2s ease;
}

.community-name a:hover {
    color: var(--color-text-story-hover);
}

.episode-count {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.latest-episode {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.latest-title {
    color: var(--color-text-dark);
    text-decoration: none;
}

.latest-title:hover {
    text-decoration: underline;
}

.view-all-link {
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--color-text-story-hover);
}