.cb-card-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.cb-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #333;
    background: #fff;
    border-radius: 0px; /* Boxy square look */
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.cb-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #D3002D; /* Hover highlight */
}

.cb-image-header {
    position: relative;
    width: 100%;
    height: 420px; /* Tall portrait height */
    overflow: hidden;
}

.cb-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #D3002D;
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.cb-day { font-size: 1.5rem; font-weight: 700; }
.cb-month-year { font-size: 0.7rem; text-transform: uppercase; }

.cb-card-body {
    padding: 20px 15px;
    flex-grow: 1;
}

.cb-card-title {
    color: #D3002D;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cb-meta-tags {
    display: flex;
    align-items: center;
    color: #888;
    margin-bottom: 12px;
	gap: 10px !important;
}

.cb-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}