.plotsaga-story-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plotsaga-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.plotsaga-story-media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.plotsaga-story-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

.plotsaga-story-media img,
.plotsaga-story-card-video video,
.plotsaga-story-card-video iframe,
.plotsaga-story-card-video .wp-video,
.plotsaga-story-card-video .wp-video-shortcode {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.plotsaga-story-card-video {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.plotsaga-story-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(135deg, #111, #333);
}

.plotsaga-story-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plotsaga-story-content h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.plotsaga-story-content p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.plotsaga-story-content a {
    color: inherit;
    text-decoration: none;
}