/* LINE */
.story {
    padding: 0px 30px 30px 30px;
    
}
.card-story {
    
    background: var(--primary-color);
    padding: 50px 10px 100px 10px;
    position: relative;
    border-radius: 0px 0px 250px 250px;
    z-index: 1;
}

.card-story::before {
    content: '';
    inset: 0;
    position: absolute;
    background-color: var(--accent-color);
     transform: translate(10px, 10px); /* lebih clean dari margin */
    border-radius: inherit;
    z-index: 0;
}
/* SAAT MUNCUL */
.card-story.aos-animate::after {
    transform: scaleY(1);
}
.card-story .section-title {
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 20px;
}


/* ITEM */
.story-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 70px;
}

/* DOT */
.story-item::before {
    content: '\f073';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 0;

    width: 36px;
    height: 36px;

    background: #000;
    color: #fff;

    border-radius: 50%;
    border: 4px solid #fff; /* bikin elegan */

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    z-index: 2;
}
.story-item::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
   height: calc(100% + 20px);
    background: #000;

    transform: scaleY(0);
    transform-origin: top;
    transition: 0.8s;
}

.story-item.aos-animate::after {
    transform: scaleY(1);
}
/* CARD */
.story-card {
    background: #000;
    color: #fff;
    border-radius: 18px;
    padding: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* ini bikin hidup */
}

/* IMAGE */
.story-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* DATE */
.timeline {
    display: inline-block;
    background: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* TITLE */
.story-title {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* CONTENT */
.story-content {
    font-size: 13px;
    line-height: 1.6;
    color: #ddd;
}

.story-card {
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;

    border-width: 8px;
    border-style: solid;
    border-color: transparent #000 transparent transparent;
}