.story-container {
    margin-top: 40px;
}
.story-container .story-outer-box {
    margin-bottom: 20px;
    padding: 0px;
    flex-direction: column;
    display: block;
    border: 1px solid #D8E0EE;
    box-shadow: 0px 1px 1px 0px #D8E0EE99;
    border-radius: 8px;
}
.story-container .story-outer-box .story-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.story-container .story-outer-box .story-author, .story-container .story-outer-box .story-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    color: #4B5563;
    width: 100%;
}
.story-container .story-outer-box .story-author strong {
    font-weight: 700;
}
.story-container .story-outer-box .story-inner-cont {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.story-container .story-outer-box .story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}
.story-container .story-outer-box .story-img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.story-container .story-outer-box:hover {
    background-color: #F0F6FF;
}
@media (min-width: 768px) {
    .story-container .story-outer-box .story-title {
        font-size: 18px;
        font-weight: 500;
        line-height: 180%;
    }
    .story-container .story-outer-box {
        max-width: calc(50% - 10px);
    }
    .story-container .story-outer-box:nth-child(1), .story-container .story-outer-box:nth-child(3), .story-container .story-outer-box:nth-child(5) {
        margin-left: 0px !important;
    }
    .story-container .story-outer-box:nth-child(2), .story-container .story-outer-box:nth-child(4), .story-container .story-outer-box:nth-child(6) {
        margin-right: 0px !important;
    }
}
@media (min-width: 1024px) {
    .story-container .story-outer-box {
        max-width: calc(33.33% - 10px);
    }
    .story-container .story-outer-box:nth-child(1), .story-container .story-outer-box:nth-child(3), .story-container .story-outer-box:nth-child(5) {
        margin-left: auto !important;
    }
    .story-container .story-outer-box:nth-child(2), .story-container .story-outer-box:nth-child(4), .story-container .story-outer-box:nth-child(6) {
        margin-right: auto !important;
    }
    .story-container .story-outer-box:nth-child(1), .story-container .story-outer-box:nth-child(4) {
        margin-left: 0px !important;
    }
    .story-container .story-outer-box:nth-child(3), .story-container .story-outer-box:nth-child(6) {
        margin-right: 0px !important;
    }
}