.custom-blogcard {
    display: flex;
    margin: 0 auto;
    max-width: 360px;
    border: 1px solid #ccc;
    gap: 1rem;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.custom-blogcard a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    text-decoration: none !important;
}

.custom-blogcard-thumb {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.custom-blogcard-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 320px;
    max-height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
}

.custom-blogcard-content {
    padding: 0.7rem;
    flex: 1;
}

.custom-blogcard-content h3 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: bold;
}

.custom-blogcard-content p {
    margin: 0.5em 0 0;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #666;
    letter-spacing: 0;
}