.cb-card-anchor {
    text-decoration: none !important;
    display: block;
    outline: none;
}

.cb-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cb-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.cb-card-img-wrapper {
    position: relative;
    width: 100%;
}

.cb-card-img-wrapper img {
    width: 100%;
    display: block;
}

.cb-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1F3F34;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cb-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cb-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    flex-wrap: wrap;
}

.cb-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cb-card-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cb-card-meta-separator {
    color: #cccccc;
    font-weight: 300;
}

.cb-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.cb-card-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cb-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.cb-card-link-arrow {
    transition: transform 0.2s ease;
}

.cb-card:hover .cb-card-link-arrow {
    transform: translateX(4px);
}
