.blog-post-link,
.blog-post-link:hover {
    text-decoration: none;
}

.post-item {
    border: 1px solid var(--myborder, #e0e0e0);
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.blog-post-link:hover .post-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--myred, #800000);
}

.post-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.thumbnail-image {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.post-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}