.dcard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dcard__item {
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dcard__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 12px 6px;
    font-size: 13px;
    color: #888;
}
.dcard__downloads {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dcard__meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.dcard__title {
    padding: 0 12px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}
.dcard__image {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}
.dcard__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.dcard__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background-color: #2a4a7f;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
}
.dcard__btn:hover {
    background-color: #1d3a66;
    color: #ffffff;
}
.dcard__btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
