.embed-card {
    display: flex;
    border: 1px solid #ccc;
    border-radius: .25rem;
    background: #fff;
    overflow: hidden;
}

.embed-card__thumb {
    width: 16rem;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.embed-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.embed-card__body {
    padding: .75rem 1rem;
    flex: 1;
    min-width: 0;
}

.embed-card__title {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.34;
    margin-bottom: .5rem;
}

.embed-card__excerpt {
    color: #666;
    margin-bottom: 1em;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.embed-card .more {
    font-size: 0.875rem;
    display: flex;
    justify-content: flex-end;
    color: #0000ee;
}

@media (max-width: 749.9px) {
    .embed-card {
        display: block;
    }
    .embed-card__thumb {
        width: 100%;
        aspect-ratio: auto;
        img {
            height: auto;
        }
    }

    .embed-card__title {
        font-size: 1.125em;
        margin-bottom: .5rem;
    }
    .embed-card__excerpt,
    .embed-card .more {
        font-size: calc(12em/15);
    }
    .embed-card__excerpt {
        -webkit-line-clamp: 2;
    }
}