.dbc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.dbc-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.dbc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.dbc-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.dbc-content h3 {
    font-size: 20px;
    margin: 16px 0 10px;
}

.dbc-content h3 a {
    text-decoration: none;
}

.dbc-content p {
    font-size: 15px;
    line-height: 1.6;
}

.dbc-time {
    display: block;
    font-size: 13px;
    color: #888;
    margin: 10px 0;
}

.dbc-readmore {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #0b3d91;
    text-decoration: none;
}

.dbc-readmore:hover {
    text-decoration: underline;
}
