.btx-entry {
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btx-entry:hover {
    transform: translateY(-5px); 
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.btx-entry-inner {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.btx-entry img {
    max-width: 100%; 
    height: auto;
    border-bottom: 1px solid #eee; 
}

.btx-entry-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.btx-entry-title a {
    color: inherit; 
    text-decoration: none;
}

.btx-entry-title a:hover {
    color: #0073e6; 
}

.btx-entry-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.btx-entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #888;
}

.btx-entry-author {
    font-weight: bold;
    color: #555;
}

.btx-entry-date {
    color: #333;
    font-weight: 500;
}
