.story-block-section {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #fff 0%, #f4f6f7 100%);
}

.story-block-section-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 2rem 4rem;
    box-sizing: border-box;
}

.story-block-shell {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #111 0%, #2a0000 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.story-block-copy {
    color: #fff;
    padding: 0.5rem;
}

.story-block-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.story-block-description {
    margin: 0.75rem 0 0 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
}

.story-block-support {
    margin: 1rem 0 0 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-600, #ff0000);
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.story-block-aside {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.story-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.story-card-image,
.story-card-placeholder {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.story-card-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 0, 0, 0.16));
    color: #fff;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 2.4rem;
    font-weight: 800;
}

.story-card-body {
    padding: 1rem;
    color: #fff;
}

.story-card-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 700;
}

.story-card-text {
    margin: 0.35rem 0 0 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    .story-block-section-inner {
        padding: 3rem 4rem;
    }

    .story-block-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1199px) {
    .story-block-section-inner {
        padding: 2rem 2rem;
    }

    .story-block-shell {
        grid-template-columns: 1fr;
    }

    .story-block-aside {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .story-block-section-inner {
        padding: 1.5rem 1rem;
    }

    .story-block-title {
        font-size: 1.5rem;
    }

    .story-block-description {
        font-size: 0.92rem;
    }

    .story-block-support {
        font-size: 0.88rem;
    }

    .story-block-aside {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .story-block-shell {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .story-card-image,
    .story-card-placeholder {
        height: 160px;
    }

    .story-card-body {
        padding: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-card {
        transition: none !important;
    }
}