.wp-embed.post.type-post::after {
  display: none !important;
}

.wp-embed {
    padding: 0px 15px 0 0px;
    display:grid;
    grid-template-columns:180px 1fr;
    grid-template-areas:
        "thumb heading"
        "thumb excerpt";
    column-gap:12px;
    align-items:flex-start;
    align-self: stretch;
    overflow: hidden;
    box-shadow: none!important;
}

.wp-embed-featured-image img{
    width: 180px;
    height: 115px;
    margin-bottom: 0;
    flex-shrink: 0;
    aspect-ratio: 180/115;
}

.wp-embed-heading > a {
    padding: 15px 0 0 0;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    overflow: hidden;
    color: #333!important;
    text-overflow: ellipsis;
    font-family: "Helvetica Neue";
    font-size: 15px;
    gap: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-align: left;
}

.wp-embed-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6D6D6D;
    text-overflow: ellipsis;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: left;
}

figure.wp-block-embed > .wp-block-embed__wrapper > div.wp-embedded-content {
    width: 624px;
}

details.wp-embed-details > summary {
	display: none !important;
}

p.wp-embed-heading {
    margin: 0;
}
  
.wp-embed-featured-image{
    grid-area:thumb;
    width:180px;
    height:115px;
    overflow:hidden;
    max-width: 180px!important;
    margin-bottom: 0px;
}

.wp-embed-featured-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
  
.wp-embed-heading{
    grid-area:heading; 
    margin:0;
}

.wp-embed-heading a{
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    overflow:hidden;
}

@media screen and (max-width: 720px) {

    figure.wp-block-embed > .wp-block-embed__wrapper > div.wp-embedded-content {
        width: 344px;
    }

    .wp-embed {
        padding: 0px 8px 0 0;
        grid-template-columns:135px 1fr;
        grid-template-rows: 1fr 1.3fr;
        height: 90px;
        align-self: stretch;
    }

    .wp-embed-heading > a {
        padding: 8px 0 0 4px;
        font-size: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        line-clamp: 2;
        height: 42px;
        line-height: 18px;
    }

    .wp-embed-featured-image.square {
        line-height: 1;
        margin-right: 0;
        max-width: 135px!important;
    }

    .wp-embed-featured-image {
        margin-bottom: 0;
    }

    .wp-embed-featured-image img {
        width: 135px;
        height: 90px;
        flex-shrink: 0;
        aspect-ratio: 135/85;
    }

    .wp-embed-excerpt {
        padding-left: 0;
    }

    .wp-embed-excerpt > p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        line-clamp: 2;
        align-self: stretch;
        font-size: 10px;
    }
}

@media screen and (max-width: 360px) {
    figure.wp-block-embed > .wp-block-embed__wrapper > div.wp-embedded-content {
        width: 330px;
    }
}

@media screen and (max-width: 344px) {

    figure.wp-block-embed > .wp-block-embed__wrapper > div.wp-embedded-content {
        width: 314px;
    }
}