/* ========================== Small Story Card ========================== */

.story-card-small {
    width: 280px;
    flex-shrink: 0;
    background: var(--grey-150);
    border-radius: 20px;
    overflow: hidden;
}

.story-card-small__image {
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.story-card-small__content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-card-small__author {
    margin: 0;
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
}

.story-card-small__quote {
    margin: 0;
    color: var(--grey-950);
    font-family: var(--font-family-display);
    font-size: var(--text-body-lg);
    font-style: italic;
    font-weight: var(--font-regular);
    line-height: 28px;
}

.story-card-small__link {
    color: var(--pink-500);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
    text-decoration: none;
}

.story-card-small__link:hover {
    text-decoration: underline;
}
