.story-blog-post-content{
    background: #fff;
    color: #000;
    border-top-left-radius: 40px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-blog-post-content .story-blog-post{
    width: 100%;
    max-width: 1032px;
}

.story-blog-post-content-row{
    display: flex;
    gap: 75px;
    width: 100%;
}

.story-blog-post-content-row .col-left{
    width: 244px;
}

.story-blog-post-content-row .col-right{
    flex-grow: 1;
    text-align: left;
}

.story-blog-post-content .story-blog-post-image-wrapper{
    height: 326px;
    width: 244px;
    border-radius: 14px;
    overflow: hidden;
}

.story-blog-post-content .story-blog-post-image-wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.story-blog-post-content header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 47px;
    align-items: flex-end;
}

.story-blog-post-content .entry-title a{
    color: #000;
    font-family: Flaviotte;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.story-blog-post-content .post-edit-link{
    color: #000;
    font-family: Gotham;
    font-size: 12px;
    font-style: normal;
    font-weight: 325;
    line-height: normal;
}

.story-blog-post-content h3{
    color: #000;

    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.story-blog-post-meta-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.story-blog-post-meta-row{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-blog-post-meta-value{
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 18.8px;
}

.story-blog-post-body{
    color: var(--Black, #0D0B0B);
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 18.8px; /* 134.286% */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-blog-post-body a{
    color: #000;
    font-family: Gotham;
}

.story-blog-post-body a.external-link{
    font-size: 12px;
    font-style: normal;
    font-weight: 325;
    line-height: normal;
    padding: 9px 18px;
    border-radius: 20px;
    border: 1px solid #000;
    text-decoration: none;
}

.story-blog-post-body a.external-link:after{
    display: inline-block;
    margin-left: 9px;
    width: 9px;
    height: 9px;
    content: '';
    background: url(/wp-content/themes/wpadc_archive/images/arrow-diag-black.svg);
}

.story-blog-post-image-wrapper-w-border{
    border: 4px solid;
}

.story-blog-post-image-wrapper-w-border.border-orange{
    border-color: #F66639;
}

.story-blog-post-image-wrapper-w-border.border-indigo{
    border-color: #6741F5;
}

.story-blog-post-image-wrapper-w-border.border-cyan{
    border-color: #32BEF0;
}

@media screen and (max-width: 768px) {
    .story-blog-post-content-row{
        flex-direction: column;
        gap: 20px;
    }
    
    .story-blog-post-content-row .col-left{
        width: 100%;
        padding: 0 20px;
    }

    .story-blog-post-content .story-blog-post-image-wrapper{
        width: 100%;
        height: auto;
    }

    .story-blog-post-content-row .col-right{
        padding: 0 20px;
    }

    .story-blog-post-content .post-edit-link{
        display: none;
    }

    .story-blog-post-content .card-grid{
        padding: 0 20px;
    }
}