/* ============================================================
   Download List Widget
   ============================================================ */

.download-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

/* ── Item row ──────────────────────────────────────────────── */
.dl-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.dl-item:hover {
    background-color: #f28c28;
}

/* ── Type badge ────────────────────────────────────────────── */
.dl-item__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 6px;
    background-color: #cccccc;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.dl-item:hover .dl-item__badge {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ── File name ─────────────────────────────────────────────── */
.dl-item__name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

.dl-item:hover .dl-item__name {
    color: #ffffff;
}

/* ── Download icon ─────────────────────────────────────────── */
.dl-item__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: color 0.25s ease;
}

.dl-item__icon svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
    transition: stroke 0.25s ease;
}

.dl-item:hover .dl-item__icon {
    color: #ffffff;
}

.dl-item:hover .dl-item__icon svg {
    stroke: #ffffff;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .dl-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .dl-item__name {
        font-size: 13px;
    }
}
