.ecm-stories-section {
    margin: 32px 0;
}

.ecm-stories-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
}

.ecm-stories-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ecm-story-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ecm-story-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.ecm-story-band {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    transform: translateY(-50%) rotate(-10deg);
    background: #4b4aa6;
    text-align: center;
    padding: 16px 12px;
}

.ecm-story-band span {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 991px) {
    .ecm-story-band span {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .ecm-stories-title {
        font-size: 22px;
    }

    .ecm-story-band {
        padding: 12px 10px;
    }

    .ecm-story-band span {
        font-size: 16px;
    }
}
