.your-stories-section {
    background: linear-gradient(to bottom, #A49E99 0%, #FFFFFF 30%);
    text-align: center;
    padding: 80px 10vw; /* Adjust padding as per layout needs */
}

.your-stories-heading {
    color:white;
}
.your-text {
    color:#111126;
}
.your-stories-text,.story-excerpt {
    line-height:30px;
    text-align:left;
}
.stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom:8vh;
}

.story {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 3px 15px rgba(169, 163, 158, 0.36);
    padding: 20px;
    position: relative; /* For the invisible link */
    width: calc(33.3% - 65px); /* 3-column layout, but make them skinny*/
}

.story iframe {
    border-radius: 20px; /* Assumes your video fits within an <iframe> */
}
.story-date {
    color:#6971AB
}
.story h3, .story-date, .story-excerpt {
    margin: 10px 0;
    text-align:left;
}

.story-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.more-stories-button {
    margin-top:5%;
    text-transform:uppercase;
    color:#29AC50;
    background-color:transparent;
    padding:11px 17px;
    border-radius:100px;
    letter-spacing:20%;
    font-weight:500;
    font-size:16px;
    border:2px #29AC50 solid;
}
.more-stories-button:hover {
    text-decoration:none;
    background-color: #29AC50;
    color:white;
}

@media (max-width: 768px) {

    .your-stories-section {

        padding: 5vh 10vw; /* Adjust padding as per layout needs */
    }

    .stories-grid {
        flex-direction: column;
        gap: 40px;
        padding-bottom:40px;
    }

    .story {
        width: 100%; /* Full width on mobile */
    }
}
@media (min-width: 768px) {
    .your-stories-text {
        max-width:45%;
        margin:auto;
        margin-bottom:10vh;
    }
}

.story-video-cover {
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.story img {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    font-size: 24px; /* Adjust based on your design */
    /* Add more styles for a better play button appearance */
}