/* ============ Attachment Download ============ */
.download-section {
    margin-bottom: 24px;
    padding-top: 1rem;
    margin-top: 4rem;
    border-top: 1px dashed #d8d8d8;
}

.download-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--color-vital-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.download-item:hover {
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: var(--shadow-sm);
}

.download-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-vital-orange-soft);
    color: var(--color-vital-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.download-item-icon.pdf {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.download-item-icon.doc {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.download-item-icon.zip {
    background: rgba(25, 135, 84, 0.08);
    color: #198754;
}

.download-item-content {
    flex: 1;
    min-width: 0;
}

.download-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.4;
    margin-bottom: 2px;
}

.download-item-meta {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-item-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-vital-orange);
    background: var(--color-vital-orange-soft);
    border-radius: 50px;
    flex-shrink: 0;
    transition: var(--transition);
}

.download-item:hover .download-item-action {
    background: var(--color-vital-orange);
    color: #fff;
}