.custom-blog-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}
.custom-blog-tab {
    margin-right: 8px;
    
    text-decoration: none;
    color: #333;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 3px 3px 0 0;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-bottom: none;
    font-size: 20px;
}
.custom-blog-tab.active {
    background: white;
    border-bottom: 1px solid white;
    font-weight: bold;
}
.cps-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.cps-post {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    border: 1px solid #ddd;
    font-size: 13px;
}
.cps-post:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.cps-thumbnail {
    width: 120px; /* Increased by 50% */
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 8px;
}
.cps-content {
    flex-grow: 1;
}
.cps-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #222;
    line-height: 1.1;
}
.cps-title a {
    text-decoration: none;
    color: #222;
    transition: color 0.2s ease-in-out;
}
.cps-title a:hover {
    color: #0073e6;
}
.cps-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 2px;
    line-height: 1.1;
}
.cps-date {
    font-size: 11px;
    color: #888;
    line-height: 1.1;
}