/* ----- Hero Section ----- */
.hero-bg {
    background-image: url('../../img/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    /* Specific to hero button */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}


/* ----- Story Section ----- */
@media (min-width: 1024px) {
    .story-clip {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }
}