/* Stories Archive — v1.0 */

.stories-page {
    padding: 5rem 0 4rem;
}

.stories-page__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.stories-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stories-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--v-text);
    margin: 0 0 0.6rem;
}

.stories-hero__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--v-text-secondary);
    margin: 0;
}

/* Start Here */
.stories-start {
    text-align: center;
    margin-bottom: 2rem;
}

.stories-start__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v-accent);
    background: none;
    border: 1px solid var(--v-border-strong);
    border-radius: 3px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.stories-start__link:hover {
    border-color: var(--v-accent);
    background: var(--v-bg-elevated);
}

/* Filter Bar */
.stories-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
}

.stories-filters__group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.stories-filters__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v-text-muted);
    margin-right: 0.3rem;
}

.stories-filter-chip {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: var(--v-text-muted);
    background: none;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.stories-filter-chip:hover {
    color: var(--v-text);
    border-color: var(--v-border-strong);
}

.stories-filter-chip.is-active {
    color: var(--v-accent);
    border-color: var(--v-accent);
    background: var(--v-bg-elevated);
}

/* Story List */
.stories-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Story Card */
.stories-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--v-border);
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.stories-card:first-child {
    border-top: none;
}

.stories-card:hover {
    background: var(--v-bg-elevated);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 4px;
}

/* Thumbnail */
.stories-card__img-wrap {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
}

.stories-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body */
.stories-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stories-card__header {
    margin-bottom: 0.3rem;
}

.stories-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--v-text);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.stories-card__new {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v-accent);
    border: 1px solid var(--v-accent);
    border-radius: 2px;
    padding: 0.1rem 0.35rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.stories-card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v-text-muted);
}

.stories-card__sep {
    margin: 0 0.3rem;
}

/* Tagline */
.stories-card__tagline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--v-text-secondary);
    margin: 0.2rem 0 0;
}

/* Mood tags */
.stories-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.stories-card__tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v-text-muted);
    border: 1px solid rgba(240,230,210,0.18);
    border-radius: 2px;
    padding: 0.2em 0.6em;
    line-height: 1;
    opacity: 0.6;
}

/* Characters */
.stories-card__characters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.stories-card__char {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stories-card__char-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.stories-card__char-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    color: var(--v-text-muted);
}

/* Empty State */
.stories-empty {
    text-align: center;
    padding: 3rem 0;
}

.stories-empty__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--v-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .stories-page { padding: 4rem 0 3rem; }
    .stories-hero__title { font-size: 1.8rem; }
    
    .stories-filters {
        gap: 0.8rem;
    }

    .stories-card {
        gap: 0.8rem;
    }

    .stories-card__img-wrap {
        width: 90px;
        height: 68px;
    }

    .stories-card__title {
        font-size: 1.1rem;
    }

    .stories-card__tagline {
        font-size: 0.85rem;
    }

    .stories-card:hover {
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stories-card__img-wrap {
        width: 75px;
        height: 56px;
    }

    .stories-card__characters {
        display: none;
    }
}
