.story-card {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #dce6ed;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(43, 63, 86, 0.08);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.story-card:hover {
    transform: translateY(-3px);
    border-color: #c2d3df;
    box-shadow: 0 24px 54px rgba(43, 63, 86, 0.12);
}

.story-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.story-card__link:focus-visible {
    outline: 3px solid rgba(29, 109, 80, 0.3);
    outline-offset: -4px;
    border-radius: 8px;
}

.story-card__cover {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.story-card__product {
    margin: 0 0 9px;
    color: #1d6d50;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #758194;
    font-size: 0.76rem;
    font-weight: 700;
}

.story-card h3 {
    margin: 14px 0 0;
    color: #171717;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.story-card__summary {
    margin: 14px 0 0;
    color: #526275;
    line-height: 1.65;
}

.story-card__read {
    display: inline-block;
    margin-top: auto;
    padding-top: 20px;
    color: #1d6d50;
    font-size: 0.86rem;
    font-weight: 800;
}

.story-card--compact .story-card__body {
    padding: 18px 20px 20px;
}

.story-card--compact h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.story-card--compact .story-card__summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media (prefers-reduced-motion: reduce) {
    .story-card {
        transition: none;
    }
}
