.blog-card {
    width: 100%;
    max-width: 850px;
    aspect-ratio: 2.1 / 1;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 26px 32px;

    color: #fff;
}

.overlay h3 {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 10px;

    font-size: 13px;

    color: #fff;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border-radius: 12px;
}

.overlay p {
    font-size: 16px;
    line-height: 1.7;
    color: #fdfdfd;
}